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

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

#s-384eb53a-2c20-4667-83a1-31791d26b615 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(244, 244, 244, 1);
}








#s-384eb53a-2c20-4667-83a1-31791d26b615 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-384eb53a-2c20-4667-83a1-31791d26b615.shg-box.shg-c {
  justify-content: center;
}

/* Duplicated Styles are also in Category base.css - keep them in sync */

.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: 8px 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-f78b9dcf-2efa-4292-b156-07279cbe690b {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 16px;
padding-bottom: 10px;
padding-right: 16px;
}

/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-f78b9dcf-2efa-4292-b156-07279cbe690b {
  --swiper-pagination-color: rgba(255, 255, 255, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 1) !important;
  --swiper-pagination-bullet-active-color: rgba(255, 255, 255, 1) !important;
  --arrow-button-size: 30px !important;
  --swiper-pagination-bullet-size: 15px !important;
  
    --swiper-pagination-bottom: 14px !important;
    padding: 0 !important;
  
}

#slider-v3-s-f78b9dcf-2efa-4292-b156-07279cbe690b > .swiper-button-prev,
#slider-v3-s-f78b9dcf-2efa-4292-b156-07279cbe690b > .swiper-button-next {
  
    height: 100% !important;
  
}

#slider-v3-s-f78b9dcf-2efa-4292-b156-07279cbe690b > .swiper-button-prev svg,
#slider-v3-s-f78b9dcf-2efa-4292-b156-07279cbe690b > .swiper-button-next svg {
  fill: rgba(77, 88, 88, 1) !important;
  stroke: rgba(77, 88, 88, 1) !important;
  
    background-color: rgba(255, 255, 255, 1) !important;
    padding: 8px !important;
    border-radius:  50% !important;
                   
  
}

#slider-v3-s-f78b9dcf-2efa-4292-b156-07279cbe690b > .swiper-button-prev {
  
    left: 2% !important;
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-f78b9dcf-2efa-4292-b156-07279cbe690b > .swiper-button-next {
  
    right: 2% !important;
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-f78b9dcf-2efa-4292-b156-07279cbe690b > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-f78b9dcf-2efa-4292-b156-07279cbe690b .swiper-pagination-bullet {
  width: 15px !important;
  height: 15px !important;
  margin: 0 !important;
}

#slider-v3-s-f78b9dcf-2efa-4292-b156-07279cbe690b .swiper-pagination-bullet-active {
  background-color: rgba(255, 255, 255, 1) !important;
  width: calc(15px * 1) !important;
  height: 15px !important;
  border-radius:  50px  !important;
}

#slider-v3-s-f78b9dcf-2efa-4292-b156-07279cbe690b .swiper-pagination {
  position:  absolute ;
  display: flex;
  margin-top:  0 ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

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

.shg-inner-inline-image {
  position: relative;
  display: block;
  overflow: hidden;
}

.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-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-imageV3-content {
  text-align: initial;
}

.shogun-image-content-v3 {
  display: flex;
  flex-direction: column;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  /* Ensures that the content children fills the container */
  align-items: stretch;
}

.shogun-image-content-linked,
.shogun-image-content-not-linked {
  pointer-events: none;
}

.shogun-image-content-not-linked>div {
  pointer-events: auto;
}

.shogun-image-content-linked a,
.shogun-image-content-linked button,
.shogun-image-content-linked iframe,
.shogun-image-content-linked .shg-box-linked {
  pointer-events: auto;
}

.shogun-image-content-top {
  align-items: flex-start;
}

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

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

.shg-inner-inline-image .shogun-image.hover~* {
  z-index: 1;
}

.shogun-image-content-v3 > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-cd868cf4-3630-4254-9095-ee614f08f807 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-cd868cf4-3630-4254-9095-ee614f08f807 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cd868cf4-3630-4254-9095-ee614f08f807-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-cd868cf4-3630-4254-9095-ee614f08f807 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cd868cf4-3630-4254-9095-ee614f08f807 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-cd868cf4-3630-4254-9095-ee614f08f807 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-cd868cf4-3630-4254-9095-ee614f08f807 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-cd868cf4-3630-4254-9095-ee614f08f807 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-cd868cf4-3630-4254-9095-ee614f08f807.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cd868cf4-3630-4254-9095-ee614f08f807.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd868cf4-3630-4254-9095-ee614f08f807.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-cd868cf4-3630-4254-9095-ee614f08f807 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cd868cf4-3630-4254-9095-ee614f08f807-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-cd868cf4-3630-4254-9095-ee614f08f807 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cd868cf4-3630-4254-9095-ee614f08f807 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-cd868cf4-3630-4254-9095-ee614f08f807 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-cd868cf4-3630-4254-9095-ee614f08f807 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-cd868cf4-3630-4254-9095-ee614f08f807 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-cd868cf4-3630-4254-9095-ee614f08f807.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cd868cf4-3630-4254-9095-ee614f08f807.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd868cf4-3630-4254-9095-ee614f08f807.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-cd868cf4-3630-4254-9095-ee614f08f807 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cd868cf4-3630-4254-9095-ee614f08f807-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-cd868cf4-3630-4254-9095-ee614f08f807 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cd868cf4-3630-4254-9095-ee614f08f807 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-cd868cf4-3630-4254-9095-ee614f08f807 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-cd868cf4-3630-4254-9095-ee614f08f807 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-cd868cf4-3630-4254-9095-ee614f08f807 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-cd868cf4-3630-4254-9095-ee614f08f807.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cd868cf4-3630-4254-9095-ee614f08f807.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd868cf4-3630-4254-9095-ee614f08f807.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-cd868cf4-3630-4254-9095-ee614f08f807 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cd868cf4-3630-4254-9095-ee614f08f807-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-cd868cf4-3630-4254-9095-ee614f08f807 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cd868cf4-3630-4254-9095-ee614f08f807 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-cd868cf4-3630-4254-9095-ee614f08f807 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-cd868cf4-3630-4254-9095-ee614f08f807 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-cd868cf4-3630-4254-9095-ee614f08f807 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-cd868cf4-3630-4254-9095-ee614f08f807.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cd868cf4-3630-4254-9095-ee614f08f807.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd868cf4-3630-4254-9095-ee614f08f807.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-cd868cf4-3630-4254-9095-ee614f08f807 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cd868cf4-3630-4254-9095-ee614f08f807-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-cd868cf4-3630-4254-9095-ee614f08f807 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cd868cf4-3630-4254-9095-ee614f08f807 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-cd868cf4-3630-4254-9095-ee614f08f807 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-cd868cf4-3630-4254-9095-ee614f08f807 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-cd868cf4-3630-4254-9095-ee614f08f807 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-cd868cf4-3630-4254-9095-ee614f08f807.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cd868cf4-3630-4254-9095-ee614f08f807.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd868cf4-3630-4254-9095-ee614f08f807.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-a2f4ad43-d3ae-4637-8604-906474f7f875 {
  margin-left: auto;
margin-right: auto;
padding-left: 16px;
padding-right: 16px;
min-height: 50px;
max-width: 1388px;
}








#s-a2f4ad43-d3ae-4637-8604-906474f7f875 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a2f4ad43-d3ae-4637-8604-906474f7f875.shg-box.shg-c {
  justify-content: center;
}

.shg-row {
  display: flex;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  justify-content: space-between;
}

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

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

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

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

#s-78b294fb-96c7-4cf6-99f7-65d81a71d9df {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-78b294fb-96c7-4cf6-99f7-65d81a71d9df"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-78b294fb-96c7-4cf6-99f7-65d81a71d9df"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-78b294fb-96c7-4cf6-99f7-65d81a71d9df"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-78b294fb-96c7-4cf6-99f7-65d81a71d9df"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-78b294fb-96c7-4cf6-99f7-65d81a71d9df"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-b6b6e048-fba1-4722-be21-44c85e4d1057 {
  margin-left: auto;
margin-right: auto;
padding-left: 3%;
padding-right: 0%;
min-height: 50px;
}








#s-b6b6e048-fba1-4722-be21-44c85e4d1057 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b6b6e048-fba1-4722-be21-44c85e4d1057.shg-box.shg-c {
  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;
  
  
  text-transform: none;
  
  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-b586b6e4-d66f-4b11-a136-f6e2816c365b {
  margin-bottom: 15px;
text-align: left;
}

#s-b586b6e4-d66f-4b11-a136-f6e2816c365b .shogun-heading-component h2 {
  color: rgba(22, 64, 111, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1em;
  
  text-align: left;
}



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

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

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

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

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

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

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

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

.shg-theme-text-content p {
  
  
  
}

#s-a11eb2c8-a94e-45ea-9082-f497c47f5641 {
  margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
}

#s-a11eb2c8-a94e-45ea-9082-f497c47f5641 .shg-proportional-font-size,
#s-a11eb2c8-a94e-45ea-9082-f497c47f5641 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

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

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

.shg-btn-text {
  
  
}

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

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

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

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

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

#s-1b8a75dc-77d9-4756-8e26-bb89b92fc799 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjZjNjA5NDktNjg3OS00YTdiLWFiMjktMzBlNDc4MWVmZDUyIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjRmNGY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZTFlMWUxO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiNmM2MDk0OS02ODc5LTRhN2ItYWIyOS0zMGU0NzgxZWZkNTIpIi8+PC9zdmc+);
background-repeat: no-repeat;
border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(77, 88, 88, 1);
border-radius: 10px;
text-align: left;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f4f4f4"}, {"id"=>2, "pos"=>1, "color"=>"#e1e1e1"}];
hover-type: gradient;
color: rgba(77, 88, 88, 1);
}
#s-1b8a75dc-77d9-4756-8e26-bb89b92fc799:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iOTM3MDYzMGUtYzg4My00YjIwLWJiMmYtZDMxOTZiZjA4YjBiIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjlhZjZiO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjcwOTA5MDkwOTA5MDkwOTEiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNjg3MjI7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoIzkzNzA2MzBlLWM4ODMtNGIyMC1iYjJmLWQzMTk2YmYwOGIwYikiLz48L3N2Zz4=) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(246, 135, 34, 1) !important;
border-radius: 10px !important;
text-decoration: none !important;
color: rgba(244, 244, 244, 1) !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f9af6b"}, {"id"=>2, "pos"=>0.7090909090909091, "color"=>"#f68722"}] !important;
hover-type: gradient !important;}#s-1b8a75dc-77d9-4756-8e26-bb89b92fc799:active {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(22, 65, 111, 1) !important;
border-radius: 10px !important;
background-color: rgba(22, 65, 111, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-1b8a75dc-77d9-4756-8e26-bb89b92fc799-root {
    text-align: left;
  }


#s-1b8a75dc-77d9-4756-8e26-bb89b92fc799.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-1b8a75dc-77d9-4756-8e26-bb89b92fc799-root {
    text-align: left;
  }


#s-1b8a75dc-77d9-4756-8e26-bb89b92fc799.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1b8a75dc-77d9-4756-8e26-bb89b92fc799-root {
    text-align: left;
  }


#s-1b8a75dc-77d9-4756-8e26-bb89b92fc799.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1b8a75dc-77d9-4756-8e26-bb89b92fc799-root {
    text-align: left;
  }


#s-1b8a75dc-77d9-4756-8e26-bb89b92fc799.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-1b8a75dc-77d9-4756-8e26-bb89b92fc799-root {
    text-align: left;
  }


#s-1b8a75dc-77d9-4756-8e26-bb89b92fc799.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-f0a6a938-6862-4020-b267-8a9e53d55575 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-f0a6a938-6862-4020-b267-8a9e53d55575 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f0a6a938-6862-4020-b267-8a9e53d55575-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f0a6a938-6862-4020-b267-8a9e53d55575 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f0a6a938-6862-4020-b267-8a9e53d55575 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-f0a6a938-6862-4020-b267-8a9e53d55575 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-f0a6a938-6862-4020-b267-8a9e53d55575 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-f0a6a938-6862-4020-b267-8a9e53d55575 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-f0a6a938-6862-4020-b267-8a9e53d55575.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f0a6a938-6862-4020-b267-8a9e53d55575.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f0a6a938-6862-4020-b267-8a9e53d55575.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-f0a6a938-6862-4020-b267-8a9e53d55575 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f0a6a938-6862-4020-b267-8a9e53d55575-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f0a6a938-6862-4020-b267-8a9e53d55575 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f0a6a938-6862-4020-b267-8a9e53d55575 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-f0a6a938-6862-4020-b267-8a9e53d55575 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-f0a6a938-6862-4020-b267-8a9e53d55575 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-f0a6a938-6862-4020-b267-8a9e53d55575 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-f0a6a938-6862-4020-b267-8a9e53d55575.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f0a6a938-6862-4020-b267-8a9e53d55575.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f0a6a938-6862-4020-b267-8a9e53d55575.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-f0a6a938-6862-4020-b267-8a9e53d55575 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f0a6a938-6862-4020-b267-8a9e53d55575-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f0a6a938-6862-4020-b267-8a9e53d55575 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f0a6a938-6862-4020-b267-8a9e53d55575 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-f0a6a938-6862-4020-b267-8a9e53d55575 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-f0a6a938-6862-4020-b267-8a9e53d55575 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-f0a6a938-6862-4020-b267-8a9e53d55575 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-f0a6a938-6862-4020-b267-8a9e53d55575.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f0a6a938-6862-4020-b267-8a9e53d55575.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f0a6a938-6862-4020-b267-8a9e53d55575.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-f0a6a938-6862-4020-b267-8a9e53d55575 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f0a6a938-6862-4020-b267-8a9e53d55575-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f0a6a938-6862-4020-b267-8a9e53d55575 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f0a6a938-6862-4020-b267-8a9e53d55575 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-f0a6a938-6862-4020-b267-8a9e53d55575 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-f0a6a938-6862-4020-b267-8a9e53d55575 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-f0a6a938-6862-4020-b267-8a9e53d55575 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-f0a6a938-6862-4020-b267-8a9e53d55575.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f0a6a938-6862-4020-b267-8a9e53d55575.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f0a6a938-6862-4020-b267-8a9e53d55575.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-f0a6a938-6862-4020-b267-8a9e53d55575 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f0a6a938-6862-4020-b267-8a9e53d55575-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f0a6a938-6862-4020-b267-8a9e53d55575 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f0a6a938-6862-4020-b267-8a9e53d55575 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-f0a6a938-6862-4020-b267-8a9e53d55575 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-f0a6a938-6862-4020-b267-8a9e53d55575 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-f0a6a938-6862-4020-b267-8a9e53d55575 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-f0a6a938-6862-4020-b267-8a9e53d55575.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f0a6a938-6862-4020-b267-8a9e53d55575.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f0a6a938-6862-4020-b267-8a9e53d55575.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-3856fd51-b77a-4aea-b675-7d75d6959394 {
  margin-left: auto;
margin-right: auto;
padding-left: 16px;
padding-right: 16px;
min-height: 50px;
max-width: 1388px;
}








#s-3856fd51-b77a-4aea-b675-7d75d6959394 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3856fd51-b77a-4aea-b675-7d75d6959394.shg-box.shg-c {
  justify-content: center;
}

#s-3f8d31e2-faf6-4f12-8eb2-8cb708265114 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-3f8d31e2-faf6-4f12-8eb2-8cb708265114"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3f8d31e2-faf6-4f12-8eb2-8cb708265114"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3f8d31e2-faf6-4f12-8eb2-8cb708265114"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3f8d31e2-faf6-4f12-8eb2-8cb708265114"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-0f79a05d-b5a5-44c9-8b3b-bdc002c09b09 {
  margin-left: auto;
margin-right: auto;
padding-left: 3%;
min-height: 50px;
}








#s-0f79a05d-b5a5-44c9-8b3b-bdc002c09b09 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0f79a05d-b5a5-44c9-8b3b-bdc002c09b09.shg-box.shg-c {
  justify-content: center;
}

#s-d62ccd3f-e8ca-4403-8f2b-dea06bce5f31 {
  margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
text-align: left;
}

#s-d62ccd3f-e8ca-4403-8f2b-dea06bce5f31 .shogun-heading-component h1 {
  color: rgba(22, 64, 111, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1.125em;
  
  
}



#s-c6a9f79e-851c-4283-858b-a0e59a3847a1 {
  margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
}

#s-c6a9f79e-851c-4283-858b-a0e59a3847a1 .shg-proportional-font-size,
#s-c6a9f79e-851c-4283-858b-a0e59a3847a1 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-b6d3ddca-e1ec-4f08-b24c-fdf2707b17af {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjZjNjA5NDktNjg3OS00YTdiLWFiMjktMzBlNDc4MWVmZDUyIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjRmNGY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZTFlMWUxO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiNmM2MDk0OS02ODc5LTRhN2ItYWIyOS0zMGU0NzgxZWZkNTIpIi8+PC9zdmc+);
background-repeat: no-repeat;
border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(77, 88, 88, 1);
border-radius: 10px;
text-align: left;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f4f4f4"}, {"id"=>2, "pos"=>1, "color"=>"#e1e1e1"}];
hover-type: gradient;
color: rgba(77, 88, 88, 1);
}
#s-b6d3ddca-e1ec-4f08-b24c-fdf2707b17af:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNDM4M2NhYjYtMjBiMS00YThkLWFkY2MtODQ5YjJkODAyZDA0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjlhZjZiO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjcwOTA5MDkwOTA5MDkwOTEiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNjg3MjI7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoIzQzODNjYWI2LTIwYjEtNGE4ZC1hZGNjLTg0OWIyZDgwMmQwNCkiLz48L3N2Zz4=) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(246, 135, 34, 1) !important;
border-radius: 10px !important;
text-decoration: none !important;
color: rgba(244, 244, 244, 1) !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f9af6b"}, {"id"=>2, "pos"=>0.7090909090909091, "color"=>"#f68722"}] !important;
hover-type: gradient !important;}#s-b6d3ddca-e1ec-4f08-b24c-fdf2707b17af:active {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(22, 65, 111, 1) !important;
border-radius: 10px !important;
background-color: rgba(22, 65, 111, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-b6d3ddca-e1ec-4f08-b24c-fdf2707b17af-root {
    text-align: left;
  }


#s-b6d3ddca-e1ec-4f08-b24c-fdf2707b17af.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b6d3ddca-e1ec-4f08-b24c-fdf2707b17af-root {
    text-align: left;
  }


#s-b6d3ddca-e1ec-4f08-b24c-fdf2707b17af.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b6d3ddca-e1ec-4f08-b24c-fdf2707b17af-root {
    text-align: left;
  }


#s-b6d3ddca-e1ec-4f08-b24c-fdf2707b17af.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b6d3ddca-e1ec-4f08-b24c-fdf2707b17af-root {
    text-align: left;
  }


#s-b6d3ddca-e1ec-4f08-b24c-fdf2707b17af.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b6d3ddca-e1ec-4f08-b24c-fdf2707b17af-root {
    text-align: left;
  }


#s-b6d3ddca-e1ec-4f08-b24c-fdf2707b17af.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-e800573a-bd54-44b1-a048-fa88f1299e28 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-e800573a-bd54-44b1-a048-fa88f1299e28 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e800573a-bd54-44b1-a048-fa88f1299e28-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e800573a-bd54-44b1-a048-fa88f1299e28 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e800573a-bd54-44b1-a048-fa88f1299e28 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-e800573a-bd54-44b1-a048-fa88f1299e28 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-e800573a-bd54-44b1-a048-fa88f1299e28 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-e800573a-bd54-44b1-a048-fa88f1299e28 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-e800573a-bd54-44b1-a048-fa88f1299e28.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e800573a-bd54-44b1-a048-fa88f1299e28.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e800573a-bd54-44b1-a048-fa88f1299e28.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-e800573a-bd54-44b1-a048-fa88f1299e28 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e800573a-bd54-44b1-a048-fa88f1299e28-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e800573a-bd54-44b1-a048-fa88f1299e28 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e800573a-bd54-44b1-a048-fa88f1299e28 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-e800573a-bd54-44b1-a048-fa88f1299e28 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-e800573a-bd54-44b1-a048-fa88f1299e28 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-e800573a-bd54-44b1-a048-fa88f1299e28 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-e800573a-bd54-44b1-a048-fa88f1299e28.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e800573a-bd54-44b1-a048-fa88f1299e28.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e800573a-bd54-44b1-a048-fa88f1299e28.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-e800573a-bd54-44b1-a048-fa88f1299e28 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e800573a-bd54-44b1-a048-fa88f1299e28-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e800573a-bd54-44b1-a048-fa88f1299e28 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e800573a-bd54-44b1-a048-fa88f1299e28 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-e800573a-bd54-44b1-a048-fa88f1299e28 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-e800573a-bd54-44b1-a048-fa88f1299e28 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-e800573a-bd54-44b1-a048-fa88f1299e28 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-e800573a-bd54-44b1-a048-fa88f1299e28.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e800573a-bd54-44b1-a048-fa88f1299e28.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e800573a-bd54-44b1-a048-fa88f1299e28.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-e800573a-bd54-44b1-a048-fa88f1299e28 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e800573a-bd54-44b1-a048-fa88f1299e28-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e800573a-bd54-44b1-a048-fa88f1299e28 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e800573a-bd54-44b1-a048-fa88f1299e28 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-e800573a-bd54-44b1-a048-fa88f1299e28 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-e800573a-bd54-44b1-a048-fa88f1299e28 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-e800573a-bd54-44b1-a048-fa88f1299e28 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-e800573a-bd54-44b1-a048-fa88f1299e28.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e800573a-bd54-44b1-a048-fa88f1299e28.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e800573a-bd54-44b1-a048-fa88f1299e28.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-e800573a-bd54-44b1-a048-fa88f1299e28 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e800573a-bd54-44b1-a048-fa88f1299e28-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e800573a-bd54-44b1-a048-fa88f1299e28 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e800573a-bd54-44b1-a048-fa88f1299e28 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-e800573a-bd54-44b1-a048-fa88f1299e28 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-e800573a-bd54-44b1-a048-fa88f1299e28 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-e800573a-bd54-44b1-a048-fa88f1299e28 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-e800573a-bd54-44b1-a048-fa88f1299e28.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e800573a-bd54-44b1-a048-fa88f1299e28.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e800573a-bd54-44b1-a048-fa88f1299e28.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-690dd6be-d31b-4658-a0e3-58ddd3a88ea4 {
  margin-left: auto;
margin-right: auto;
padding-left: 16px;
padding-right: 16px;
min-height: 50px;
max-width: 1388px;
}








#s-690dd6be-d31b-4658-a0e3-58ddd3a88ea4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-690dd6be-d31b-4658-a0e3-58ddd3a88ea4.shg-box.shg-c {
  justify-content: center;
}

#s-c662a659-d6c3-45b6-99dc-42bd739e6a5f {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-c662a659-d6c3-45b6-99dc-42bd739e6a5f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c662a659-d6c3-45b6-99dc-42bd739e6a5f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c662a659-d6c3-45b6-99dc-42bd739e6a5f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c662a659-d6c3-45b6-99dc-42bd739e6a5f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-73d3f5e2-a44a-45ae-ba49-02282121632f {
  margin-left: auto;
margin-right: auto;
padding-left: 3%;
min-height: 50px;
}








#s-73d3f5e2-a44a-45ae-ba49-02282121632f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-73d3f5e2-a44a-45ae-ba49-02282121632f.shg-box.shg-c {
  justify-content: center;
}

#s-ea6de8a9-ec09-4f33-b113-91b6e067fd83 {
  margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
text-align: left;
}

#s-ea6de8a9-ec09-4f33-b113-91b6e067fd83 .shogun-heading-component h1 {
  color: rgba(22, 64, 111, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1.125em;
  
  
}



#s-f3e273fd-9795-4c56-8160-dbb24cbb1556 {
  margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
}

#s-f3e273fd-9795-4c56-8160-dbb24cbb1556 .shg-proportional-font-size,
#s-f3e273fd-9795-4c56-8160-dbb24cbb1556 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-d4d4e966-31b5-40e4-a062-a0f4426c086d {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjZjNjA5NDktNjg3OS00YTdiLWFiMjktMzBlNDc4MWVmZDUyIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjRmNGY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZTFlMWUxO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiNmM2MDk0OS02ODc5LTRhN2ItYWIyOS0zMGU0NzgxZWZkNTIpIi8+PC9zdmc+);
background-repeat: no-repeat;
border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(77, 88, 88, 1);
border-radius: 10px;
text-align: left;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f4f4f4"}, {"id"=>2, "pos"=>1, "color"=>"#e1e1e1"}];
hover-type: gradient;
color: rgba(77, 88, 88, 1);
}
#s-d4d4e966-31b5-40e4-a062-a0f4426c086d:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iY2ZiN2M2MDMtZjY2ZS00MWE2LTk5YmQtMDk5MmRhNDJkYjVhIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjlhZjZiO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjcwOTA5MDkwOTA5MDkwOTEiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNjg3MjI7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2NmYjdjNjAzLWY2NmUtNDFhNi05OWJkLTA5OTJkYTQyZGI1YSkiLz48L3N2Zz4=) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(246, 135, 34, 1) !important;
border-radius: 10px !important;
text-decoration: none !important;
color: rgba(244, 244, 244, 1) !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f9af6b"}, {"id"=>2, "pos"=>0.7090909090909091, "color"=>"#f68722"}] !important;
hover-type: gradient !important;}#s-d4d4e966-31b5-40e4-a062-a0f4426c086d:active {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(22, 65, 111, 1) !important;
border-radius: 10px !important;
background-color: rgba(22, 65, 111, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-d4d4e966-31b5-40e4-a062-a0f4426c086d-root {
    text-align: left;
  }


#s-d4d4e966-31b5-40e4-a062-a0f4426c086d.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d4d4e966-31b5-40e4-a062-a0f4426c086d-root {
    text-align: left;
  }


#s-d4d4e966-31b5-40e4-a062-a0f4426c086d.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d4d4e966-31b5-40e4-a062-a0f4426c086d-root {
    text-align: left;
  }


#s-d4d4e966-31b5-40e4-a062-a0f4426c086d.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d4d4e966-31b5-40e4-a062-a0f4426c086d-root {
    text-align: left;
  }


#s-d4d4e966-31b5-40e4-a062-a0f4426c086d.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d4d4e966-31b5-40e4-a062-a0f4426c086d-root {
    text-align: left;
  }


#s-d4d4e966-31b5-40e4-a062-a0f4426c086d.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-9dfd6657-1465-4243-b738-236dcba50cba {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-9dfd6657-1465-4243-b738-236dcba50cba {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9dfd6657-1465-4243-b738-236dcba50cba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9dfd6657-1465-4243-b738-236dcba50cba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9dfd6657-1465-4243-b738-236dcba50cba .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-9dfd6657-1465-4243-b738-236dcba50cba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-9dfd6657-1465-4243-b738-236dcba50cba img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-9dfd6657-1465-4243-b738-236dcba50cba .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-9dfd6657-1465-4243-b738-236dcba50cba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9dfd6657-1465-4243-b738-236dcba50cba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9dfd6657-1465-4243-b738-236dcba50cba.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-9dfd6657-1465-4243-b738-236dcba50cba {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9dfd6657-1465-4243-b738-236dcba50cba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9dfd6657-1465-4243-b738-236dcba50cba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9dfd6657-1465-4243-b738-236dcba50cba .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-9dfd6657-1465-4243-b738-236dcba50cba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-9dfd6657-1465-4243-b738-236dcba50cba img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-9dfd6657-1465-4243-b738-236dcba50cba .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-9dfd6657-1465-4243-b738-236dcba50cba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9dfd6657-1465-4243-b738-236dcba50cba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9dfd6657-1465-4243-b738-236dcba50cba.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-9dfd6657-1465-4243-b738-236dcba50cba {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9dfd6657-1465-4243-b738-236dcba50cba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9dfd6657-1465-4243-b738-236dcba50cba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9dfd6657-1465-4243-b738-236dcba50cba .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-9dfd6657-1465-4243-b738-236dcba50cba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-9dfd6657-1465-4243-b738-236dcba50cba img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-9dfd6657-1465-4243-b738-236dcba50cba .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-9dfd6657-1465-4243-b738-236dcba50cba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9dfd6657-1465-4243-b738-236dcba50cba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9dfd6657-1465-4243-b738-236dcba50cba.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-9dfd6657-1465-4243-b738-236dcba50cba {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9dfd6657-1465-4243-b738-236dcba50cba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9dfd6657-1465-4243-b738-236dcba50cba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9dfd6657-1465-4243-b738-236dcba50cba .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-9dfd6657-1465-4243-b738-236dcba50cba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-9dfd6657-1465-4243-b738-236dcba50cba img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-9dfd6657-1465-4243-b738-236dcba50cba .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-9dfd6657-1465-4243-b738-236dcba50cba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9dfd6657-1465-4243-b738-236dcba50cba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9dfd6657-1465-4243-b738-236dcba50cba.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-9dfd6657-1465-4243-b738-236dcba50cba {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9dfd6657-1465-4243-b738-236dcba50cba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9dfd6657-1465-4243-b738-236dcba50cba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9dfd6657-1465-4243-b738-236dcba50cba .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-9dfd6657-1465-4243-b738-236dcba50cba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-9dfd6657-1465-4243-b738-236dcba50cba img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-9dfd6657-1465-4243-b738-236dcba50cba .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-9dfd6657-1465-4243-b738-236dcba50cba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9dfd6657-1465-4243-b738-236dcba50cba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9dfd6657-1465-4243-b738-236dcba50cba.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-a771ac06-fbb8-491a-b849-37f948779cd3 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1388px;
}








#s-a771ac06-fbb8-491a-b849-37f948779cd3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a771ac06-fbb8-491a-b849-37f948779cd3.shg-box.shg-c {
  justify-content: center;
}

#s-56acfa74-4e1a-4158-a99b-a66f80d2f863 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-56acfa74-4e1a-4158-a99b-a66f80d2f863"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-56acfa74-4e1a-4158-a99b-a66f80d2f863"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-56acfa74-4e1a-4158-a99b-a66f80d2f863"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-56acfa74-4e1a-4158-a99b-a66f80d2f863"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-667f767b-4d69-44cf-93dd-9842a035fabd {
  margin-left: auto;
margin-right: auto;
padding-left: 3%;
min-height: 50px;
}








#s-667f767b-4d69-44cf-93dd-9842a035fabd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-667f767b-4d69-44cf-93dd-9842a035fabd.shg-box.shg-c {
  justify-content: center;
}

#s-8086a722-670c-4074-a050-22e99c2cbbff {
  margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
text-align: left;
}

#s-8086a722-670c-4074-a050-22e99c2cbbff .shogun-heading-component h1 {
  color: rgba(22, 64, 111, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1.125em;
  
  
}



#s-ae3002dc-0c8c-4db9-aee6-462b72ed4ec7 {
  margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
}

#s-ae3002dc-0c8c-4db9-aee6-462b72ed4ec7 .shg-proportional-font-size,
#s-ae3002dc-0c8c-4db9-aee6-462b72ed4ec7 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-2c3035d7-5dcb-44c5-bbab-01cb68e16e34 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjZjNjA5NDktNjg3OS00YTdiLWFiMjktMzBlNDc4MWVmZDUyIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjRmNGY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZTFlMWUxO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiNmM2MDk0OS02ODc5LTRhN2ItYWIyOS0zMGU0NzgxZWZkNTIpIi8+PC9zdmc+);
background-repeat: no-repeat;
border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(77, 88, 88, 1);
border-radius: 10px;
text-align: left;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f4f4f4"}, {"id"=>2, "pos"=>1, "color"=>"#e1e1e1"}];
hover-type: gradient;
color: rgba(77, 88, 88, 1);
}
#s-2c3035d7-5dcb-44c5-bbab-01cb68e16e34:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZjgxZjY4M2UtNTYyMS00NjY0LWE0M2YtMmMzMGU1ZDdmMmFhIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjlhZjZiO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjcwOTA5MDkwOTA5MDkwOTEiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNjg3MjI7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2Y4MWY2ODNlLTU2MjEtNDY2NC1hNDNmLTJjMzBlNWQ3ZjJhYSkiLz48L3N2Zz4=) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(246, 135, 34, 1) !important;
border-radius: 10px !important;
text-decoration: none !important;
color: rgba(244, 244, 244, 1) !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f9af6b"}, {"id"=>2, "pos"=>0.7090909090909091, "color"=>"#f68722"}] !important;
hover-type: gradient !important;}#s-2c3035d7-5dcb-44c5-bbab-01cb68e16e34:active {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(22, 65, 111, 1) !important;
border-radius: 10px !important;
background-color: rgba(22, 65, 111, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-2c3035d7-5dcb-44c5-bbab-01cb68e16e34-root {
    text-align: left;
  }


#s-2c3035d7-5dcb-44c5-bbab-01cb68e16e34.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-2c3035d7-5dcb-44c5-bbab-01cb68e16e34-root {
    text-align: left;
  }


#s-2c3035d7-5dcb-44c5-bbab-01cb68e16e34.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2c3035d7-5dcb-44c5-bbab-01cb68e16e34-root {
    text-align: left;
  }


#s-2c3035d7-5dcb-44c5-bbab-01cb68e16e34.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2c3035d7-5dcb-44c5-bbab-01cb68e16e34-root {
    text-align: left;
  }


#s-2c3035d7-5dcb-44c5-bbab-01cb68e16e34.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-2c3035d7-5dcb-44c5-bbab-01cb68e16e34-root {
    text-align: left;
  }


#s-2c3035d7-5dcb-44c5-bbab-01cb68e16e34.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-0b924868-9b29-4667-9649-d5d4a9354d72 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-0b924868-9b29-4667-9649-d5d4a9354d72 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0b924868-9b29-4667-9649-d5d4a9354d72-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-0b924868-9b29-4667-9649-d5d4a9354d72 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0b924868-9b29-4667-9649-d5d4a9354d72 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-0b924868-9b29-4667-9649-d5d4a9354d72 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-0b924868-9b29-4667-9649-d5d4a9354d72 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-0b924868-9b29-4667-9649-d5d4a9354d72 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-0b924868-9b29-4667-9649-d5d4a9354d72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b924868-9b29-4667-9649-d5d4a9354d72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b924868-9b29-4667-9649-d5d4a9354d72.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-0b924868-9b29-4667-9649-d5d4a9354d72 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0b924868-9b29-4667-9649-d5d4a9354d72-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-0b924868-9b29-4667-9649-d5d4a9354d72 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0b924868-9b29-4667-9649-d5d4a9354d72 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-0b924868-9b29-4667-9649-d5d4a9354d72 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-0b924868-9b29-4667-9649-d5d4a9354d72 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-0b924868-9b29-4667-9649-d5d4a9354d72 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-0b924868-9b29-4667-9649-d5d4a9354d72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b924868-9b29-4667-9649-d5d4a9354d72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b924868-9b29-4667-9649-d5d4a9354d72.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-0b924868-9b29-4667-9649-d5d4a9354d72 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0b924868-9b29-4667-9649-d5d4a9354d72-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-0b924868-9b29-4667-9649-d5d4a9354d72 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0b924868-9b29-4667-9649-d5d4a9354d72 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-0b924868-9b29-4667-9649-d5d4a9354d72 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-0b924868-9b29-4667-9649-d5d4a9354d72 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-0b924868-9b29-4667-9649-d5d4a9354d72 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-0b924868-9b29-4667-9649-d5d4a9354d72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b924868-9b29-4667-9649-d5d4a9354d72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b924868-9b29-4667-9649-d5d4a9354d72.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-0b924868-9b29-4667-9649-d5d4a9354d72 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0b924868-9b29-4667-9649-d5d4a9354d72-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-0b924868-9b29-4667-9649-d5d4a9354d72 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0b924868-9b29-4667-9649-d5d4a9354d72 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-0b924868-9b29-4667-9649-d5d4a9354d72 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-0b924868-9b29-4667-9649-d5d4a9354d72 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-0b924868-9b29-4667-9649-d5d4a9354d72 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-0b924868-9b29-4667-9649-d5d4a9354d72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b924868-9b29-4667-9649-d5d4a9354d72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b924868-9b29-4667-9649-d5d4a9354d72.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-0b924868-9b29-4667-9649-d5d4a9354d72 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0b924868-9b29-4667-9649-d5d4a9354d72-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-0b924868-9b29-4667-9649-d5d4a9354d72 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0b924868-9b29-4667-9649-d5d4a9354d72 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-0b924868-9b29-4667-9649-d5d4a9354d72 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-0b924868-9b29-4667-9649-d5d4a9354d72 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-0b924868-9b29-4667-9649-d5d4a9354d72 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-0b924868-9b29-4667-9649-d5d4a9354d72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b924868-9b29-4667-9649-d5d4a9354d72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b924868-9b29-4667-9649-d5d4a9354d72.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-772f2cd6-25da-4a86-80c7-e37c99dfdcf6 {
  margin-left: auto;
margin-right: auto;
padding-left: 16px;
padding-right: 16px;
min-height: 50px;
max-width: 1388px;
}








#s-772f2cd6-25da-4a86-80c7-e37c99dfdcf6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-772f2cd6-25da-4a86-80c7-e37c99dfdcf6.shg-box.shg-c {
  justify-content: center;
}

#s-e0955c35-d5cf-4253-a2e8-c51418a0d2ca {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-e0955c35-d5cf-4253-a2e8-c51418a0d2ca"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e0955c35-d5cf-4253-a2e8-c51418a0d2ca"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e0955c35-d5cf-4253-a2e8-c51418a0d2ca"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e0955c35-d5cf-4253-a2e8-c51418a0d2ca"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-cad49c46-dfc4-422b-896d-f62c3dcd3703 {
  margin-left: auto;
margin-right: auto;
padding-left: 3%;
min-height: 50px;
}








#s-cad49c46-dfc4-422b-896d-f62c3dcd3703 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cad49c46-dfc4-422b-896d-f62c3dcd3703.shg-box.shg-c {
  justify-content: center;
}

#s-153302d4-197a-4a60-9581-a0bc8109e180 {
  margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
text-align: left;
}

#s-153302d4-197a-4a60-9581-a0bc8109e180 .shogun-heading-component h1 {
  color: rgba(22, 64, 111, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1.125em;
  
  
}



#s-dece7bed-d6c9-4a26-b9db-e35e4f7b6d98 {
  margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
}

#s-dece7bed-d6c9-4a26-b9db-e35e4f7b6d98 .shg-proportional-font-size,
#s-dece7bed-d6c9-4a26-b9db-e35e4f7b6d98 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-7a8329f6-3fbe-4591-b424-cfa3e62a6953 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjZjNjA5NDktNjg3OS00YTdiLWFiMjktMzBlNDc4MWVmZDUyIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjRmNGY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZTFlMWUxO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiNmM2MDk0OS02ODc5LTRhN2ItYWIyOS0zMGU0NzgxZWZkNTIpIi8+PC9zdmc+);
background-repeat: no-repeat;
border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(77, 88, 88, 1);
border-radius: 10px;
text-align: left;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f4f4f4"}, {"id"=>2, "pos"=>1, "color"=>"#e1e1e1"}];
hover-type: gradient;
color: rgba(77, 88, 88, 1);
}
#s-7a8329f6-3fbe-4591-b424-cfa3e62a6953:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iOWQ2ZWVhOTctMGIwYi00Yzg2LTkxZDgtZGEyMDgxMDQ1NWY5IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjlhZjZiO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjcwOTA5MDkwOTA5MDkwOTEiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNjg3MjI7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoIzlkNmVlYTk3LTBiMGItNGM4Ni05MWQ4LWRhMjA4MTA0NTVmOSkiLz48L3N2Zz4=) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(246, 135, 34, 1) !important;
border-radius: 10px !important;
text-decoration: none !important;
color: rgba(244, 244, 244, 1) !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f9af6b"}, {"id"=>2, "pos"=>0.7090909090909091, "color"=>"#f68722"}] !important;
hover-type: gradient !important;}#s-7a8329f6-3fbe-4591-b424-cfa3e62a6953:active {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(22, 65, 111, 1) !important;
border-radius: 10px !important;
background-color: rgba(22, 65, 111, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-7a8329f6-3fbe-4591-b424-cfa3e62a6953-root {
    text-align: left;
  }


#s-7a8329f6-3fbe-4591-b424-cfa3e62a6953.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-7a8329f6-3fbe-4591-b424-cfa3e62a6953-root {
    text-align: left;
  }


#s-7a8329f6-3fbe-4591-b424-cfa3e62a6953.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7a8329f6-3fbe-4591-b424-cfa3e62a6953-root {
    text-align: left;
  }


#s-7a8329f6-3fbe-4591-b424-cfa3e62a6953.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7a8329f6-3fbe-4591-b424-cfa3e62a6953-root {
    text-align: left;
  }


#s-7a8329f6-3fbe-4591-b424-cfa3e62a6953.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-7a8329f6-3fbe-4591-b424-cfa3e62a6953-root {
    text-align: left;
  }


#s-7a8329f6-3fbe-4591-b424-cfa3e62a6953.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-03075a38-f1cb-45da-9c50-bd2f34500111 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-03075a38-f1cb-45da-9c50-bd2f34500111 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-03075a38-f1cb-45da-9c50-bd2f34500111-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-03075a38-f1cb-45da-9c50-bd2f34500111 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-03075a38-f1cb-45da-9c50-bd2f34500111 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-03075a38-f1cb-45da-9c50-bd2f34500111 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-03075a38-f1cb-45da-9c50-bd2f34500111 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-03075a38-f1cb-45da-9c50-bd2f34500111 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-03075a38-f1cb-45da-9c50-bd2f34500111.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03075a38-f1cb-45da-9c50-bd2f34500111.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03075a38-f1cb-45da-9c50-bd2f34500111.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-03075a38-f1cb-45da-9c50-bd2f34500111 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-03075a38-f1cb-45da-9c50-bd2f34500111-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-03075a38-f1cb-45da-9c50-bd2f34500111 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-03075a38-f1cb-45da-9c50-bd2f34500111 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-03075a38-f1cb-45da-9c50-bd2f34500111 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-03075a38-f1cb-45da-9c50-bd2f34500111 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-03075a38-f1cb-45da-9c50-bd2f34500111 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-03075a38-f1cb-45da-9c50-bd2f34500111.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03075a38-f1cb-45da-9c50-bd2f34500111.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03075a38-f1cb-45da-9c50-bd2f34500111.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-03075a38-f1cb-45da-9c50-bd2f34500111 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-03075a38-f1cb-45da-9c50-bd2f34500111-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-03075a38-f1cb-45da-9c50-bd2f34500111 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-03075a38-f1cb-45da-9c50-bd2f34500111 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-03075a38-f1cb-45da-9c50-bd2f34500111 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-03075a38-f1cb-45da-9c50-bd2f34500111 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-03075a38-f1cb-45da-9c50-bd2f34500111 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-03075a38-f1cb-45da-9c50-bd2f34500111.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03075a38-f1cb-45da-9c50-bd2f34500111.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03075a38-f1cb-45da-9c50-bd2f34500111.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-03075a38-f1cb-45da-9c50-bd2f34500111 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-03075a38-f1cb-45da-9c50-bd2f34500111-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-03075a38-f1cb-45da-9c50-bd2f34500111 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-03075a38-f1cb-45da-9c50-bd2f34500111 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-03075a38-f1cb-45da-9c50-bd2f34500111 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-03075a38-f1cb-45da-9c50-bd2f34500111 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-03075a38-f1cb-45da-9c50-bd2f34500111 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-03075a38-f1cb-45da-9c50-bd2f34500111.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03075a38-f1cb-45da-9c50-bd2f34500111.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03075a38-f1cb-45da-9c50-bd2f34500111.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-03075a38-f1cb-45da-9c50-bd2f34500111 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-03075a38-f1cb-45da-9c50-bd2f34500111-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-03075a38-f1cb-45da-9c50-bd2f34500111 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-03075a38-f1cb-45da-9c50-bd2f34500111 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-03075a38-f1cb-45da-9c50-bd2f34500111 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-03075a38-f1cb-45da-9c50-bd2f34500111 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-03075a38-f1cb-45da-9c50-bd2f34500111 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-03075a38-f1cb-45da-9c50-bd2f34500111.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03075a38-f1cb-45da-9c50-bd2f34500111.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03075a38-f1cb-45da-9c50-bd2f34500111.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-ce46d132-ba45-4f37-b6e8-4496cfbd0f6e {
  margin-left: auto;
margin-right: auto;
padding-left: 16px;
padding-right: 16px;
min-height: 50px;
max-width: 1388px;
}








#s-ce46d132-ba45-4f37-b6e8-4496cfbd0f6e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ce46d132-ba45-4f37-b6e8-4496cfbd0f6e.shg-box.shg-c {
  justify-content: center;
}

#s-96dea4aa-947b-46e3-9bd8-ca988abec33a {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-96dea4aa-947b-46e3-9bd8-ca988abec33a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-96dea4aa-947b-46e3-9bd8-ca988abec33a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-96dea4aa-947b-46e3-9bd8-ca988abec33a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-96dea4aa-947b-46e3-9bd8-ca988abec33a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-ce7932cd-6a5d-4746-a172-9581905f816f {
  margin-left: auto;
margin-right: auto;
padding-left: 3%;
min-height: 50px;
}








#s-ce7932cd-6a5d-4746-a172-9581905f816f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ce7932cd-6a5d-4746-a172-9581905f816f.shg-box.shg-c {
  justify-content: center;
}

#s-11decc94-189e-498f-aa50-2348f3648c4d {
  margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
text-align: left;
}

#s-11decc94-189e-498f-aa50-2348f3648c4d .shogun-heading-component h1 {
  color: rgba(22, 64, 111, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1.125em;
  
  
}



#s-0c88bc21-80dc-459e-80e0-44098522cf36 {
  margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
}

#s-0c88bc21-80dc-459e-80e0-44098522cf36 .shg-proportional-font-size,
#s-0c88bc21-80dc-459e-80e0-44098522cf36 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-627eba07-e139-4ae6-9570-b1aef6452836 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjZjNjA5NDktNjg3OS00YTdiLWFiMjktMzBlNDc4MWVmZDUyIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjRmNGY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZTFlMWUxO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiNmM2MDk0OS02ODc5LTRhN2ItYWIyOS0zMGU0NzgxZWZkNTIpIi8+PC9zdmc+);
background-repeat: no-repeat;
border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(77, 88, 88, 1);
border-radius: 10px;
text-align: left;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f4f4f4"}, {"id"=>2, "pos"=>1, "color"=>"#e1e1e1"}];
hover-type: gradient;
color: rgba(77, 88, 88, 1);
}
#s-627eba07-e139-4ae6-9570-b1aef6452836:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZjg0YzgzMGEtNzQzYS00N2MwLTk2ZTEtMThjNGFhODM3MWMzIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjlhZjZiO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjcwOTA5MDkwOTA5MDkwOTEiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNjg3MjI7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2Y4NGM4MzBhLTc0M2EtNDdjMC05NmUxLTE4YzRhYTgzNzFjMykiLz48L3N2Zz4=) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(246, 135, 34, 1) !important;
border-radius: 10px !important;
text-decoration: none !important;
color: rgba(244, 244, 244, 1) !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f9af6b"}, {"id"=>2, "pos"=>0.7090909090909091, "color"=>"#f68722"}] !important;
hover-type: gradient !important;}#s-627eba07-e139-4ae6-9570-b1aef6452836:active {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(22, 65, 111, 1) !important;
border-radius: 10px !important;
background-color: rgba(22, 65, 111, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-627eba07-e139-4ae6-9570-b1aef6452836-root {
    text-align: left;
  }


#s-627eba07-e139-4ae6-9570-b1aef6452836.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-627eba07-e139-4ae6-9570-b1aef6452836-root {
    text-align: left;
  }


#s-627eba07-e139-4ae6-9570-b1aef6452836.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-627eba07-e139-4ae6-9570-b1aef6452836-root {
    text-align: left;
  }


#s-627eba07-e139-4ae6-9570-b1aef6452836.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-627eba07-e139-4ae6-9570-b1aef6452836-root {
    text-align: left;
  }


#s-627eba07-e139-4ae6-9570-b1aef6452836.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-627eba07-e139-4ae6-9570-b1aef6452836-root {
    text-align: left;
  }


#s-627eba07-e139-4ae6-9570-b1aef6452836.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9f3e5393-ca6d-4ebd-a72e-630de95d419b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-9f3e5393-ca6d-4ebd-a72e-630de95d419b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-9f3e5393-ca6d-4ebd-a72e-630de95d419b .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-9f3e5393-ca6d-4ebd-a72e-630de95d419b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f3e5393-ca6d-4ebd-a72e-630de95d419b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9f3e5393-ca6d-4ebd-a72e-630de95d419b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-9f3e5393-ca6d-4ebd-a72e-630de95d419b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-9f3e5393-ca6d-4ebd-a72e-630de95d419b .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-9f3e5393-ca6d-4ebd-a72e-630de95d419b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f3e5393-ca6d-4ebd-a72e-630de95d419b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9f3e5393-ca6d-4ebd-a72e-630de95d419b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-9f3e5393-ca6d-4ebd-a72e-630de95d419b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-9f3e5393-ca6d-4ebd-a72e-630de95d419b .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-9f3e5393-ca6d-4ebd-a72e-630de95d419b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f3e5393-ca6d-4ebd-a72e-630de95d419b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9f3e5393-ca6d-4ebd-a72e-630de95d419b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-9f3e5393-ca6d-4ebd-a72e-630de95d419b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-9f3e5393-ca6d-4ebd-a72e-630de95d419b .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-9f3e5393-ca6d-4ebd-a72e-630de95d419b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f3e5393-ca6d-4ebd-a72e-630de95d419b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9f3e5393-ca6d-4ebd-a72e-630de95d419b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-9f3e5393-ca6d-4ebd-a72e-630de95d419b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-9f3e5393-ca6d-4ebd-a72e-630de95d419b .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-9f3e5393-ca6d-4ebd-a72e-630de95d419b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f3e5393-ca6d-4ebd-a72e-630de95d419b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f3e5393-ca6d-4ebd-a72e-630de95d419b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-a8162548-83fa-4097-8bb2-d088e498b652 {
  margin-left: auto;
margin-right: auto;
padding-left: 16px;
padding-right: 16px;
min-height: 50px;
max-width: 1388px;
}








#s-a8162548-83fa-4097-8bb2-d088e498b652 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a8162548-83fa-4097-8bb2-d088e498b652.shg-box.shg-c {
  justify-content: center;
}

#s-eac471d6-b4ae-47cc-8451-bce2dae9d731 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-eac471d6-b4ae-47cc-8451-bce2dae9d731"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-eac471d6-b4ae-47cc-8451-bce2dae9d731"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-eac471d6-b4ae-47cc-8451-bce2dae9d731"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-eac471d6-b4ae-47cc-8451-bce2dae9d731"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-81889622-291b-4fcb-b957-e657d29e4771 {
  margin-left: auto;
margin-right: auto;
padding-left: 3%;
min-height: 50px;
}








#s-81889622-291b-4fcb-b957-e657d29e4771 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-81889622-291b-4fcb-b957-e657d29e4771.shg-box.shg-c {
  justify-content: center;
}

#s-027d32ac-47b2-4029-b082-3d7ea93caa9b {
  margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
text-align: left;
}

#s-027d32ac-47b2-4029-b082-3d7ea93caa9b .shogun-heading-component h1 {
  color: rgba(22, 64, 111, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1.125em;
  
  
}



#s-221148c3-a314-4881-8e6d-36e2b877c766 {
  margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
}

#s-221148c3-a314-4881-8e6d-36e2b877c766 .shg-proportional-font-size,
#s-221148c3-a314-4881-8e6d-36e2b877c766 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-dd99e973-8fda-4152-86b7-117b5b6471ff {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjZjNjA5NDktNjg3OS00YTdiLWFiMjktMzBlNDc4MWVmZDUyIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjRmNGY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZTFlMWUxO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiNmM2MDk0OS02ODc5LTRhN2ItYWIyOS0zMGU0NzgxZWZkNTIpIi8+PC9zdmc+);
background-repeat: no-repeat;
border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(77, 88, 88, 1);
border-radius: 10px;
text-align: left;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f4f4f4"}, {"id"=>2, "pos"=>1, "color"=>"#e1e1e1"}];
hover-type: gradient;
color: rgba(77, 88, 88, 1);
}
#s-dd99e973-8fda-4152-86b7-117b5b6471ff:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMjc3OWYxZWYtYjE5MC00ZmM2LWE1MTctMzFjODQ2OWZiMzkyIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjlhZjZiO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjcwOTA5MDkwOTA5MDkwOTEiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNjg3MjI7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoIzI3NzlmMWVmLWIxOTAtNGZjNi1hNTE3LTMxYzg0NjlmYjM5MikiLz48L3N2Zz4=) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(246, 135, 34, 1) !important;
border-radius: 10px !important;
text-decoration: none !important;
color: rgba(244, 244, 244, 1) !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f9af6b"}, {"id"=>2, "pos"=>0.7090909090909091, "color"=>"#f68722"}] !important;
hover-type: gradient !important;}#s-dd99e973-8fda-4152-86b7-117b5b6471ff:active {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(22, 65, 111, 1) !important;
border-radius: 10px !important;
background-color: rgba(22, 65, 111, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-dd99e973-8fda-4152-86b7-117b5b6471ff-root {
    text-align: left;
  }


#s-dd99e973-8fda-4152-86b7-117b5b6471ff.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-dd99e973-8fda-4152-86b7-117b5b6471ff-root {
    text-align: left;
  }


#s-dd99e973-8fda-4152-86b7-117b5b6471ff.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-dd99e973-8fda-4152-86b7-117b5b6471ff-root {
    text-align: left;
  }


#s-dd99e973-8fda-4152-86b7-117b5b6471ff.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-dd99e973-8fda-4152-86b7-117b5b6471ff-root {
    text-align: left;
  }


#s-dd99e973-8fda-4152-86b7-117b5b6471ff.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-dd99e973-8fda-4152-86b7-117b5b6471ff-root {
    text-align: left;
  }


#s-dd99e973-8fda-4152-86b7-117b5b6471ff.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-e60be33b-7c06-4b9e-9c66-a298bd9469b4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e60be33b-7c06-4b9e-9c66-a298bd9469b4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-e60be33b-7c06-4b9e-9c66-a298bd9469b4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e60be33b-7c06-4b9e-9c66-a298bd9469b4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-e60be33b-7c06-4b9e-9c66-a298bd9469b4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e60be33b-7c06-4b9e-9c66-a298bd9469b4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-e60be33b-7c06-4b9e-9c66-a298bd9469b4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e60be33b-7c06-4b9e-9c66-a298bd9469b4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-e60be33b-7c06-4b9e-9c66-a298bd9469b4 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-e60be33b-7c06-4b9e-9c66-a298bd9469b4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e60be33b-7c06-4b9e-9c66-a298bd9469b4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e60be33b-7c06-4b9e-9c66-a298bd9469b4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-f42b44e6-cae3-486e-a9de-18ac2c190faf {
  margin-left: auto;
margin-right: auto;
padding-left: 16px;
padding-right: 16px;
min-height: 50px;
max-width: 1388px;
}








#s-f42b44e6-cae3-486e-a9de-18ac2c190faf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f42b44e6-cae3-486e-a9de-18ac2c190faf.shg-box.shg-c {
  justify-content: center;
}

#s-82e0e755-58f2-4e3f-a103-fc8f4ceb67b0 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-82e0e755-58f2-4e3f-a103-fc8f4ceb67b0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-82e0e755-58f2-4e3f-a103-fc8f4ceb67b0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-82e0e755-58f2-4e3f-a103-fc8f4ceb67b0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-82e0e755-58f2-4e3f-a103-fc8f4ceb67b0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-be4c8ce2-188e-4091-afdd-c0859f5b209d {
  margin-left: auto;
margin-right: auto;
padding-left: 3%;
min-height: 50px;
}








#s-be4c8ce2-188e-4091-afdd-c0859f5b209d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-be4c8ce2-188e-4091-afdd-c0859f5b209d.shg-box.shg-c {
  justify-content: center;
}

#s-4fb1b9aa-d071-4050-a21e-e1af77262a31 {
  margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
text-align: left;
}

#s-4fb1b9aa-d071-4050-a21e-e1af77262a31 .shogun-heading-component h1 {
  color: rgba(22, 64, 111, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1.125em;
  
  
}



#s-231ffe0e-c06c-43ab-ace1-906c610c1a8d {
  margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
}

#s-231ffe0e-c06c-43ab-ace1-906c610c1a8d .shg-proportional-font-size,
#s-231ffe0e-c06c-43ab-ace1-906c610c1a8d .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-c2c82e95-044b-4f2a-8b3c-5b55e3f88dde {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjZjNjA5NDktNjg3OS00YTdiLWFiMjktMzBlNDc4MWVmZDUyIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjRmNGY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZTFlMWUxO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiNmM2MDk0OS02ODc5LTRhN2ItYWIyOS0zMGU0NzgxZWZkNTIpIi8+PC9zdmc+);
background-repeat: no-repeat;
border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(77, 88, 88, 1);
border-radius: 10px;
text-align: left;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f4f4f4"}, {"id"=>2, "pos"=>1, "color"=>"#e1e1e1"}];
hover-type: gradient;
color: rgba(77, 88, 88, 1);
}
#s-c2c82e95-044b-4f2a-8b3c-5b55e3f88dde:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMGVjYjI0YzQtZDg1Yy00ODhlLTg1YzMtOWRmYjc4ZjkyMjNkIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjlhZjZiO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjcwOTA5MDkwOTA5MDkwOTEiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNjg3MjI7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoIzBlY2IyNGM0LWQ4NWMtNDg4ZS04NWMzLTlkZmI3OGY5MjIzZCkiLz48L3N2Zz4=) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(246, 135, 34, 1) !important;
border-radius: 10px !important;
text-decoration: none !important;
color: rgba(244, 244, 244, 1) !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f9af6b"}, {"id"=>2, "pos"=>0.7090909090909091, "color"=>"#f68722"}] !important;
hover-type: gradient !important;}#s-c2c82e95-044b-4f2a-8b3c-5b55e3f88dde:active {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(22, 65, 111, 1) !important;
border-radius: 10px !important;
background-color: rgba(22, 65, 111, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-c2c82e95-044b-4f2a-8b3c-5b55e3f88dde-root {
    text-align: left;
  }


#s-c2c82e95-044b-4f2a-8b3c-5b55e3f88dde.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c2c82e95-044b-4f2a-8b3c-5b55e3f88dde-root {
    text-align: left;
  }


#s-c2c82e95-044b-4f2a-8b3c-5b55e3f88dde.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c2c82e95-044b-4f2a-8b3c-5b55e3f88dde-root {
    text-align: left;
  }


#s-c2c82e95-044b-4f2a-8b3c-5b55e3f88dde.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c2c82e95-044b-4f2a-8b3c-5b55e3f88dde-root {
    text-align: left;
  }


#s-c2c82e95-044b-4f2a-8b3c-5b55e3f88dde.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c2c82e95-044b-4f2a-8b3c-5b55e3f88dde-root {
    text-align: left;
  }


#s-c2c82e95-044b-4f2a-8b3c-5b55e3f88dde.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d8a28d7c-e82e-4f63-9b75-df5bd6e1d646.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-4cd026ab-0233-4a11-b7d2-adb17366bf9a {
  margin-left: auto;
margin-right: auto;
padding-left: 16px;
padding-right: 16px;
min-height: 50px;
max-width: 1388px;
}








#s-4cd026ab-0233-4a11-b7d2-adb17366bf9a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4cd026ab-0233-4a11-b7d2-adb17366bf9a.shg-box.shg-c {
  justify-content: center;
}

#s-b28f4fb5-d6de-434e-8220-e4c2246affbd {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-b28f4fb5-d6de-434e-8220-e4c2246affbd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b28f4fb5-d6de-434e-8220-e4c2246affbd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b28f4fb5-d6de-434e-8220-e4c2246affbd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b28f4fb5-d6de-434e-8220-e4c2246affbd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-657d506a-e8dc-407a-909e-4800274bbdd2 {
  margin-left: auto;
margin-right: auto;
padding-left: 3%;
min-height: 50px;
}








#s-657d506a-e8dc-407a-909e-4800274bbdd2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-657d506a-e8dc-407a-909e-4800274bbdd2.shg-box.shg-c {
  justify-content: center;
}

#s-f4543f76-0e59-465b-9b0d-c6abdb1f5b22 {
  margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
text-align: left;
}

#s-f4543f76-0e59-465b-9b0d-c6abdb1f5b22 .shogun-heading-component h1 {
  color: rgba(22, 64, 111, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1.125em;
  
  
}



#s-ac1d0d2e-5f12-4017-9d06-b04f8d702f35 {
  margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
}

#s-ac1d0d2e-5f12-4017-9d06-b04f8d702f35 .shg-proportional-font-size,
#s-ac1d0d2e-5f12-4017-9d06-b04f8d702f35 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-9e72349c-b5cc-4565-b748-145b1b6dc045 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjZjNjA5NDktNjg3OS00YTdiLWFiMjktMzBlNDc4MWVmZDUyIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjRmNGY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZTFlMWUxO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiNmM2MDk0OS02ODc5LTRhN2ItYWIyOS0zMGU0NzgxZWZkNTIpIi8+PC9zdmc+);
background-repeat: no-repeat;
border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(77, 88, 88, 1);
border-radius: 10px;
text-align: left;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f4f4f4"}, {"id"=>2, "pos"=>1, "color"=>"#e1e1e1"}];
hover-type: gradient;
color: rgba(77, 88, 88, 1);
}
#s-9e72349c-b5cc-4565-b748-145b1b6dc045:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iOTBjYTI2YjgtYTUzMC00MDcwLWFjOTktODc1NzQ0MDMwMGY1IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjlhZjZiO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjcwOTA5MDkwOTA5MDkwOTEiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNjg3MjI7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoIzkwY2EyNmI4LWE1MzAtNDA3MC1hYzk5LTg3NTc0NDAzMDBmNSkiLz48L3N2Zz4=) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(246, 135, 34, 1) !important;
border-radius: 10px !important;
text-decoration: none !important;
color: rgba(244, 244, 244, 1) !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f9af6b"}, {"id"=>2, "pos"=>0.7090909090909091, "color"=>"#f68722"}] !important;
hover-type: gradient !important;}#s-9e72349c-b5cc-4565-b748-145b1b6dc045:active {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(22, 65, 111, 1) !important;
border-radius: 10px !important;
background-color: rgba(22, 65, 111, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-9e72349c-b5cc-4565-b748-145b1b6dc045-root {
    text-align: left;
  }


#s-9e72349c-b5cc-4565-b748-145b1b6dc045.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9e72349c-b5cc-4565-b748-145b1b6dc045-root {
    text-align: left;
  }


#s-9e72349c-b5cc-4565-b748-145b1b6dc045.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9e72349c-b5cc-4565-b748-145b1b6dc045-root {
    text-align: left;
  }


#s-9e72349c-b5cc-4565-b748-145b1b6dc045.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9e72349c-b5cc-4565-b748-145b1b6dc045-root {
    text-align: left;
  }


#s-9e72349c-b5cc-4565-b748-145b1b6dc045.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9e72349c-b5cc-4565-b748-145b1b6dc045-root {
    text-align: left;
  }


#s-9e72349c-b5cc-4565-b748-145b1b6dc045.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-11011cc5-2dac-45eb-ad5a-0457fc140679 {
  margin-top: -25px;
margin-bottom: -25px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-11011cc5-2dac-45eb-ad5a-0457fc140679 {
  display: none;
}
#s-11011cc5-2dac-45eb-ad5a-0457fc140679, #wrap-s-11011cc5-2dac-45eb-ad5a-0457fc140679, #wrap-content-s-11011cc5-2dac-45eb-ad5a-0457fc140679 { display: none !important; }}@media (max-width: 767px){#s-11011cc5-2dac-45eb-ad5a-0457fc140679 {
  display: none;
}
#s-11011cc5-2dac-45eb-ad5a-0457fc140679, #wrap-s-11011cc5-2dac-45eb-ad5a-0457fc140679, #wrap-content-s-11011cc5-2dac-45eb-ad5a-0457fc140679 { display: none !important; }}







#s-11011cc5-2dac-45eb-ad5a-0457fc140679 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-11011cc5-2dac-45eb-ad5a-0457fc140679.shg-box.shg-c {
  justify-content: center;
}

#s-ac1e8958-6046-48d9-819d-5a16638ab2b3 {
  margin-top: 25px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-ac1e8958-6046-48d9-819d-5a16638ab2b3 {
  
}
}@media (max-width: 767px){#s-ac1e8958-6046-48d9-819d-5a16638ab2b3 {
  
}
}
@media (min-width: 0px) {
[id="s-ac1e8958-6046-48d9-819d-5a16638ab2b3"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-ac1e8958-6046-48d9-819d-5a16638ab2b3"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ac1e8958-6046-48d9-819d-5a16638ab2b3"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ac1e8958-6046-48d9-819d-5a16638ab2b3"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

#s-60d8d4be-384b-430c-ae3c-c9d08b932e2e {
  margin-top: 15px;
margin-bottom: 15px;
padding-left: 4%;
padding-right: 4%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 105, 55, 1);
border-style: solid;
border-radius: 5px;
}

@media (min-width: 0px) {
[id="s-60d8d4be-384b-430c-ae3c-c9d08b932e2e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-60d8d4be-384b-430c-ae3c-c9d08b932e2e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-60d8d4be-384b-430c-ae3c-c9d08b932e2e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-60d8d4be-384b-430c-ae3c-c9d08b932e2e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-60d8d4be-384b-430c-ae3c-c9d08b932e2e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-60d8d4be-384b-430c-ae3c-c9d08b932e2e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-60d8d4be-384b-430c-ae3c-c9d08b932e2e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 5.0px);
}

}








#s-30ef726f-45db-4d47-b049-65db84749464 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-30ef726f-45db-4d47-b049-65db84749464 {
  cursor: pointer;
}#s-30ef726f-45db-4d47-b049-65db84749464.shg-box.shg-c {
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content-linked,
.shogun-image-content-not-linked {
  pointer-events: none;
}

.shogun-image-content-not-linked>div {
  pointer-events: auto;
}

.shogun-image-content-linked a,
.shogun-image-content-linked button,
.shogun-image-content-linked iframe,
.shogun-image-content-linked .shg-box-linked {
  pointer-events: auto;
}

.shogun-image-content-top {
  align-items: flex-start;
}

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

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

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

.shogun-image-content > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  min-height: 50px;
max-width: 50px;
aspect-ratio: 1/1;
text-align: center;
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  margin: 0 !important;
  overflow: visible;
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
  /* Add background color handling */
  
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 50px;
    max-height: 50px;
  }




.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image {
  box-sizing: border-box;
}



.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
  min-height: 50px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
      position: relative;
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

@media (min-width: 1200px){#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  margin: 0 !important;
  overflow: visible;
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
  /* Add background color handling */
  
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 50px;
    max-height: 50px;
  }




.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image {
  box-sizing: border-box;
}



.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
  min-height: 50px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
      position: relative;
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  margin: 0 !important;
  overflow: visible;
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
  /* Add background color handling */
  
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 50px;
    max-height: 50px;
  }




.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image {
  box-sizing: border-box;
}



.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
  min-height: 50px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
      position: relative;
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  margin: 0 !important;
  overflow: visible;
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
  /* Add background color handling */
  
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 50px;
    max-height: 50px;
  }




.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image {
  box-sizing: border-box;
}



.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
  min-height: 50px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
      position: relative;
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

}@media (max-width: 767px){#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  margin: 0 !important;
  overflow: visible;
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
  /* Add background color handling */
  
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 50px;
    max-height: 50px;
  }




.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image {
  box-sizing: border-box;
}



.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
  min-height: 50px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
      position: relative;
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

}
#s-c4ae7b52-661e-4590-ada9-9702e7fe57bb {
  min-height: 50px;
}








#s-c4ae7b52-661e-4590-ada9-9702e7fe57bb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c4ae7b52-661e-4590-ada9-9702e7fe57bb {
  cursor: pointer;
}#s-c4ae7b52-661e-4590-ada9-9702e7fe57bb.shg-box.shg-c {
  justify-content: center;
}

#s-77e01eea-787c-4f67-8645-2a37d077a030 {
  padding-top: 0px;
padding-bottom: 0px;
min-height: 50px;
}








#s-77e01eea-787c-4f67-8645-2a37d077a030 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-77e01eea-787c-4f67-8645-2a37d077a030 {
  cursor: pointer;
}#s-77e01eea-787c-4f67-8645-2a37d077a030.shg-box.shg-c {
  justify-content: center;
}

#s-853068a0-6317-4b83-b6f9-6b1b8dc86ab1 {
  margin-top: 5px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-853068a0-6317-4b83-b6f9-6b1b8dc86ab1 .shogun-heading-component h1 {
  color: rgba(22, 65, 111, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-483c79c3-40f5-43f4-9dd4-a2924fc84a9e {
  margin-top: 5px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-483c79c3-40f5-43f4-9dd4-a2924fc84a9e .shogun-heading-component h1 {
  color: rgba(22, 65, 111, 1);
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-df907956-44e8-49c9-b8c7-46464d6c4683 {
  margin-top: 15px;
margin-bottom: 15px;
padding-left: 4%;
padding-right: 4%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 105, 55, 1);
border-style: solid;
border-radius: 5px;
min-height: 0px;
}

@media (min-width: 0px) {
[id="s-df907956-44e8-49c9-b8c7-46464d6c4683"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-df907956-44e8-49c9-b8c7-46464d6c4683"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-df907956-44e8-49c9-b8c7-46464d6c4683"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-df907956-44e8-49c9-b8c7-46464d6c4683"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-df907956-44e8-49c9-b8c7-46464d6c4683"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-df907956-44e8-49c9-b8c7-46464d6c4683"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-df907956-44e8-49c9-b8c7-46464d6c4683"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 5.0px);
}

}








#s-cc99a55b-af30-411b-81dc-ffbb4ae3ae80 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cc99a55b-af30-411b-81dc-ffbb4ae3ae80.shg-box.shg-c {
  justify-content: center;
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  min-height: 50px;
max-width: 50px;
aspect-ratio: 1/1;
text-align: center;
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  margin: 0 !important;
  overflow: visible;
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
  /* Add background color handling */
  
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 50px;
    max-height: 50px;
  }




.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image {
  box-sizing: border-box;
}



.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
  min-height: 50px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
      position: relative;
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

@media (min-width: 1200px){#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  margin: 0 !important;
  overflow: visible;
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
  /* Add background color handling */
  
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 50px;
    max-height: 50px;
  }




.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image {
  box-sizing: border-box;
}



.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
  min-height: 50px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
      position: relative;
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  margin: 0 !important;
  overflow: visible;
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
  /* Add background color handling */
  
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 50px;
    max-height: 50px;
  }




.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image {
  box-sizing: border-box;
}



.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
  min-height: 50px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
      position: relative;
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  margin: 0 !important;
  overflow: visible;
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
  /* Add background color handling */
  
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 50px;
    max-height: 50px;
  }




.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image {
  box-sizing: border-box;
}



.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
  min-height: 50px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
      position: relative;
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

}@media (max-width: 767px){#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  margin: 0 !important;
  overflow: visible;
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
  /* Add background color handling */
  
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 50px;
    max-height: 50px;
  }




.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image {
  box-sizing: border-box;
}



.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
  min-height: 50px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
      position: relative;
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

}
#s-f1a560ae-1718-44cf-9e35-394436bf1cca {
  min-height: 50px;
}








#s-f1a560ae-1718-44cf-9e35-394436bf1cca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f1a560ae-1718-44cf-9e35-394436bf1cca.shg-box.shg-c {
  justify-content: center;
}

#s-cc67a61b-0fe4-45e3-b8e1-415d1949561f {
  padding-top: 0px;
padding-bottom: 0px;
min-height: 50px;
}








#s-cc67a61b-0fe4-45e3-b8e1-415d1949561f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cc67a61b-0fe4-45e3-b8e1-415d1949561f.shg-box.shg-c {
  justify-content: center;
}

#s-2608ba52-4677-48c5-af89-fe3ce727d43d {
  margin-top: 5px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-2608ba52-4677-48c5-af89-fe3ce727d43d .shogun-heading-component h1 {
  color: rgba(22, 65, 111, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-aac68f58-5e66-422a-81b2-bb5d80938f81 {
  margin-top: 5px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-aac68f58-5e66-422a-81b2-bb5d80938f81 .shogun-heading-component h1 {
  color: rgba(22, 65, 111, 1);
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-3d317139-1007-4620-8a60-31b6a728a843 {
  margin-top: 15px;
margin-bottom: 15px;
padding-left: 4%;
padding-right: 4%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 105, 55, 1);
border-style: solid;
border-radius: 5px;
min-height: 0px;
}

@media (min-width: 0px) {
[id="s-3d317139-1007-4620-8a60-31b6a728a843"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-3d317139-1007-4620-8a60-31b6a728a843"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-3d317139-1007-4620-8a60-31b6a728a843"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-3d317139-1007-4620-8a60-31b6a728a843"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-3d317139-1007-4620-8a60-31b6a728a843"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-3d317139-1007-4620-8a60-31b6a728a843"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-3d317139-1007-4620-8a60-31b6a728a843"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 5.0px);
}

}








#s-1eeb4deb-f999-4f65-ace2-8f200fc28f4b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1eeb4deb-f999-4f65-ace2-8f200fc28f4b {
  cursor: pointer;
}#s-1eeb4deb-f999-4f65-ace2-8f200fc28f4b.shg-box.shg-c {
  justify-content: center;
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  min-height: 50px;
max-width: 50px;
aspect-ratio: 1/1;
text-align: center;
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  margin: 0 !important;
  overflow: visible;
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
  /* Add background color handling */
  
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 50px;
    max-height: 50px;
  }




.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image {
  box-sizing: border-box;
}



.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
  min-height: 50px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
      position: relative;
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

@media (min-width: 1200px){#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  margin: 0 !important;
  overflow: visible;
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
  /* Add background color handling */
  
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 50px;
    max-height: 50px;
  }




.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image {
  box-sizing: border-box;
}



.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
  min-height: 50px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
      position: relative;
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  margin: 0 !important;
  overflow: visible;
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
  /* Add background color handling */
  
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 50px;
    max-height: 50px;
  }




.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image {
  box-sizing: border-box;
}



.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
  min-height: 50px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
      position: relative;
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  margin: 0 !important;
  overflow: visible;
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
  /* Add background color handling */
  
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 50px;
    max-height: 50px;
  }




.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image {
  box-sizing: border-box;
}



.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
  min-height: 50px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
      position: relative;
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

}@media (max-width: 767px){#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  margin: 0 !important;
  overflow: visible;
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
  /* Add background color handling */
  
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 50px;
    max-height: 50px;
  }




.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image {
  box-sizing: border-box;
}



.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
  min-height: 50px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
      position: relative;
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

}
#s-c603b164-7a26-4814-a175-9bfc1d86b6d4 {
  min-height: 50px;
}








#s-c603b164-7a26-4814-a175-9bfc1d86b6d4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c603b164-7a26-4814-a175-9bfc1d86b6d4.shg-box.shg-c {
  justify-content: center;
}

#s-85cb1a2b-04b3-48fc-9fe7-01af6c75e262 {
  padding-top: 0px;
padding-bottom: 0px;
min-height: 50px;
}








#s-85cb1a2b-04b3-48fc-9fe7-01af6c75e262 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-85cb1a2b-04b3-48fc-9fe7-01af6c75e262 {
  cursor: pointer;
}#s-85cb1a2b-04b3-48fc-9fe7-01af6c75e262.shg-box.shg-c {
  justify-content: center;
}

#s-dceb1fc4-1c34-46a2-8f8c-b965f8030c54 {
  margin-top: 5px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-dceb1fc4-1c34-46a2-8f8c-b965f8030c54 .shogun-heading-component h1 {
  color: rgba(22, 65, 111, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-d1c6d609-ae17-4b62-b9bb-c7fb660936da {
  margin-top: 5px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-d1c6d609-ae17-4b62-b9bb-c7fb660936da .shogun-heading-component h1 {
  color: rgba(22, 65, 111, 1);
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-db9d8eee-02a4-45d8-8aca-e2d554f5a3f7 {
  margin-top: 15px;
margin-bottom: 15px;
padding-left: 4%;
padding-right: 4%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 105, 55, 1);
border-style: solid;
border-radius: 5px;
}

@media (min-width: 0px) {
[id="s-db9d8eee-02a4-45d8-8aca-e2d554f5a3f7"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-db9d8eee-02a4-45d8-8aca-e2d554f5a3f7"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-db9d8eee-02a4-45d8-8aca-e2d554f5a3f7"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-db9d8eee-02a4-45d8-8aca-e2d554f5a3f7"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-db9d8eee-02a4-45d8-8aca-e2d554f5a3f7"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-db9d8eee-02a4-45d8-8aca-e2d554f5a3f7"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-db9d8eee-02a4-45d8-8aca-e2d554f5a3f7"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 5.0px);
}

}

#s-fe62e230-0d48-48fb-b885-6d01d42169a2 {
  min-height: 50px;
max-width: 50px;
}








#s-fe62e230-0d48-48fb-b885-6d01d42169a2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fe62e230-0d48-48fb-b885-6d01d42169a2.shg-box.shg-c {
  justify-content: center;
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  min-height: 50px;
max-width: 50px;
aspect-ratio: 1/1;
text-align: center;
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  margin: 0 !important;
  overflow: visible;
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
  /* Add background color handling */
  
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 50px;
    max-height: 50px;
  }




.s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shogun-image-content {
  
    justify-content: center;
  
}

.s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image {
  box-sizing: border-box;
}



.s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
  min-height: 50px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
      position: relative;
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

@media (min-width: 1200px){#s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  margin: 0 !important;
  overflow: visible;
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
  /* Add background color handling */
  
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 50px;
    max-height: 50px;
  }




.s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shogun-image-content {
  
    justify-content: center;
  
}

.s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image {
  box-sizing: border-box;
}



.s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
  min-height: 50px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
      position: relative;
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  margin: 0 !important;
  overflow: visible;
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
  /* Add background color handling */
  
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 50px;
    max-height: 50px;
  }




.s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shogun-image-content {
  
    justify-content: center;
  
}

.s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image {
  box-sizing: border-box;
}



.s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
  min-height: 50px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
      position: relative;
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  margin: 0 !important;
  overflow: visible;
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
  /* Add background color handling */
  
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 50px;
    max-height: 50px;
  }




.s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shogun-image-content {
  
    justify-content: center;
  
}

.s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image {
  box-sizing: border-box;
}



.s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
  min-height: 50px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
      position: relative;
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

}@media (max-width: 767px){#s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  margin: 0 !important;
  overflow: visible;
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
  /* Add background color handling */
  
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
    height: 100%;
    width: 100%;
    min-height: 50px;
    max-height: 50px;
  }




.s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shogun-image-content {
  
    justify-content: center;
  
}

.s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image {
  box-sizing: border-box;
}



.s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
  min-height: 50px;
}


  @supports not (aspect-ratio: 1/1) {
    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
      position: relative;
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

}
#s-dafa03ee-09be-4d44-bd94-ea715415ffc7 {
  min-height: 50px;
}








#s-dafa03ee-09be-4d44-bd94-ea715415ffc7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-dafa03ee-09be-4d44-bd94-ea715415ffc7.shg-box.shg-c {
  justify-content: center;
}

#s-5875686a-81b9-4441-a58e-a0d2c09e669c {
  padding-top: 0px;
padding-bottom: 0px;
min-height: 50px;
}








#s-5875686a-81b9-4441-a58e-a0d2c09e669c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5875686a-81b9-4441-a58e-a0d2c09e669c.shg-box.shg-c {
  justify-content: center;
}

#s-1440690d-9496-4f68-bd42-cd32d6a05dde {
  margin-top: 5px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-1440690d-9496-4f68-bd42-cd32d6a05dde .shogun-heading-component h1 {
  color: rgba(22, 65, 111, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-a5c6bbcc-d098-4b57-9d04-5a392dea68b5 {
  margin-top: 5px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-a5c6bbcc-d098-4b57-9d04-5a392dea68b5 .shogun-heading-component h1 {
  color: rgba(22, 65, 111, 1);
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-8a8c206d-f327-4e29-8e1e-7aee9e0f4ce8 {
  margin-top: 30px;
margin-bottom: 0px;
min-height: 50px;
background-color: rgba(244, 244, 244, 1);
}
@media (max-width: 767px){#s-8a8c206d-f327-4e29-8e1e-7aee9e0f4ce8 {
  display: none;
}
#s-8a8c206d-f327-4e29-8e1e-7aee9e0f4ce8, #wrap-s-8a8c206d-f327-4e29-8e1e-7aee9e0f4ce8, #wrap-content-s-8a8c206d-f327-4e29-8e1e-7aee9e0f4ce8 { display: none !important; }}







#s-8a8c206d-f327-4e29-8e1e-7aee9e0f4ce8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8a8c206d-f327-4e29-8e1e-7aee9e0f4ce8.shg-box.shg-c {
  justify-content: center;
}

#s-51f34535-f5d3-4b19-92e6-eee0f5e81867 {
  padding-top: 0px;
padding-bottom: 0px;
padding-right: 2%;
min-height: 150px;
}

@media (min-width: 0px) {
[id="s-51f34535-f5d3-4b19-92e6-eee0f5e81867"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-51f34535-f5d3-4b19-92e6-eee0f5e81867"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-51f34535-f5d3-4b19-92e6-eee0f5e81867"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-51f34535-f5d3-4b19-92e6-eee0f5e81867"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-51f34535-f5d3-4b19-92e6-eee0f5e81867"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-51f34535-f5d3-4b19-92e6-eee0f5e81867"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-51f34535-f5d3-4b19-92e6-eee0f5e81867"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-51f34535-f5d3-4b19-92e6-eee0f5e81867"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-51f34535-f5d3-4b19-92e6-eee0f5e81867"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-51f34535-f5d3-4b19-92e6-eee0f5e81867"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  max-width: 730px;
aspect-ratio: 730/625;
text-align: left;
}
#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670:hover {opacity: 1 !important;}
#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  margin: 0 !important;
  overflow: visible;
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
  /* Add background color handling */
  
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shg-image-content-wrapper {
      aspect-ratio: 730/625;
      min-width: 100%;
      height: auto;
    }

    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shogun-image-link {
      aspect-ratio: 730/625;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 730px;
  }




.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image {
  box-sizing: border-box;
}



.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
      --shg-aspect-ratio: calc(730/625); 
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
      position: relative;
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 730px;
    }
  }

@media (min-width: 1200px){#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  margin: 0 !important;
  overflow: visible;
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
  /* Add background color handling */
  
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shg-image-content-wrapper {
      aspect-ratio: 730/625;
      min-width: 100%;
      height: auto;
    }

    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shogun-image-link {
      aspect-ratio: 730/625;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 730px;
  }




.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image {
  box-sizing: border-box;
}



.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
      --shg-aspect-ratio: calc(730/625); 
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
      position: relative;
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 730px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  margin: 0 !important;
  overflow: visible;
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
  /* Add background color handling */
  
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shg-image-content-wrapper {
      aspect-ratio: 730/625;
      min-width: 100%;
      height: auto;
    }

    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shogun-image-link {
      aspect-ratio: 730/625;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 730px;
  }




.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image {
  box-sizing: border-box;
}



.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
      --shg-aspect-ratio: calc(730/625); 
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
      position: relative;
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 730px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  margin: 0 !important;
  overflow: visible;
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
  /* Add background color handling */
  
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shg-image-content-wrapper {
      aspect-ratio: 730/625;
      min-width: 100%;
      height: auto;
    }

    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shogun-image-link {
      aspect-ratio: 730/625;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 730px;
  }




.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image {
  box-sizing: border-box;
}



.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
      --shg-aspect-ratio: calc(730/625); 
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
      position: relative;
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 730px;
    }
  }

}@media (max-width: 767px){#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  margin: 0 !important;
  overflow: visible;
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
  /* Add background color handling */
  
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shg-image-content-wrapper {
      aspect-ratio: 730/625;
      min-width: 100%;
      height: auto;
    }

    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shogun-image-link {
      aspect-ratio: 730/625;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 730px;
  }




.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image {
  box-sizing: border-box;
}



.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
      --shg-aspect-ratio: calc(730/625); 
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
      position: relative;
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 730px;
    }
  }

}
#s-439cf13e-dc98-4fc0-ad56-ad4fa4fac585 {
  margin-top: 20px;
margin-bottom: 20px;
padding-left: 1%;
}

@media (min-width: 0px) {
[id="s-439cf13e-dc98-4fc0-ad56-ad4fa4fac585"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-439cf13e-dc98-4fc0-ad56-ad4fa4fac585"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-439cf13e-dc98-4fc0-ad56-ad4fa4fac585"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-439cf13e-dc98-4fc0-ad56-ad4fa4fac585"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-5a357331-ae11-4a4d-a6c2-06a7517372bd {
  margin-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-5a357331-ae11-4a4d-a6c2-06a7517372bd {
  background-image: url();
}








#s-5a357331-ae11-4a4d-a6c2-06a7517372bd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5a357331-ae11-4a4d-a6c2-06a7517372bd {
  cursor: pointer;
}#s-5a357331-ae11-4a4d-a6c2-06a7517372bd.shg-box.shg-c {
  justify-content: center;
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}
#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0:hover {opacity: 1 !important;}
#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  margin: 0 !important;
  overflow: visible;
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 0px;
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 img.shogun-image {
  /* Add background color handling */
  
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shogun-image {
  box-sizing: border-box;
}



.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 img.shogun-image {
  
}


@media (min-width: 1200px){#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  margin: 0 !important;
  overflow: visible;
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 img.shogun-image {
  /* Add background color handling */
  
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shogun-image {
  box-sizing: border-box;
}



.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  margin: 0 !important;
  overflow: visible;
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 img.shogun-image {
  /* Add background color handling */
  
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shogun-image {
  box-sizing: border-box;
}



.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  margin: 0 !important;
  overflow: visible;
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 img.shogun-image {
  /* Add background color handling */
  
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shogun-image {
  box-sizing: border-box;
}



.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 img.shogun-image {
  
}


}@media (max-width: 767px){#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  margin: 0 !important;
  overflow: visible;
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 img.shogun-image {
  /* Add background color handling */
  
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shogun-image {
  box-sizing: border-box;
}



.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 img.shogun-image {
  
}


}
#s-200d9860-6623-4e0b-9a70-ec5e490dd0dd {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-200d9860-6623-4e0b-9a70-ec5e490dd0dd .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-10a51389-6b1d-48eb-afde-a86f23e40b81 {
  margin-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-10a51389-6b1d-48eb-afde-a86f23e40b81 {
  background-image: url();
}








#s-10a51389-6b1d-48eb-afde-a86f23e40b81 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-10a51389-6b1d-48eb-afde-a86f23e40b81 {
  cursor: pointer;
}#s-10a51389-6b1d-48eb-afde-a86f23e40b81.shg-box.shg-c {
  justify-content: center;
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  margin: 0 !important;
  overflow: visible;
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 0px;
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 img.shogun-image {
  /* Add background color handling */
  
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shogun-image {
  box-sizing: border-box;
}



.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 img.shogun-image {
  
}


@media (min-width: 1200px){#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  margin: 0 !important;
  overflow: visible;
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 img.shogun-image {
  /* Add background color handling */
  
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shogun-image {
  box-sizing: border-box;
}



.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  margin: 0 !important;
  overflow: visible;
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 img.shogun-image {
  /* Add background color handling */
  
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shogun-image {
  box-sizing: border-box;
}



.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  margin: 0 !important;
  overflow: visible;
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 img.shogun-image {
  /* Add background color handling */
  
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shogun-image {
  box-sizing: border-box;
}



.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 img.shogun-image {
  
}


}@media (max-width: 767px){#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  margin: 0 !important;
  overflow: visible;
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 img.shogun-image {
  /* Add background color handling */
  
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shogun-image {
  box-sizing: border-box;
}



.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 img.shogun-image {
  
}


}
#s-cee119cb-4d3c-4eac-9ee8-812607012cbe {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-cee119cb-4d3c-4eac-9ee8-812607012cbe .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-620325fe-4e11-4272-be9b-21bed747a72f {
  margin-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-620325fe-4e11-4272-be9b-21bed747a72f {
  background-image: url();
}








#s-620325fe-4e11-4272-be9b-21bed747a72f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-620325fe-4e11-4272-be9b-21bed747a72f {
  cursor: pointer;
}#s-620325fe-4e11-4272-be9b-21bed747a72f.shg-box.shg-c {
  justify-content: center;
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  margin: 0 !important;
  overflow: visible;
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 0px;
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac img.shogun-image {
  /* Add background color handling */
  
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac .shogun-image-content {
  
    justify-content: center;
  
}

.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shogun-image {
  box-sizing: border-box;
}



.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac img.shogun-image {
  
}


@media (min-width: 1200px){#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  margin: 0 !important;
  overflow: visible;
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac img.shogun-image {
  /* Add background color handling */
  
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac .shogun-image-content {
  
    justify-content: center;
  
}

.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shogun-image {
  box-sizing: border-box;
}



.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  margin: 0 !important;
  overflow: visible;
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac img.shogun-image {
  /* Add background color handling */
  
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac .shogun-image-content {
  
    justify-content: center;
  
}

.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shogun-image {
  box-sizing: border-box;
}



.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  margin: 0 !important;
  overflow: visible;
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac img.shogun-image {
  /* Add background color handling */
  
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac .shogun-image-content {
  
    justify-content: center;
  
}

.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shogun-image {
  box-sizing: border-box;
}



.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac img.shogun-image {
  
}


}@media (max-width: 767px){#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  margin: 0 !important;
  overflow: visible;
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac img.shogun-image {
  /* Add background color handling */
  
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac .shogun-image-content {
  
    justify-content: center;
  
}

.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shogun-image {
  box-sizing: border-box;
}



.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac img.shogun-image {
  
}


}
#s-df3b9141-8b50-4b63-b009-91367beddff8 {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-df3b9141-8b50-4b63-b009-91367beddff8 .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-0e84eb51-b189-4e6d-a4da-749cebac3d36 {
  margin-top: 20px;
margin-bottom: 20px;
padding-right: 2%;
}

@media (min-width: 0px) {
[id="s-0e84eb51-b189-4e6d-a4da-749cebac3d36"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-0e84eb51-b189-4e6d-a4da-749cebac3d36"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-0e84eb51-b189-4e6d-a4da-749cebac3d36"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-0e84eb51-b189-4e6d-a4da-749cebac3d36"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-6a8360be-27ac-4ce5-84fe-2351886028a7 {
  margin-right: 0%;
padding-left: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-6a8360be-27ac-4ce5-84fe-2351886028a7 {
  background-image: url();
}








#s-6a8360be-27ac-4ce5-84fe-2351886028a7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6a8360be-27ac-4ce5-84fe-2351886028a7 {
  cursor: pointer;
}#s-6a8360be-27ac-4ce5-84fe-2351886028a7.shg-box.shg-c {
  justify-content: center;
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  margin: 0 !important;
  overflow: visible;
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 0px;
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3 img.shogun-image {
  /* Add background color handling */
  
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-1238919b-7717-47ff-a2b0-43594ac6b1d3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shogun-image {
  box-sizing: border-box;
}



.s-1238919b-7717-47ff-a2b0-43594ac6b1d3 img.shogun-image {
  
}


@media (min-width: 1200px){#s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  margin: 0 !important;
  overflow: visible;
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3 img.shogun-image {
  /* Add background color handling */
  
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-1238919b-7717-47ff-a2b0-43594ac6b1d3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shogun-image {
  box-sizing: border-box;
}



.s-1238919b-7717-47ff-a2b0-43594ac6b1d3 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  margin: 0 !important;
  overflow: visible;
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3 img.shogun-image {
  /* Add background color handling */
  
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-1238919b-7717-47ff-a2b0-43594ac6b1d3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shogun-image {
  box-sizing: border-box;
}



.s-1238919b-7717-47ff-a2b0-43594ac6b1d3 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  margin: 0 !important;
  overflow: visible;
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3 img.shogun-image {
  /* Add background color handling */
  
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-1238919b-7717-47ff-a2b0-43594ac6b1d3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shogun-image {
  box-sizing: border-box;
}



.s-1238919b-7717-47ff-a2b0-43594ac6b1d3 img.shogun-image {
  
}


}@media (max-width: 767px){#s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  margin: 0 !important;
  overflow: visible;
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3 img.shogun-image {
  /* Add background color handling */
  
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-1238919b-7717-47ff-a2b0-43594ac6b1d3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shogun-image {
  box-sizing: border-box;
}



.s-1238919b-7717-47ff-a2b0-43594ac6b1d3 img.shogun-image {
  
}


}
#s-bd38e8ee-1bb7-4873-a603-0ef52682f7e5 {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-bd38e8ee-1bb7-4873-a603-0ef52682f7e5 .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-681a6345-d627-4613-b149-fb67a3aee033 {
  margin-right: 0%;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-681a6345-d627-4613-b149-fb67a3aee033 {
  background-image: url();
}








#s-681a6345-d627-4613-b149-fb67a3aee033 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-681a6345-d627-4613-b149-fb67a3aee033 {
  cursor: pointer;
}#s-681a6345-d627-4613-b149-fb67a3aee033.shg-box.shg-c {
  justify-content: center;
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  margin: 0 !important;
  overflow: visible;
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 0px;
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e img.shogun-image {
  /* Add background color handling */
  
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e .shogun-image-content {
  
    justify-content: center;
  
}

.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shogun-image {
  box-sizing: border-box;
}



.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e img.shogun-image {
  
}


@media (min-width: 1200px){#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  margin: 0 !important;
  overflow: visible;
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e img.shogun-image {
  /* Add background color handling */
  
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e .shogun-image-content {
  
    justify-content: center;
  
}

.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shogun-image {
  box-sizing: border-box;
}



.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  margin: 0 !important;
  overflow: visible;
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e img.shogun-image {
  /* Add background color handling */
  
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e .shogun-image-content {
  
    justify-content: center;
  
}

.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shogun-image {
  box-sizing: border-box;
}



.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  margin: 0 !important;
  overflow: visible;
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e img.shogun-image {
  /* Add background color handling */
  
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e .shogun-image-content {
  
    justify-content: center;
  
}

.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shogun-image {
  box-sizing: border-box;
}



.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e img.shogun-image {
  
}


}@media (max-width: 767px){#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  margin: 0 !important;
  overflow: visible;
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e img.shogun-image {
  /* Add background color handling */
  
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e .shogun-image-content {
  
    justify-content: center;
  
}

.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shogun-image {
  box-sizing: border-box;
}



.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e img.shogun-image {
  
}


}
#s-34db49db-e03e-4f39-b434-b4788ae3babc {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-34db49db-e03e-4f39-b434-b4788ae3babc .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-fc4a02fd-e73c-4919-aa11-493e0308e789 {
  margin-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-fc4a02fd-e73c-4919-aa11-493e0308e789 {
  background-image: url();
}








#s-fc4a02fd-e73c-4919-aa11-493e0308e789 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fc4a02fd-e73c-4919-aa11-493e0308e789 {
  cursor: pointer;
}#s-fc4a02fd-e73c-4919-aa11-493e0308e789.shg-box.shg-c {
  justify-content: center;
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  margin: 0 !important;
  overflow: visible;
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 0px;
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e img.shogun-image {
  /* Add background color handling */
  
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-da99b394-f41c-4903-b32b-4ee1584e5e8e .shogun-image-content {
  
    justify-content: center;
  
}

.s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shogun-image {
  box-sizing: border-box;
}



.s-da99b394-f41c-4903-b32b-4ee1584e5e8e img.shogun-image {
  
}


@media (min-width: 1200px){#s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  margin: 0 !important;
  overflow: visible;
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e img.shogun-image {
  /* Add background color handling */
  
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-da99b394-f41c-4903-b32b-4ee1584e5e8e .shogun-image-content {
  
    justify-content: center;
  
}

.s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shogun-image {
  box-sizing: border-box;
}



.s-da99b394-f41c-4903-b32b-4ee1584e5e8e img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  margin: 0 !important;
  overflow: visible;
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e img.shogun-image {
  /* Add background color handling */
  
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-da99b394-f41c-4903-b32b-4ee1584e5e8e .shogun-image-content {
  
    justify-content: center;
  
}

.s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shogun-image {
  box-sizing: border-box;
}



.s-da99b394-f41c-4903-b32b-4ee1584e5e8e img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  margin: 0 !important;
  overflow: visible;
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e img.shogun-image {
  /* Add background color handling */
  
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-da99b394-f41c-4903-b32b-4ee1584e5e8e .shogun-image-content {
  
    justify-content: center;
  
}

.s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shogun-image {
  box-sizing: border-box;
}



.s-da99b394-f41c-4903-b32b-4ee1584e5e8e img.shogun-image {
  
}


}@media (max-width: 767px){#s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  margin: 0 !important;
  overflow: visible;
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e img.shogun-image {
  /* Add background color handling */
  
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-da99b394-f41c-4903-b32b-4ee1584e5e8e .shogun-image-content {
  
    justify-content: center;
  
}

.s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shogun-image {
  box-sizing: border-box;
}



.s-da99b394-f41c-4903-b32b-4ee1584e5e8e img.shogun-image {
  
}


}
#s-17e0d066-6f2a-48ca-9112-f19c574b9eb3 {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-17e0d066-6f2a-48ca-9112-f19c574b9eb3 .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-d60ee82e-2347-4ebc-bd7d-43295f546273 {
  margin-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-d60ee82e-2347-4ebc-bd7d-43295f546273 {
  background-image: url();
}








#s-d60ee82e-2347-4ebc-bd7d-43295f546273 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d60ee82e-2347-4ebc-bd7d-43295f546273 {
  cursor: pointer;
}#s-d60ee82e-2347-4ebc-bd7d-43295f546273.shg-box.shg-c {
  justify-content: center;
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
aspect-ratio: 1/1;
text-align: center;
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  margin: 0 !important;
  overflow: visible;
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 0px;
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
  /* Add background color handling */
  
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }




.s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shogun-image-content {
  
    justify-content: center;
  
}

.s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image {
  box-sizing: border-box;
}



.s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
      position: relative;
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

@media (min-width: 1200px){#s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  margin: 0 !important;
  overflow: visible;
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
  /* Add background color handling */
  
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }




.s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shogun-image-content {
  
    justify-content: center;
  
}

.s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image {
  box-sizing: border-box;
}



.s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
      position: relative;
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  margin: 0 !important;
  overflow: visible;
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
  /* Add background color handling */
  
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }




.s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shogun-image-content {
  
    justify-content: center;
  
}

.s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image {
  box-sizing: border-box;
}



.s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
      position: relative;
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  margin: 0 !important;
  overflow: visible;
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
  /* Add background color handling */
  
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }




.s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shogun-image-content {
  
    justify-content: center;
  
}

.s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image {
  box-sizing: border-box;
}



.s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
      position: relative;
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (max-width: 767px){#s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  margin: 0 !important;
  overflow: visible;
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
  /* Add background color handling */
  
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }




.s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shogun-image-content {
  
    justify-content: center;
  
}

.s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image {
  box-sizing: border-box;
}



.s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
      position: relative;
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}
#s-cd3e8380-c1ed-47b4-90cf-0af89f362d1f {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-cd3e8380-c1ed-47b4-90cf-0af89f362d1f .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f {
  min-height: 50px;
background-color: rgba(244, 244, 244, 1);
}
@media (min-width: 1200px){#s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f {
  display: none;
}
#s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f, #wrap-s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f, #wrap-content-s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f {
  display: none;
}
#s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f, #wrap-s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f, #wrap-content-s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f {
  display: none;
}
#s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f, #wrap-s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f, #wrap-content-s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f { display: none !important; }}







#s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f.shg-box.shg-c {
  justify-content: center;
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  text-align: center;
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image {
    
    
    
    
  }


.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image {
  box-sizing: border-box;
}



.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 img.shogun-image {
  
}


@media (min-width: 1200px){#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image {
    
    
    
    
  }


.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image {
  box-sizing: border-box;
}



.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image {
    
    
    
    
  }


.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image {
  box-sizing: border-box;
}



.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image {
    
    
    
    
  }


.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image {
  box-sizing: border-box;
}



.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 img.shogun-image {
  
}


}@media (max-width: 767px){#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image {
    
    
    
    
  }


.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image {
  box-sizing: border-box;
}



.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 img.shogun-image {
  
}


}
@media (min-width: 0px) {
[id="s-d7ac9229-480f-4f0d-ba44-9e0e9c621d5a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-d7ac9229-480f-4f0d-ba44-9e0e9c621d5a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-d7ac9229-480f-4f0d-ba44-9e0e9c621d5a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-d7ac9229-480f-4f0d-ba44-9e0e9c621d5a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-10fec128-5dfb-40a9-a04f-34708391c748 {
  margin-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-10fec128-5dfb-40a9-a04f-34708391c748 {
  background-image: url();
}








#s-10fec128-5dfb-40a9-a04f-34708391c748 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-10fec128-5dfb-40a9-a04f-34708391c748 {
  cursor: pointer;
}#s-10fec128-5dfb-40a9-a04f-34708391c748.shg-box.shg-c {
  justify-content: center;
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}
#s-b550c437-cc8d-418d-9559-e3c9600d92b2:hover {opacity: 1 !important;}
#s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  margin: 0 !important;
  overflow: visible;
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 0px;
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2 img.shogun-image {
  /* Add background color handling */
  
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-b550c437-cc8d-418d-9559-e3c9600d92b2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b550c437-cc8d-418d-9559-e3c9600d92b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b550c437-cc8d-418d-9559-e3c9600d92b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2.shogun-image {
  box-sizing: border-box;
}



.s-b550c437-cc8d-418d-9559-e3c9600d92b2 img.shogun-image {
  
}


@media (min-width: 1200px){#s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  margin: 0 !important;
  overflow: visible;
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2 img.shogun-image {
  /* Add background color handling */
  
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-b550c437-cc8d-418d-9559-e3c9600d92b2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b550c437-cc8d-418d-9559-e3c9600d92b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b550c437-cc8d-418d-9559-e3c9600d92b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2.shogun-image {
  box-sizing: border-box;
}



.s-b550c437-cc8d-418d-9559-e3c9600d92b2 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  margin: 0 !important;
  overflow: visible;
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2 img.shogun-image {
  /* Add background color handling */
  
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-b550c437-cc8d-418d-9559-e3c9600d92b2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b550c437-cc8d-418d-9559-e3c9600d92b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b550c437-cc8d-418d-9559-e3c9600d92b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2.shogun-image {
  box-sizing: border-box;
}



.s-b550c437-cc8d-418d-9559-e3c9600d92b2 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  margin: 0 !important;
  overflow: visible;
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2 img.shogun-image {
  /* Add background color handling */
  
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-b550c437-cc8d-418d-9559-e3c9600d92b2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b550c437-cc8d-418d-9559-e3c9600d92b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b550c437-cc8d-418d-9559-e3c9600d92b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2.shogun-image {
  box-sizing: border-box;
}



.s-b550c437-cc8d-418d-9559-e3c9600d92b2 img.shogun-image {
  
}


}@media (max-width: 767px){#s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  margin: 0 !important;
  overflow: visible;
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2 img.shogun-image {
  /* Add background color handling */
  
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-b550c437-cc8d-418d-9559-e3c9600d92b2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b550c437-cc8d-418d-9559-e3c9600d92b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b550c437-cc8d-418d-9559-e3c9600d92b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2.shogun-image {
  box-sizing: border-box;
}



.s-b550c437-cc8d-418d-9559-e3c9600d92b2 img.shogun-image {
  
}


}
#s-eeb70489-37bc-46bc-958c-fece5e81e4a8 {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-eeb70489-37bc-46bc-958c-fece5e81e4a8 .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-55b2c5ef-d1a0-4003-8023-bf91766dd62c {
  margin-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-55b2c5ef-d1a0-4003-8023-bf91766dd62c {
  background-image: url();
}








#s-55b2c5ef-d1a0-4003-8023-bf91766dd62c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-55b2c5ef-d1a0-4003-8023-bf91766dd62c {
  cursor: pointer;
}#s-55b2c5ef-d1a0-4003-8023-bf91766dd62c.shg-box.shg-c {
  justify-content: center;
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  margin: 0 !important;
  overflow: visible;
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 0px;
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 img.shogun-image {
  /* Add background color handling */
  
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shogun-image {
  box-sizing: border-box;
}



.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 img.shogun-image {
  
}


@media (min-width: 1200px){#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  margin: 0 !important;
  overflow: visible;
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 img.shogun-image {
  /* Add background color handling */
  
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shogun-image {
  box-sizing: border-box;
}



.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  margin: 0 !important;
  overflow: visible;
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 img.shogun-image {
  /* Add background color handling */
  
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shogun-image {
  box-sizing: border-box;
}



.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  margin: 0 !important;
  overflow: visible;
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 img.shogun-image {
  /* Add background color handling */
  
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shogun-image {
  box-sizing: border-box;
}



.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 img.shogun-image {
  
}


}@media (max-width: 767px){#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  margin: 0 !important;
  overflow: visible;
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 img.shogun-image {
  /* Add background color handling */
  
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shogun-image {
  box-sizing: border-box;
}



.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 img.shogun-image {
  
}


}
#s-cf946a7c-3cbb-4fec-ba9a-7f1424affe10 {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-cf946a7c-3cbb-4fec-ba9a-7f1424affe10 .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



@media (min-width: 0px) {
[id="s-657bdeaf-08d4-4253-8faa-1c827d57cb4c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-657bdeaf-08d4-4253-8faa-1c827d57cb4c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-657bdeaf-08d4-4253-8faa-1c827d57cb4c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-657bdeaf-08d4-4253-8faa-1c827d57cb4c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-cd4fdbbd-8a1e-423e-bd56-bf9da2f9332e {
  margin-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-cd4fdbbd-8a1e-423e-bd56-bf9da2f9332e {
  background-image: url();
}








#s-cd4fdbbd-8a1e-423e-bd56-bf9da2f9332e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cd4fdbbd-8a1e-423e-bd56-bf9da2f9332e {
  cursor: pointer;
}#s-cd4fdbbd-8a1e-423e-bd56-bf9da2f9332e.shg-box.shg-c {
  justify-content: center;
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  margin: 0 !important;
  overflow: visible;
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 0px;
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8 img.shogun-image {
  /* Add background color handling */
  
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-c589c892-c3eb-4925-a611-d5186e543fa8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c589c892-c3eb-4925-a611-d5186e543fa8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c589c892-c3eb-4925-a611-d5186e543fa8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8.shogun-image {
  box-sizing: border-box;
}



.s-c589c892-c3eb-4925-a611-d5186e543fa8 img.shogun-image {
  
}


@media (min-width: 1200px){#s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  margin: 0 !important;
  overflow: visible;
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8 img.shogun-image {
  /* Add background color handling */
  
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-c589c892-c3eb-4925-a611-d5186e543fa8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c589c892-c3eb-4925-a611-d5186e543fa8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c589c892-c3eb-4925-a611-d5186e543fa8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8.shogun-image {
  box-sizing: border-box;
}



.s-c589c892-c3eb-4925-a611-d5186e543fa8 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  margin: 0 !important;
  overflow: visible;
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8 img.shogun-image {
  /* Add background color handling */
  
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-c589c892-c3eb-4925-a611-d5186e543fa8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c589c892-c3eb-4925-a611-d5186e543fa8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c589c892-c3eb-4925-a611-d5186e543fa8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8.shogun-image {
  box-sizing: border-box;
}



.s-c589c892-c3eb-4925-a611-d5186e543fa8 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  margin: 0 !important;
  overflow: visible;
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8 img.shogun-image {
  /* Add background color handling */
  
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-c589c892-c3eb-4925-a611-d5186e543fa8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c589c892-c3eb-4925-a611-d5186e543fa8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c589c892-c3eb-4925-a611-d5186e543fa8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8.shogun-image {
  box-sizing: border-box;
}



.s-c589c892-c3eb-4925-a611-d5186e543fa8 img.shogun-image {
  
}


}@media (max-width: 767px){#s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  margin: 0 !important;
  overflow: visible;
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8 img.shogun-image {
  /* Add background color handling */
  
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-c589c892-c3eb-4925-a611-d5186e543fa8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c589c892-c3eb-4925-a611-d5186e543fa8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c589c892-c3eb-4925-a611-d5186e543fa8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8.shogun-image {
  box-sizing: border-box;
}



.s-c589c892-c3eb-4925-a611-d5186e543fa8 img.shogun-image {
  
}


}
#s-0678b637-7ca8-4a58-96cc-2a7a91fe78d6 {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-0678b637-7ca8-4a58-96cc-2a7a91fe78d6 .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-0a3fd302-eb8b-4622-9511-9d773105842d {
  margin-right: 0%;
padding-left: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-0a3fd302-eb8b-4622-9511-9d773105842d {
  background-image: url();
}








#s-0a3fd302-eb8b-4622-9511-9d773105842d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0a3fd302-eb8b-4622-9511-9d773105842d {
  cursor: pointer;
}#s-0a3fd302-eb8b-4622-9511-9d773105842d.shg-box.shg-c {
  justify-content: center;
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  margin: 0 !important;
  overflow: visible;
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 0px;
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a img.shogun-image {
  /* Add background color handling */
  
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a .shogun-image-content {
  
    justify-content: center;
  
}

.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shogun-image {
  box-sizing: border-box;
}



.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a img.shogun-image {
  
}


@media (min-width: 1200px){#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  margin: 0 !important;
  overflow: visible;
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a img.shogun-image {
  /* Add background color handling */
  
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a .shogun-image-content {
  
    justify-content: center;
  
}

.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shogun-image {
  box-sizing: border-box;
}



.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  margin: 0 !important;
  overflow: visible;
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a img.shogun-image {
  /* Add background color handling */
  
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a .shogun-image-content {
  
    justify-content: center;
  
}

.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shogun-image {
  box-sizing: border-box;
}



.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  margin: 0 !important;
  overflow: visible;
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a img.shogun-image {
  /* Add background color handling */
  
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a .shogun-image-content {
  
    justify-content: center;
  
}

.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shogun-image {
  box-sizing: border-box;
}



.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a img.shogun-image {
  
}


}@media (max-width: 767px){#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  margin: 0 !important;
  overflow: visible;
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a img.shogun-image {
  /* Add background color handling */
  
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a .shogun-image-content {
  
    justify-content: center;
  
}

.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shogun-image {
  box-sizing: border-box;
}



.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a img.shogun-image {
  
}


}
#s-9a84f890-5a83-4335-bf60-3d71005704a5 {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-9a84f890-5a83-4335-bf60-3d71005704a5 .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



@media (min-width: 0px) {
[id="s-a5cc87d3-7cc4-4b9a-852a-4b5cf237860e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-a5cc87d3-7cc4-4b9a-852a-4b5cf237860e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-a5cc87d3-7cc4-4b9a-852a-4b5cf237860e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-a5cc87d3-7cc4-4b9a-852a-4b5cf237860e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-891cccaf-d6ca-49de-b906-1444cfab7e34 {
  margin-right: 0%;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-891cccaf-d6ca-49de-b906-1444cfab7e34 {
  background-image: url();
}








#s-891cccaf-d6ca-49de-b906-1444cfab7e34 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-891cccaf-d6ca-49de-b906-1444cfab7e34 {
  cursor: pointer;
}#s-891cccaf-d6ca-49de-b906-1444cfab7e34.shg-box.shg-c {
  justify-content: center;
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  margin: 0 !important;
  overflow: visible;
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 0px;
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e img.shogun-image {
  /* Add background color handling */
  
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e .shogun-image-content {
  
    justify-content: center;
  
}

.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shogun-image {
  box-sizing: border-box;
}



.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e img.shogun-image {
  
}


@media (min-width: 1200px){#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  margin: 0 !important;
  overflow: visible;
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e img.shogun-image {
  /* Add background color handling */
  
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e .shogun-image-content {
  
    justify-content: center;
  
}

.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shogun-image {
  box-sizing: border-box;
}



.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  margin: 0 !important;
  overflow: visible;
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e img.shogun-image {
  /* Add background color handling */
  
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e .shogun-image-content {
  
    justify-content: center;
  
}

.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shogun-image {
  box-sizing: border-box;
}



.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  margin: 0 !important;
  overflow: visible;
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e img.shogun-image {
  /* Add background color handling */
  
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e .shogun-image-content {
  
    justify-content: center;
  
}

.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shogun-image {
  box-sizing: border-box;
}



.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e img.shogun-image {
  
}


}@media (max-width: 767px){#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  margin: 0 !important;
  overflow: visible;
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e img.shogun-image {
  /* Add background color handling */
  
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e .shogun-image-content {
  
    justify-content: center;
  
}

.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shogun-image {
  box-sizing: border-box;
}



.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e img.shogun-image {
  
}


}
#s-655baf5b-5911-40a3-b871-c4023b1cd5c6 {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-655baf5b-5911-40a3-b871-c4023b1cd5c6 .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-118ecedb-9cb7-4605-ba7a-3ec118f6cde3 {
  margin-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-118ecedb-9cb7-4605-ba7a-3ec118f6cde3 {
  background-image: url();
}








#s-118ecedb-9cb7-4605-ba7a-3ec118f6cde3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-118ecedb-9cb7-4605-ba7a-3ec118f6cde3 {
  cursor: pointer;
}#s-118ecedb-9cb7-4605-ba7a-3ec118f6cde3.shg-box.shg-c {
  justify-content: center;
}

#s-600349de-ae37-497b-897e-f879523b7b18 {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}

#s-600349de-ae37-497b-897e-f879523b7b18 {
  margin: 0 !important;
  overflow: visible;
}

#s-600349de-ae37-497b-897e-f879523b7b18-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-600349de-ae37-497b-897e-f879523b7b18 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 0px;
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-600349de-ae37-497b-897e-f879523b7b18 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-600349de-ae37-497b-897e-f879523b7b18 img.shogun-image {
  /* Add background color handling */
  
}

#s-600349de-ae37-497b-897e-f879523b7b18 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-600349de-ae37-497b-897e-f879523b7b18 .shogun-image-content {
  
    justify-content: center;
  
}

.s-600349de-ae37-497b-897e-f879523b7b18.shg-align-container {
  display: flex;
  justify-content: center
}

.s-600349de-ae37-497b-897e-f879523b7b18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-600349de-ae37-497b-897e-f879523b7b18.shogun-image {
  box-sizing: border-box;
}



.s-600349de-ae37-497b-897e-f879523b7b18 img.shogun-image {
  
}


@media (min-width: 1200px){#s-600349de-ae37-497b-897e-f879523b7b18 {
  margin: 0 !important;
  overflow: visible;
}

#s-600349de-ae37-497b-897e-f879523b7b18-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-600349de-ae37-497b-897e-f879523b7b18 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-600349de-ae37-497b-897e-f879523b7b18 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-600349de-ae37-497b-897e-f879523b7b18 img.shogun-image {
  /* Add background color handling */
  
}

#s-600349de-ae37-497b-897e-f879523b7b18 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-600349de-ae37-497b-897e-f879523b7b18 .shogun-image-content {
  
    justify-content: center;
  
}

.s-600349de-ae37-497b-897e-f879523b7b18.shg-align-container {
  display: flex;
  justify-content: center
}

.s-600349de-ae37-497b-897e-f879523b7b18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-600349de-ae37-497b-897e-f879523b7b18.shogun-image {
  box-sizing: border-box;
}



.s-600349de-ae37-497b-897e-f879523b7b18 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-600349de-ae37-497b-897e-f879523b7b18 {
  margin: 0 !important;
  overflow: visible;
}

#s-600349de-ae37-497b-897e-f879523b7b18-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-600349de-ae37-497b-897e-f879523b7b18 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-600349de-ae37-497b-897e-f879523b7b18 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-600349de-ae37-497b-897e-f879523b7b18 img.shogun-image {
  /* Add background color handling */
  
}

#s-600349de-ae37-497b-897e-f879523b7b18 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-600349de-ae37-497b-897e-f879523b7b18 .shogun-image-content {
  
    justify-content: center;
  
}

.s-600349de-ae37-497b-897e-f879523b7b18.shg-align-container {
  display: flex;
  justify-content: center
}

.s-600349de-ae37-497b-897e-f879523b7b18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-600349de-ae37-497b-897e-f879523b7b18.shogun-image {
  box-sizing: border-box;
}



.s-600349de-ae37-497b-897e-f879523b7b18 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-600349de-ae37-497b-897e-f879523b7b18 {
  margin: 0 !important;
  overflow: visible;
}

#s-600349de-ae37-497b-897e-f879523b7b18-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-600349de-ae37-497b-897e-f879523b7b18 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-600349de-ae37-497b-897e-f879523b7b18 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-600349de-ae37-497b-897e-f879523b7b18 img.shogun-image {
  /* Add background color handling */
  
}

#s-600349de-ae37-497b-897e-f879523b7b18 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-600349de-ae37-497b-897e-f879523b7b18 .shogun-image-content {
  
    justify-content: center;
  
}

.s-600349de-ae37-497b-897e-f879523b7b18.shg-align-container {
  display: flex;
  justify-content: center
}

.s-600349de-ae37-497b-897e-f879523b7b18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-600349de-ae37-497b-897e-f879523b7b18.shogun-image {
  box-sizing: border-box;
}



.s-600349de-ae37-497b-897e-f879523b7b18 img.shogun-image {
  
}


}@media (max-width: 767px){#s-600349de-ae37-497b-897e-f879523b7b18 {
  margin: 0 !important;
  overflow: visible;
}

#s-600349de-ae37-497b-897e-f879523b7b18-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-600349de-ae37-497b-897e-f879523b7b18 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-600349de-ae37-497b-897e-f879523b7b18 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-600349de-ae37-497b-897e-f879523b7b18 img.shogun-image {
  /* Add background color handling */
  
}

#s-600349de-ae37-497b-897e-f879523b7b18 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-600349de-ae37-497b-897e-f879523b7b18 .shogun-image-content {
  
    justify-content: center;
  
}

.s-600349de-ae37-497b-897e-f879523b7b18.shg-align-container {
  display: flex;
  justify-content: center
}

.s-600349de-ae37-497b-897e-f879523b7b18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-600349de-ae37-497b-897e-f879523b7b18.shogun-image {
  box-sizing: border-box;
}



.s-600349de-ae37-497b-897e-f879523b7b18 img.shogun-image {
  
}


}
#s-c24fd53c-9435-4643-b3ee-30392d8a50e6 {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-c24fd53c-9435-4643-b3ee-30392d8a50e6 .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-c31148ae-8537-4c9a-bc04-ea603b2f414d {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-c31148ae-8537-4c9a-bc04-ea603b2f414d"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 768px) {
[id="s-c31148ae-8537-4c9a-bc04-ea603b2f414d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-c31148ae-8537-4c9a-bc04-ea603b2f414d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-c31148ae-8537-4c9a-bc04-ea603b2f414d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-60d0519e-8e89-4636-9de5-c702d498884a {
  margin-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-60d0519e-8e89-4636-9de5-c702d498884a {
  background-image: url();
}








#s-60d0519e-8e89-4636-9de5-c702d498884a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-60d0519e-8e89-4636-9de5-c702d498884a {
  cursor: pointer;
}#s-60d0519e-8e89-4636-9de5-c702d498884a.shg-box.shg-c {
  justify-content: center;
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
aspect-ratio: 1/1;
text-align: center;
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  margin: 0 !important;
  overflow: visible;
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 0px;
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
  /* Add background color handling */
  
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }




.s-ddc834ed-0409-4865-beb5-688d2219ab92 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ddc834ed-0409-4865-beb5-688d2219ab92.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image {
  box-sizing: border-box;
}



.s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ddc834ed-0409-4865-beb5-688d2219ab92 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
      position: relative;
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

@media (min-width: 1200px){#s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  margin: 0 !important;
  overflow: visible;
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
  /* Add background color handling */
  
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }




.s-ddc834ed-0409-4865-beb5-688d2219ab92 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ddc834ed-0409-4865-beb5-688d2219ab92.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image {
  box-sizing: border-box;
}



.s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ddc834ed-0409-4865-beb5-688d2219ab92 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
      position: relative;
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  margin: 0 !important;
  overflow: visible;
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
  /* Add background color handling */
  
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }




.s-ddc834ed-0409-4865-beb5-688d2219ab92 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ddc834ed-0409-4865-beb5-688d2219ab92.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image {
  box-sizing: border-box;
}



.s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ddc834ed-0409-4865-beb5-688d2219ab92 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
      position: relative;
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  margin: 0 !important;
  overflow: visible;
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
  /* Add background color handling */
  
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }




.s-ddc834ed-0409-4865-beb5-688d2219ab92 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ddc834ed-0409-4865-beb5-688d2219ab92.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image {
  box-sizing: border-box;
}



.s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ddc834ed-0409-4865-beb5-688d2219ab92 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
      position: relative;
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (max-width: 767px){#s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  margin: 0 !important;
  overflow: visible;
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
  /* Add background color handling */
  
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }




.s-ddc834ed-0409-4865-beb5-688d2219ab92 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ddc834ed-0409-4865-beb5-688d2219ab92.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image {
  box-sizing: border-box;
}



.s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ddc834ed-0409-4865-beb5-688d2219ab92 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
      position: relative;
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}
#s-3fa3302b-d395-47bf-ae26-f31645071d8c {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-3fa3302b-d395-47bf-ae26-f31645071d8c .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-8f45bec4-4dcd-44f0-8ff6-aa58202e31c5 {
  margin-top: 8px;
margin-bottom: 8px;
}
@media (min-width: 768px) and (max-width: 991px){#s-8f45bec4-4dcd-44f0-8ff6-aa58202e31c5 {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-8f45bec4-4dcd-44f0-8ff6-aa58202e31c5 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-8f45bec4-4dcd-44f0-8ff6-aa58202e31c5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8f45bec4-4dcd-44f0-8ff6-aa58202e31c5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-8f45bec4-4dcd-44f0-8ff6-aa58202e31c5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-8f45bec4-4dcd-44f0-8ff6-aa58202e31c5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 0px) {
[id="s-5ea4bcbd-e328-4b65-a9b4-4ff22a20aba6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5ea4bcbd-e328-4b65-a9b4-4ff22a20aba6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5ea4bcbd-e328-4b65-a9b4-4ff22a20aba6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5ea4bcbd-e328-4b65-a9b4-4ff22a20aba6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

.shogun-image-container {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.shogun-image-content-linked,
.shogun-image-content-not-linked {
  pointer-events: none;
}

.shogun-image-content-not-linked > div {
  pointer-events: auto;
}

.shogun-image-content-linked a,
.shogun-image-content-linked button,
.shogun-image-content-linked iframe,
.shogun-image-content-linked .shg-box-linked {
  pointer-events: auto;
}

.shogun-image-content > div {
  width: 100%;
}

.shogun-image-content-top {
  align-items: flex-start;
}

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

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

.shogun-image.hover {
  opacity: 0;
  z-index: 200;
  position: absolute;
  left: 0;
  top: 0;
}

.shogun-image.hover:hover {
  opacity: 1;
}

#s-8002013d-78d4-4121-be08-78432937506b {
  text-align: center;
}

#s-8002013d-78d4-4121-be08-78432937506b {
  overflow: hidden;
  
  
}







  #s-8002013d-78d4-4121-be08-78432937506b img.shogun-image {
    

    
    
    
  }


#s-8002013d-78d4-4121-be08-78432937506b .shogun-image-content {
  
    justify-content: center;
  
}

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

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

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

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

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

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

.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6 {
  
  
  
}

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

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

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

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

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

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

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

.shg-theme-text-content p {
  
  
  
}

@media (min-width: 0px) {
[id="s-835e74ec-7389-4be5-a1a1-a72a0d65dd53"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-835e74ec-7389-4be5-a1a1-a72a0d65dd53"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-835e74ec-7389-4be5-a1a1-a72a0d65dd53"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-835e74ec-7389-4be5-a1a1-a72a0d65dd53"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-143379ce-112d-4419-83e9-8dc88a3c61bd {
  text-align: center;
}

#s-143379ce-112d-4419-83e9-8dc88a3c61bd {
  overflow: hidden;
  
  
}







  #s-143379ce-112d-4419-83e9-8dc88a3c61bd img.shogun-image {
    

    
    
    
  }


#s-143379ce-112d-4419-83e9-8dc88a3c61bd .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 0px) {
[id="s-8287e6d8-e4e8-40f9-8617-b77abd423509"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8287e6d8-e4e8-40f9-8617-b77abd423509"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-8287e6d8-e4e8-40f9-8617-b77abd423509"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-8287e6d8-e4e8-40f9-8617-b77abd423509"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-6c6eff5c-bd7d-4557-99a4-2eb5b73361e4 {
  text-align: center;
}

#s-6c6eff5c-bd7d-4557-99a4-2eb5b73361e4 {
  overflow: hidden;
  
  
}







  #s-6c6eff5c-bd7d-4557-99a4-2eb5b73361e4 img.shogun-image {
    

    
    
    
  }


#s-6c6eff5c-bd7d-4557-99a4-2eb5b73361e4 .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 0px) {
[id="s-3994654a-cf51-4f8b-8af5-4e076cb85372"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3994654a-cf51-4f8b-8af5-4e076cb85372"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3994654a-cf51-4f8b-8af5-4e076cb85372"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3994654a-cf51-4f8b-8af5-4e076cb85372"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-54aab332-fe8f-485b-9166-7404b74c9658 {
  text-align: center;
}

#s-54aab332-fe8f-485b-9166-7404b74c9658 {
  overflow: hidden;
  
  
}







  #s-54aab332-fe8f-485b-9166-7404b74c9658 img.shogun-image {
    

    
    
    
  }


#s-54aab332-fe8f-485b-9166-7404b74c9658 .shogun-image-content {
  
    justify-content: center;
  
}

#s-3ccc45e3-2691-4fa6-b45c-205787f3e195 {
  margin-top: 8px;
margin-bottom: 8px;
}
@media (min-width: 768px) and (max-width: 991px){#s-3ccc45e3-2691-4fa6-b45c-205787f3e195 {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-3ccc45e3-2691-4fa6-b45c-205787f3e195 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-3ccc45e3-2691-4fa6-b45c-205787f3e195"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3ccc45e3-2691-4fa6-b45c-205787f3e195"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-3ccc45e3-2691-4fa6-b45c-205787f3e195"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-3ccc45e3-2691-4fa6-b45c-205787f3e195"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 0px) {
[id="s-89eafc98-60ed-48af-8f93-5fe7f3508cb6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-89eafc98-60ed-48af-8f93-5fe7f3508cb6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-89eafc98-60ed-48af-8f93-5fe7f3508cb6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-89eafc98-60ed-48af-8f93-5fe7f3508cb6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-6dde9edb-a282-489c-82b7-29cbe19e7c05 {
  text-align: center;
}

#s-6dde9edb-a282-489c-82b7-29cbe19e7c05 {
  overflow: hidden;
  
  
}







  #s-6dde9edb-a282-489c-82b7-29cbe19e7c05 img.shogun-image {
    

    
    
    
  }


#s-6dde9edb-a282-489c-82b7-29cbe19e7c05 .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 0px) {
[id="s-40778175-fec2-4071-9dea-0012ca802c37"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-40778175-fec2-4071-9dea-0012ca802c37"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-40778175-fec2-4071-9dea-0012ca802c37"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-40778175-fec2-4071-9dea-0012ca802c37"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-0250587a-58f3-4805-a039-f0fd30184a19 {
  text-align: center;
}

#s-0250587a-58f3-4805-a039-f0fd30184a19 {
  overflow: hidden;
  
  
}







  #s-0250587a-58f3-4805-a039-f0fd30184a19 img.shogun-image {
    

    
    
    
  }


#s-0250587a-58f3-4805-a039-f0fd30184a19 .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 0px) {
[id="s-d774c75b-638d-424e-b425-4be875b1abf0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d774c75b-638d-424e-b425-4be875b1abf0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d774c75b-638d-424e-b425-4be875b1abf0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d774c75b-638d-424e-b425-4be875b1abf0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-8ad7fdbc-37ff-41bd-8fad-8a90ecb3c2ff {
  text-align: center;
}

#s-8ad7fdbc-37ff-41bd-8fad-8a90ecb3c2ff {
  overflow: hidden;
  
  
}







  #s-8ad7fdbc-37ff-41bd-8fad-8a90ecb3c2ff img.shogun-image {
    

    
    
    
  }


#s-8ad7fdbc-37ff-41bd-8fad-8a90ecb3c2ff .shogun-image-content {
  
    justify-content: center;
  
}

#s-66806b79-a332-418a-b0a6-bad6fe022462 {
  margin-top: 8px;
margin-bottom: 8px;
}
@media (min-width: 768px) and (max-width: 991px){#s-66806b79-a332-418a-b0a6-bad6fe022462 {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-66806b79-a332-418a-b0a6-bad6fe022462 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-66806b79-a332-418a-b0a6-bad6fe022462"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-66806b79-a332-418a-b0a6-bad6fe022462"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-66806b79-a332-418a-b0a6-bad6fe022462"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-66806b79-a332-418a-b0a6-bad6fe022462"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 0px) {
[id="s-2e3fe98c-7a16-4de9-8d46-a68646370250"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2e3fe98c-7a16-4de9-8d46-a68646370250"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-2e3fe98c-7a16-4de9-8d46-a68646370250"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-2e3fe98c-7a16-4de9-8d46-a68646370250"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-51d4f2dd-54bc-4509-8b9f-45d411b8ac7d {
  text-align: center;
}

#s-51d4f2dd-54bc-4509-8b9f-45d411b8ac7d {
  overflow: hidden;
  
  
}







  #s-51d4f2dd-54bc-4509-8b9f-45d411b8ac7d img.shogun-image {
    

    
    
    
  }


#s-51d4f2dd-54bc-4509-8b9f-45d411b8ac7d .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 0px) {
[id="s-0f20d71f-53c7-4d5f-bf80-8c4e50d353ca"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0f20d71f-53c7-4d5f-bf80-8c4e50d353ca"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-0f20d71f-53c7-4d5f-bf80-8c4e50d353ca"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-0f20d71f-53c7-4d5f-bf80-8c4e50d353ca"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-e76efa64-c66a-4453-bed9-efcd2b4946ba {
  text-align: center;
}

#s-e76efa64-c66a-4453-bed9-efcd2b4946ba {
  overflow: hidden;
  
  
}







  #s-e76efa64-c66a-4453-bed9-efcd2b4946ba img.shogun-image {
    

    
    
    
  }


#s-e76efa64-c66a-4453-bed9-efcd2b4946ba .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 0px) {
[id="s-ed0c37f0-d165-4001-b284-817627e6c53a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ed0c37f0-d165-4001-b284-817627e6c53a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-ed0c37f0-d165-4001-b284-817627e6c53a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-ed0c37f0-d165-4001-b284-817627e6c53a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-3c9430cc-3fc0-4d0a-8534-abdf36e5e6f2 {
  text-align: center;
}

#s-3c9430cc-3fc0-4d0a-8534-abdf36e5e6f2 {
  overflow: hidden;
  
  
}







  #s-3c9430cc-3fc0-4d0a-8534-abdf36e5e6f2 img.shogun-image {
    

    
    
    
  }


#s-3c9430cc-3fc0-4d0a-8534-abdf36e5e6f2 .shogun-image-content {
  
    justify-content: center;
  
}

#s-6884e8f5-58da-440c-b29c-23b0ddc780e8 {
  margin-left: auto;
margin-right: auto;
padding-left: 3%;
padding-right: 3%;
min-height: 50px;
}








#s-6884e8f5-58da-440c-b29c-23b0ddc780e8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6884e8f5-58da-440c-b29c-23b0ddc780e8.shg-box.shg-c {
  justify-content: center;
}

#s-fc0e30a0-5455-438b-9395-19f213dfed33 {
  margin-left: auto;
margin-right: auto;
padding-left: 1%;
padding-right: 1%;
min-height: 50px;
max-width: 1388px;
}








#s-fc0e30a0-5455-438b-9395-19f213dfed33 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fc0e30a0-5455-438b-9395-19f213dfed33.shg-box.shg-c {
  justify-content: center;
}

#s-715c827b-ef0e-4251-b926-c988a896b61b {
  margin-left: auto;
margin-right: auto;
padding-bottom: 10px;
}

/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-715c827b-ef0e-4251-b926-c988a896b61b {
  --swiper-pagination-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-active-color: rgba(113, 113, 113, 1) !important;
  --arrow-button-size: 35px !important;
  --swiper-pagination-bullet-size: 14px !important;
  
}

#slider-v3-s-715c827b-ef0e-4251-b926-c988a896b61b > .swiper-button-prev,
#slider-v3-s-715c827b-ef0e-4251-b926-c988a896b61b > .swiper-button-next {
  
}

#slider-v3-s-715c827b-ef0e-4251-b926-c988a896b61b > .swiper-button-prev svg,
#slider-v3-s-715c827b-ef0e-4251-b926-c988a896b61b > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-715c827b-ef0e-4251-b926-c988a896b61b > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-715c827b-ef0e-4251-b926-c988a896b61b > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-715c827b-ef0e-4251-b926-c988a896b61b > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-715c827b-ef0e-4251-b926-c988a896b61b .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-715c827b-ef0e-4251-b926-c988a896b61b .swiper-pagination-bullet-active {
  background-color: rgba(113, 113, 113, 1) !important;
  width: calc(14px * 1) !important;
  height: 14px !important;
  border-radius:  50px  !important;
}

#slider-v3-s-715c827b-ef0e-4251-b926-c988a896b61b .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-d0fbf809-4733-4529-8d06-ec0ab7a68723 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-d0fbf809-4733-4529-8d06-ec0ab7a68723"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 25.0px);
}

}

@media (min-width: 768px) {
[id="s-d0fbf809-4733-4529-8d06-ec0ab7a68723"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 41.666666666666664px);
}

}

@media (min-width: 992px) {
[id="s-d0fbf809-4733-4529-8d06-ec0ab7a68723"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 41.666666666666664px);
}

}

@media (min-width: 1200px) {
[id="s-d0fbf809-4733-4529-8d06-ec0ab7a68723"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 41.666666666666664px);
}

}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
}
#s-6baf07f9-4b82-403f-b9cc-90d263663e69:hover {opacity: 0.5 !important;}
#s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  margin: 0 !important;
  overflow: visible;
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
  /* Add background color handling */
  
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image {
  box-sizing: border-box;
}



.s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
      position: relative;
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){#s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  margin: 0 !important;
  overflow: visible;
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
  /* Add background color handling */
  
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image {
  box-sizing: border-box;
}



.s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
      position: relative;
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  margin: 0 !important;
  overflow: visible;
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
  /* Add background color handling */
  
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image {
  box-sizing: border-box;
}



.s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
      position: relative;
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  margin: 0 !important;
  overflow: visible;
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
  /* Add background color handling */
  
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image {
  box-sizing: border-box;
}



.s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
      position: relative;
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (max-width: 767px){#s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  margin: 0 !important;
  overflow: visible;
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
  /* Add background color handling */
  
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image {
  box-sizing: border-box;
}



.s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
      position: relative;
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
}
#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2:hover {opacity: 0.5 !important;}
#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  margin: 0 !important;
  overflow: visible;
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
  /* Add background color handling */
  
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image {
  box-sizing: border-box;
}



.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
      position: relative;
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  margin: 0 !important;
  overflow: visible;
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
  /* Add background color handling */
  
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image {
  box-sizing: border-box;
}



.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
      position: relative;
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  margin: 0 !important;
  overflow: visible;
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
  /* Add background color handling */
  
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image {
  box-sizing: border-box;
}



.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
      position: relative;
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  margin: 0 !important;
  overflow: visible;
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
  /* Add background color handling */
  
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image {
  box-sizing: border-box;
}



.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
      position: relative;
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (max-width: 767px){#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  margin: 0 !important;
  overflow: visible;
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
  /* Add background color handling */
  
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image {
  box-sizing: border-box;
}



.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
      position: relative;
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-41bf990c-1796-4882-be6a-4d17d509c135 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
}
#s-41bf990c-1796-4882-be6a-4d17d509c135:hover {opacity: 0.5 !important;}
#s-41bf990c-1796-4882-be6a-4d17d509c135 {
  margin: 0 !important;
  overflow: visible;
}

#s-41bf990c-1796-4882-be6a-4d17d509c135-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-41bf990c-1796-4882-be6a-4d17d509c135 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-41bf990c-1796-4882-be6a-4d17d509c135 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
  /* Add background color handling */
  
}

#s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-41bf990c-1796-4882-be6a-4d17d509c135 .shogun-image-content {
  
    justify-content: center;
  
}

.s-41bf990c-1796-4882-be6a-4d17d509c135.shg-align-container {
  display: flex;
  justify-content: center
}

.s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image {
  box-sizing: border-box;
}



.s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-41bf990c-1796-4882-be6a-4d17d509c135 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
      position: relative;
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){#s-41bf990c-1796-4882-be6a-4d17d509c135 {
  margin: 0 !important;
  overflow: visible;
}

#s-41bf990c-1796-4882-be6a-4d17d509c135-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-41bf990c-1796-4882-be6a-4d17d509c135 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-41bf990c-1796-4882-be6a-4d17d509c135 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
  /* Add background color handling */
  
}

#s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-41bf990c-1796-4882-be6a-4d17d509c135 .shogun-image-content {
  
    justify-content: center;
  
}

.s-41bf990c-1796-4882-be6a-4d17d509c135.shg-align-container {
  display: flex;
  justify-content: center
}

.s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image {
  box-sizing: border-box;
}



.s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-41bf990c-1796-4882-be6a-4d17d509c135 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
      position: relative;
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-41bf990c-1796-4882-be6a-4d17d509c135 {
  margin: 0 !important;
  overflow: visible;
}

#s-41bf990c-1796-4882-be6a-4d17d509c135-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-41bf990c-1796-4882-be6a-4d17d509c135 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-41bf990c-1796-4882-be6a-4d17d509c135 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
  /* Add background color handling */
  
}

#s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-41bf990c-1796-4882-be6a-4d17d509c135 .shogun-image-content {
  
    justify-content: center;
  
}

.s-41bf990c-1796-4882-be6a-4d17d509c135.shg-align-container {
  display: flex;
  justify-content: center
}

.s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image {
  box-sizing: border-box;
}



.s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-41bf990c-1796-4882-be6a-4d17d509c135 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
      position: relative;
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-41bf990c-1796-4882-be6a-4d17d509c135 {
  margin: 0 !important;
  overflow: visible;
}

#s-41bf990c-1796-4882-be6a-4d17d509c135-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-41bf990c-1796-4882-be6a-4d17d509c135 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-41bf990c-1796-4882-be6a-4d17d509c135 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
  /* Add background color handling */
  
}

#s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-41bf990c-1796-4882-be6a-4d17d509c135 .shogun-image-content {
  
    justify-content: center;
  
}

.s-41bf990c-1796-4882-be6a-4d17d509c135.shg-align-container {
  display: flex;
  justify-content: center
}

.s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image {
  box-sizing: border-box;
}



.s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-41bf990c-1796-4882-be6a-4d17d509c135 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
      position: relative;
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (max-width: 767px){#s-41bf990c-1796-4882-be6a-4d17d509c135 {
  margin: 0 !important;
  overflow: visible;
}

#s-41bf990c-1796-4882-be6a-4d17d509c135-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-41bf990c-1796-4882-be6a-4d17d509c135 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-41bf990c-1796-4882-be6a-4d17d509c135 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
  /* Add background color handling */
  
}

#s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-41bf990c-1796-4882-be6a-4d17d509c135 .shogun-image-content {
  
    justify-content: center;
  
}

.s-41bf990c-1796-4882-be6a-4d17d509c135.shg-align-container {
  display: flex;
  justify-content: center
}

.s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image {
  box-sizing: border-box;
}



.s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-41bf990c-1796-4882-be6a-4d17d509c135 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
      position: relative;
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-b9d22524-0125-40ad-8439-27774e849cb8 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
}
#s-b9d22524-0125-40ad-8439-27774e849cb8:hover {opacity: 0.5 !important;}
#s-b9d22524-0125-40ad-8439-27774e849cb8 {
  margin: 0 !important;
  overflow: visible;
}

#s-b9d22524-0125-40ad-8439-27774e849cb8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b9d22524-0125-40ad-8439-27774e849cb8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b9d22524-0125-40ad-8439-27774e849cb8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
  /* Add background color handling */
  
}

#s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-b9d22524-0125-40ad-8439-27774e849cb8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b9d22524-0125-40ad-8439-27774e849cb8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image {
  box-sizing: border-box;
}



.s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b9d22524-0125-40ad-8439-27774e849cb8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
      position: relative;
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){#s-b9d22524-0125-40ad-8439-27774e849cb8 {
  margin: 0 !important;
  overflow: visible;
}

#s-b9d22524-0125-40ad-8439-27774e849cb8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b9d22524-0125-40ad-8439-27774e849cb8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b9d22524-0125-40ad-8439-27774e849cb8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
  /* Add background color handling */
  
}

#s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-b9d22524-0125-40ad-8439-27774e849cb8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b9d22524-0125-40ad-8439-27774e849cb8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image {
  box-sizing: border-box;
}



.s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b9d22524-0125-40ad-8439-27774e849cb8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
      position: relative;
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b9d22524-0125-40ad-8439-27774e849cb8 {
  margin: 0 !important;
  overflow: visible;
}

#s-b9d22524-0125-40ad-8439-27774e849cb8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b9d22524-0125-40ad-8439-27774e849cb8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b9d22524-0125-40ad-8439-27774e849cb8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
  /* Add background color handling */
  
}

#s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-b9d22524-0125-40ad-8439-27774e849cb8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b9d22524-0125-40ad-8439-27774e849cb8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image {
  box-sizing: border-box;
}



.s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b9d22524-0125-40ad-8439-27774e849cb8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
      position: relative;
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b9d22524-0125-40ad-8439-27774e849cb8 {
  margin: 0 !important;
  overflow: visible;
}

#s-b9d22524-0125-40ad-8439-27774e849cb8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b9d22524-0125-40ad-8439-27774e849cb8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b9d22524-0125-40ad-8439-27774e849cb8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
  /* Add background color handling */
  
}

#s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-b9d22524-0125-40ad-8439-27774e849cb8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b9d22524-0125-40ad-8439-27774e849cb8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image {
  box-sizing: border-box;
}



.s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b9d22524-0125-40ad-8439-27774e849cb8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
      position: relative;
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (max-width: 767px){#s-b9d22524-0125-40ad-8439-27774e849cb8 {
  margin: 0 !important;
  overflow: visible;
}

#s-b9d22524-0125-40ad-8439-27774e849cb8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b9d22524-0125-40ad-8439-27774e849cb8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b9d22524-0125-40ad-8439-27774e849cb8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
  /* Add background color handling */
  
}

#s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-b9d22524-0125-40ad-8439-27774e849cb8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b9d22524-0125-40ad-8439-27774e849cb8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image {
  box-sizing: border-box;
}



.s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b9d22524-0125-40ad-8439-27774e849cb8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
      position: relative;
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
}
#s-6bd98d84-c6a8-417f-983c-59b335bf94c0:hover {opacity: 0.5 !important;}
#s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  margin: 0 !important;
  overflow: visible;
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
  /* Add background color handling */
  
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image {
  box-sizing: border-box;
}



.s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
      position: relative;
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){#s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  margin: 0 !important;
  overflow: visible;
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
  /* Add background color handling */
  
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image {
  box-sizing: border-box;
}



.s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
      position: relative;
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  margin: 0 !important;
  overflow: visible;
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
  /* Add background color handling */
  
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image {
  box-sizing: border-box;
}



.s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
      position: relative;
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  margin: 0 !important;
  overflow: visible;
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
  /* Add background color handling */
  
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image {
  box-sizing: border-box;
}



.s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
      position: relative;
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (max-width: 767px){#s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  margin: 0 !important;
  overflow: visible;
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
  /* Add background color handling */
  
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image {
  box-sizing: border-box;
}



.s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
      position: relative;
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
}
#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8:hover {opacity: 0.5 !important;}
#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  margin: 0 !important;
  overflow: visible;
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
  /* Add background color handling */
  
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image {
  box-sizing: border-box;
}



.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
      position: relative;
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  margin: 0 !important;
  overflow: visible;
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
  /* Add background color handling */
  
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image {
  box-sizing: border-box;
}



.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
      position: relative;
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  margin: 0 !important;
  overflow: visible;
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
  /* Add background color handling */
  
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image {
  box-sizing: border-box;
}



.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
      position: relative;
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  margin: 0 !important;
  overflow: visible;
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
  /* Add background color handling */
  
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image {
  box-sizing: border-box;
}



.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
      position: relative;
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (max-width: 767px){#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  margin: 0 !important;
  overflow: visible;
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
  /* Add background color handling */
  
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image {
  box-sizing: border-box;
}



.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
      position: relative;
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-95e3e47d-f019-4fa3-aa00-c43581a245c2 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-95e3e47d-f019-4fa3-aa00-c43581a245c2"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 25.0px);
}

}

@media (min-width: 768px) {
[id="s-95e3e47d-f019-4fa3-aa00-c43581a245c2"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 41.666666666666664px);
}

}

@media (min-width: 992px) {
[id="s-95e3e47d-f019-4fa3-aa00-c43581a245c2"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 41.666666666666664px);
}

}

@media (min-width: 1200px) {
[id="s-95e3e47d-f019-4fa3-aa00-c43581a245c2"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 41.666666666666664px);
}

}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
opacity: 1;
}
#s-ef99567d-d86c-4e0d-b95f-e5796540c730:hover {opacity: 0.5 !important;}
#s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  margin: 0 !important;
  overflow: visible;
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
  /* Add background color handling */
  
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image {
  box-sizing: border-box;
}



.s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
      position: relative;
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){#s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  margin: 0 !important;
  overflow: visible;
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
  /* Add background color handling */
  
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image {
  box-sizing: border-box;
}



.s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
      position: relative;
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  margin: 0 !important;
  overflow: visible;
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
  /* Add background color handling */
  
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image {
  box-sizing: border-box;
}



.s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
      position: relative;
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  margin: 0 !important;
  overflow: visible;
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
  /* Add background color handling */
  
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image {
  box-sizing: border-box;
}



.s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
      position: relative;
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (max-width: 767px){#s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  margin: 0 !important;
  overflow: visible;
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
  /* Add background color handling */
  
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image {
  box-sizing: border-box;
}



.s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
      position: relative;
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
}
#s-6516f108-7132-4fb1-99fb-d21955904ea6:hover {opacity: 0.5 !important;}
#s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  margin: 0 !important;
  overflow: visible;
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
  /* Add background color handling */
  
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6516f108-7132-4fb1-99fb-d21955904ea6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6516f108-7132-4fb1-99fb-d21955904ea6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image {
  box-sizing: border-box;
}



.s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6516f108-7132-4fb1-99fb-d21955904ea6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
      position: relative;
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){#s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  margin: 0 !important;
  overflow: visible;
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
  /* Add background color handling */
  
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6516f108-7132-4fb1-99fb-d21955904ea6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6516f108-7132-4fb1-99fb-d21955904ea6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image {
  box-sizing: border-box;
}



.s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6516f108-7132-4fb1-99fb-d21955904ea6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
      position: relative;
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  margin: 0 !important;
  overflow: visible;
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
  /* Add background color handling */
  
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6516f108-7132-4fb1-99fb-d21955904ea6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6516f108-7132-4fb1-99fb-d21955904ea6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image {
  box-sizing: border-box;
}



.s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6516f108-7132-4fb1-99fb-d21955904ea6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
      position: relative;
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  margin: 0 !important;
  overflow: visible;
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
  /* Add background color handling */
  
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6516f108-7132-4fb1-99fb-d21955904ea6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6516f108-7132-4fb1-99fb-d21955904ea6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image {
  box-sizing: border-box;
}



.s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6516f108-7132-4fb1-99fb-d21955904ea6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
      position: relative;
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (max-width: 767px){#s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  margin: 0 !important;
  overflow: visible;
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
  /* Add background color handling */
  
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6516f108-7132-4fb1-99fb-d21955904ea6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6516f108-7132-4fb1-99fb-d21955904ea6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image {
  box-sizing: border-box;
}



.s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6516f108-7132-4fb1-99fb-d21955904ea6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
      position: relative;
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
}
#s-80352376-2bd8-4541-a64a-f2ad6d936721:hover {opacity: 0.5 !important;}
#s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  margin: 0 !important;
  overflow: visible;
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
  /* Add background color handling */
  
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-80352376-2bd8-4541-a64a-f2ad6d936721 .shogun-image-content {
  
    justify-content: center;
  
}

.s-80352376-2bd8-4541-a64a-f2ad6d936721.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image {
  box-sizing: border-box;
}



.s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-80352376-2bd8-4541-a64a-f2ad6d936721 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
      position: relative;
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){#s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  margin: 0 !important;
  overflow: visible;
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
  /* Add background color handling */
  
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-80352376-2bd8-4541-a64a-f2ad6d936721 .shogun-image-content {
  
    justify-content: center;
  
}

.s-80352376-2bd8-4541-a64a-f2ad6d936721.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image {
  box-sizing: border-box;
}



.s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-80352376-2bd8-4541-a64a-f2ad6d936721 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
      position: relative;
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  margin: 0 !important;
  overflow: visible;
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
  /* Add background color handling */
  
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-80352376-2bd8-4541-a64a-f2ad6d936721 .shogun-image-content {
  
    justify-content: center;
  
}

.s-80352376-2bd8-4541-a64a-f2ad6d936721.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image {
  box-sizing: border-box;
}



.s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-80352376-2bd8-4541-a64a-f2ad6d936721 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
      position: relative;
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  margin: 0 !important;
  overflow: visible;
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
  /* Add background color handling */
  
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-80352376-2bd8-4541-a64a-f2ad6d936721 .shogun-image-content {
  
    justify-content: center;
  
}

.s-80352376-2bd8-4541-a64a-f2ad6d936721.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image {
  box-sizing: border-box;
}



.s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-80352376-2bd8-4541-a64a-f2ad6d936721 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
      position: relative;
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (max-width: 767px){#s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  margin: 0 !important;
  overflow: visible;
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
  /* Add background color handling */
  
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-80352376-2bd8-4541-a64a-f2ad6d936721 .shogun-image-content {
  
    justify-content: center;
  
}

.s-80352376-2bd8-4541-a64a-f2ad6d936721.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image {
  box-sizing: border-box;
}



.s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-80352376-2bd8-4541-a64a-f2ad6d936721 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
      position: relative;
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
}
#s-ac697e78-9c34-4720-ad84-88c713ed21c8:hover {opacity: 0.5 !important;}
#s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  margin: 0 !important;
  overflow: visible;
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
  /* Add background color handling */
  
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image {
  box-sizing: border-box;
}



.s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
      position: relative;
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){#s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  margin: 0 !important;
  overflow: visible;
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
  /* Add background color handling */
  
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image {
  box-sizing: border-box;
}



.s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
      position: relative;
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  margin: 0 !important;
  overflow: visible;
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
  /* Add background color handling */
  
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image {
  box-sizing: border-box;
}



.s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
      position: relative;
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  margin: 0 !important;
  overflow: visible;
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
  /* Add background color handling */
  
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image {
  box-sizing: border-box;
}



.s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
      position: relative;
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (max-width: 767px){#s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  margin: 0 !important;
  overflow: visible;
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
  /* Add background color handling */
  
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image {
  box-sizing: border-box;
}



.s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
      position: relative;
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
}
#s-ec784063-9fbc-4221-868b-44f0b215f2fb:hover {opacity: 0.5 !important;}
#s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  margin: 0 !important;
  overflow: visible;
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
  /* Add background color handling */
  
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ec784063-9fbc-4221-868b-44f0b215f2fb .shogun-image-content {
  
    justify-content: center;
  
}

.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image {
  box-sizing: border-box;
}



.s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ec784063-9fbc-4221-868b-44f0b215f2fb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
      position: relative;
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){#s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  margin: 0 !important;
  overflow: visible;
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
  /* Add background color handling */
  
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ec784063-9fbc-4221-868b-44f0b215f2fb .shogun-image-content {
  
    justify-content: center;
  
}

.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image {
  box-sizing: border-box;
}



.s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ec784063-9fbc-4221-868b-44f0b215f2fb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
      position: relative;
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  margin: 0 !important;
  overflow: visible;
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
  /* Add background color handling */
  
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ec784063-9fbc-4221-868b-44f0b215f2fb .shogun-image-content {
  
    justify-content: center;
  
}

.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image {
  box-sizing: border-box;
}



.s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ec784063-9fbc-4221-868b-44f0b215f2fb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
      position: relative;
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  margin: 0 !important;
  overflow: visible;
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
  /* Add background color handling */
  
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ec784063-9fbc-4221-868b-44f0b215f2fb .shogun-image-content {
  
    justify-content: center;
  
}

.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image {
  box-sizing: border-box;
}



.s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ec784063-9fbc-4221-868b-44f0b215f2fb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
      position: relative;
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (max-width: 767px){#s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  margin: 0 !important;
  overflow: visible;
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
  /* Add background color handling */
  
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ec784063-9fbc-4221-868b-44f0b215f2fb .shogun-image-content {
  
    justify-content: center;
  
}

.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image {
  box-sizing: border-box;
}



.s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ec784063-9fbc-4221-868b-44f0b215f2fb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
      position: relative;
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
}
#s-597d2069-f76b-41b6-988f-759b25e0ac96:hover {opacity: 0.5 !important;}
#s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  margin: 0 !important;
  overflow: visible;
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
  /* Add background color handling */
  
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-597d2069-f76b-41b6-988f-759b25e0ac96 .shogun-image-content {
  
    justify-content: center;
  
}

.s-597d2069-f76b-41b6-988f-759b25e0ac96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image {
  box-sizing: border-box;
}



.s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-597d2069-f76b-41b6-988f-759b25e0ac96 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
      position: relative;
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){#s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  margin: 0 !important;
  overflow: visible;
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
  /* Add background color handling */
  
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-597d2069-f76b-41b6-988f-759b25e0ac96 .shogun-image-content {
  
    justify-content: center;
  
}

.s-597d2069-f76b-41b6-988f-759b25e0ac96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image {
  box-sizing: border-box;
}



.s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-597d2069-f76b-41b6-988f-759b25e0ac96 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
      position: relative;
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  margin: 0 !important;
  overflow: visible;
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
  /* Add background color handling */
  
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-597d2069-f76b-41b6-988f-759b25e0ac96 .shogun-image-content {
  
    justify-content: center;
  
}

.s-597d2069-f76b-41b6-988f-759b25e0ac96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image {
  box-sizing: border-box;
}



.s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-597d2069-f76b-41b6-988f-759b25e0ac96 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
      position: relative;
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  margin: 0 !important;
  overflow: visible;
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
  /* Add background color handling */
  
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-597d2069-f76b-41b6-988f-759b25e0ac96 .shogun-image-content {
  
    justify-content: center;
  
}

.s-597d2069-f76b-41b6-988f-759b25e0ac96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image {
  box-sizing: border-box;
}



.s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-597d2069-f76b-41b6-988f-759b25e0ac96 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
      position: relative;
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (max-width: 767px){#s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  margin: 0 !important;
  overflow: visible;
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
  /* Add background color handling */
  
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 400px;
  }



  img.s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-597d2069-f76b-41b6-988f-759b25e0ac96 .shogun-image-content {
  
    justify-content: center;
  
}

.s-597d2069-f76b-41b6-988f-759b25e0ac96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image {
  box-sizing: border-box;
}



.s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-597d2069-f76b-41b6-988f-759b25e0ac96 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
      position: relative;
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-bc496eaa-83f0-4db1-989b-d5c969afd3c8 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(22, 65, 111, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-bc496eaa-83f0-4db1-989b-d5c969afd3c8 {
  display: none;
}
#s-bc496eaa-83f0-4db1-989b-d5c969afd3c8, #wrap-s-bc496eaa-83f0-4db1-989b-d5c969afd3c8, #wrap-content-s-bc496eaa-83f0-4db1-989b-d5c969afd3c8 { display: none !important; }}@media (max-width: 767px){#s-bc496eaa-83f0-4db1-989b-d5c969afd3c8 {
  display: none;
}
#s-bc496eaa-83f0-4db1-989b-d5c969afd3c8, #wrap-s-bc496eaa-83f0-4db1-989b-d5c969afd3c8, #wrap-content-s-bc496eaa-83f0-4db1-989b-d5c969afd3c8 { display: none !important; }}







#s-bc496eaa-83f0-4db1-989b-d5c969afd3c8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bc496eaa-83f0-4db1-989b-d5c969afd3c8.shg-box.shg-c {
  justify-content: center;
}

#s-44a91e02-4420-4f3a-8e60-87ea1e5bca2e {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-left: 2%;
padding-right: 2%;
min-height: 50px;
max-width: 1388px;
}








#s-44a91e02-4420-4f3a-8e60-87ea1e5bca2e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-44a91e02-4420-4f3a-8e60-87ea1e5bca2e.shg-box.shg-c {
  justify-content: center;
}

#s-60ee2c9e-3aa8-4ce3-a2ad-337d523b4760 {
  margin-top: 25px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-60ee2c9e-3aa8-4ce3-a2ad-337d523b4760 .shogun-heading-component h1 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 26px;
  
  
  
}



#s-454159ae-28a6-4b04-814c-fb962cec0eec {
  margin-top: 15px;
margin-bottom: 50px;
padding-top: 5px;
padding-bottom: 5px;
}

@media (min-width: 0px) {
[id="s-454159ae-28a6-4b04-814c-fb962cec0eec"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-454159ae-28a6-4b04-814c-fb962cec0eec"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 16.0px);
}

}

@media (min-width: 992px) {
[id="s-454159ae-28a6-4b04-814c-fb962cec0eec"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 16.0px);
}

}

@media (min-width: 1200px) {
[id="s-454159ae-28a6-4b04-814c-fb962cec0eec"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 16.0px);
}

}

#s-55be4500-035d-4e10-a040-681574931019 {
  box-shadow:2px 3px 10px 4px rgba(11, 42, 75, 1);
background-repeat: no-repeat;
background-size: cover;
margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(56, 64, 64, 1);
border-style: solid;
border-radius: 10px;
min-height: 300px;
background-position: center center;
opacity: 1;
}








#s-55be4500-035d-4e10-a040-681574931019 > .shg-box-overlay {
  background-color: rgba(244, 244, 244, 1);
  opacity: 0;
  display: block;
}#s-55be4500-035d-4e10-a040-681574931019 {
  cursor: pointer;
}#s-55be4500-035d-4e10-a040-681574931019.shg-box.shg-c {
  justify-content: flex-end;
}

#s-d2b7d7d2-edbe-4888-83e5-d93b45529799 {
  box-shadow:0px 0px 0px 0px ;
margin-top: 0px;
margin-left: 5%;
margin-bottom: 20px;
margin-right: 5%;
padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(244, 244, 244, 1);
border-style: solid;
border-radius: 0px;
text-align: left;
background-color: rgba(0, 0, 0, 0);
}

#s-d2b7d7d2-edbe-4888-83e5-d93b45529799 .shogun-heading-component h2 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: center;
}



#s-a68b7336-7189-4010-9f69-9e6f9bf75a97 {
  box-shadow:2px 3px 10px 4px rgba(11, 42, 75, 1);
background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
min-height: 300px;
background-position: center center;
}








#s-a68b7336-7189-4010-9f69-9e6f9bf75a97 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
  display: block;
}#s-a68b7336-7189-4010-9f69-9e6f9bf75a97 {
  cursor: pointer;
}#s-a68b7336-7189-4010-9f69-9e6f9bf75a97.shg-box.shg-c {
  justify-content: flex-end;
}

#s-d7f9859d-6edd-456b-b3a8-8afff4e5f095 {
  margin-left: 0%;
margin-bottom: 20px;
padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: center;
}

#s-d7f9859d-6edd-456b-b3a8-8afff4e5f095 .shogun-heading-component h1 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: center;
}



#s-e3d7444f-d20b-417d-9ddf-dfedcad895d8 {
  box-shadow:2px 3px 10px 4px rgba(11, 42, 75, 1);
background-repeat: no-repeat;
background-size: cover;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
min-height: 300px;
background-position: center center;
}








#s-e3d7444f-d20b-417d-9ddf-dfedcad895d8 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
  display: block;
}#s-e3d7444f-d20b-417d-9ddf-dfedcad895d8 {
  cursor: pointer;
}#s-e3d7444f-d20b-417d-9ddf-dfedcad895d8.shg-box.shg-c {
  justify-content: flex-end;
}

#s-a5d1ee2c-1f6a-40f5-9026-fe49ce8fbf68 {
  margin-bottom: 20px;
padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: center;
}

#s-a5d1ee2c-1f6a-40f5-9026-fe49ce8fbf68 .shogun-heading-component h1 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: center;
}



#s-4fe51c56-39d7-4d45-8313-88cb882ed62f {
  box-shadow:2px 3px 10px 4px rgba(11, 42, 75, 1);
background-repeat: no-repeat;
background-size: cover;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
min-height: 300px;
background-position: center center;
}








#s-4fe51c56-39d7-4d45-8313-88cb882ed62f > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
  display: block;
}#s-4fe51c56-39d7-4d45-8313-88cb882ed62f {
  cursor: pointer;
}#s-4fe51c56-39d7-4d45-8313-88cb882ed62f.shg-box.shg-c {
  justify-content: flex-end;
}

#s-63dbb0c5-4477-4283-9a13-db8afc6c6497 {
  margin-top: 0px;
margin-bottom: 20px;
padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: center;
}

#s-63dbb0c5-4477-4283-9a13-db8afc6c6497 .shogun-heading-component h1 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: center;
}



#s-74e70e31-56bb-41b5-80e8-446aa4a3c691 {
  box-shadow:2px 3px 10px 4px rgba(11, 42, 75, 1);
background-repeat: no-repeat;
background-size: cover;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
min-height: 300px;
background-position: center center;
}








#s-74e70e31-56bb-41b5-80e8-446aa4a3c691 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
  display: block;
}#s-74e70e31-56bb-41b5-80e8-446aa4a3c691 {
  cursor: pointer;
}#s-74e70e31-56bb-41b5-80e8-446aa4a3c691.shg-box.shg-c {
  justify-content: flex-end;
}

#s-f8db6890-ba59-4bc9-85a8-2bcb1223dd3a {
  margin-top: 0px;
margin-bottom: 20px;
padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: center;
}

#s-f8db6890-ba59-4bc9-85a8-2bcb1223dd3a .shogun-heading-component h1 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: center;
}



#s-a4679101-0b7b-4322-81c3-7324a3ab375b {
  background-repeat: no-repeat;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-a4679101-0b7b-4322-81c3-7324a3ab375b {
  display: none;
}
#s-a4679101-0b7b-4322-81c3-7324a3ab375b, #wrap-s-a4679101-0b7b-4322-81c3-7324a3ab375b, #wrap-content-s-a4679101-0b7b-4322-81c3-7324a3ab375b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a4679101-0b7b-4322-81c3-7324a3ab375b {
  display: none;
}
#s-a4679101-0b7b-4322-81c3-7324a3ab375b, #wrap-s-a4679101-0b7b-4322-81c3-7324a3ab375b, #wrap-content-s-a4679101-0b7b-4322-81c3-7324a3ab375b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a4679101-0b7b-4322-81c3-7324a3ab375b {
  
}
}@media (max-width: 767px){#s-a4679101-0b7b-4322-81c3-7324a3ab375b {
  
}
}
#s-a4679101-0b7b-4322-81c3-7324a3ab375b {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYmU0OWFhNzItMDVmYS00Zjk1LTkyY2ItYWUxZWFjNjMzNzAwIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojNzQ4MDgwO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNGQ1ODU4O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiZTQ5YWE3Mi0wNWZhLTRmOTUtOTJjYi1hZTFlYWM2MzM3MDApIi8+PC9zdmc+);
}








#s-a4679101-0b7b-4322-81c3-7324a3ab375b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a4679101-0b7b-4322-81c3-7324a3ab375b.shg-box.shg-c {
  justify-content: center;
}

#s-8198ed10-19fa-4afa-af14-172162d6f6b7 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
min-height: 50px;
max-width: 1388px;
}








#s-8198ed10-19fa-4afa-af14-172162d6f6b7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8198ed10-19fa-4afa-af14-172162d6f6b7.shg-box.shg-c {
  justify-content: center;
}

#s-5547cc5c-165e-48a5-97f3-689cae93166a {
  margin-top: 25px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5547cc5c-165e-48a5-97f3-689cae93166a .shogun-heading-component h1 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 26px;
  
  
  
}



#s-0a9113d9-2704-4997-b64d-e40d6737b10f {
  box-shadow:2px 3px 10px 4px rgba(58, 66, 66, 0.75);
background-repeat: no-repeat;
background-size: cover;
margin-top: 2%;
margin-left: 0%;
margin-bottom: 2%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(56, 64, 64, 1);
border-style: solid;
border-radius: 0px;
min-height: 300px;
background-position: center center;
opacity: 1;
}








#s-0a9113d9-2704-4997-b64d-e40d6737b10f > .shg-box-overlay {
  background-color: rgba(244, 244, 244, 1);
  opacity: 0;
  display: block;
}#s-0a9113d9-2704-4997-b64d-e40d6737b10f {
  cursor: pointer;
}#s-0a9113d9-2704-4997-b64d-e40d6737b10f.shg-box.shg-c {
  justify-content: flex-end;
}

#s-8fc92727-82c4-4b74-816e-b5dac74d5470 {
  box-shadow:0px 0px 0px 0px ;
margin-top: 0px;
margin-left: 5%;
margin-bottom: 20px;
margin-right: 5%;
padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(244, 244, 244, 1);
border-style: solid;
border-radius: 0px;
text-align: left;
background-color: rgba(0, 0, 0, 0);
}

#s-8fc92727-82c4-4b74-816e-b5dac74d5470 .shogun-heading-component h2 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: center;
}



#s-a86681bb-0adb-4291-80cd-a9df7a7061e5 {
  box-shadow:2px 3px 10px 4px rgba(58, 66, 66, 0.75);
background-repeat: no-repeat;
background-size: cover;
margin-top: 2%;
margin-left: 0%;
margin-bottom: 2%;
margin-right: 0%;
padding-top: 0%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 0px;
min-height: 300px;
background-position: center center;
}








#s-a86681bb-0adb-4291-80cd-a9df7a7061e5 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
  display: block;
}#s-a86681bb-0adb-4291-80cd-a9df7a7061e5 {
  cursor: pointer;
}#s-a86681bb-0adb-4291-80cd-a9df7a7061e5.shg-box.shg-c {
  justify-content: flex-end;
}

#s-e5b0fb56-e67c-4ab0-b69e-c005883b691c {
  margin-left: 0%;
margin-bottom: 20px;
padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: center;
}

#s-e5b0fb56-e67c-4ab0-b69e-c005883b691c .shogun-heading-component h1 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: center;
}



#s-fa87298a-7270-4b80-84e2-2da7f86f356c {
  box-shadow:2px 3px 10px 4px rgba(58, 66, 66, 0.75);
background-repeat: no-repeat;
background-size: cover;
margin-top: 2%;
margin-left: 0%;
margin-bottom: 2%;
margin-right: 0%;
padding-top: 0%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 0px;
min-height: 300px;
background-position: center center;
}








#s-fa87298a-7270-4b80-84e2-2da7f86f356c > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
  display: block;
}#s-fa87298a-7270-4b80-84e2-2da7f86f356c {
  cursor: pointer;
}#s-fa87298a-7270-4b80-84e2-2da7f86f356c.shg-box.shg-c {
  justify-content: flex-end;
}

#s-755c57cd-fec8-43a8-a3fb-de7d1f0ff30b {
  margin-bottom: 20px;
padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: center;
}

#s-755c57cd-fec8-43a8-a3fb-de7d1f0ff30b .shogun-heading-component h1 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: center;
}



#s-f9836ee7-30f9-4046-84e7-3532cbb32df0 {
  box-shadow:2px 3px 10px 4px rgba(58, 66, 66, 0.75);
background-repeat: no-repeat;
background-size: cover;
margin-top: 2%;
margin-left: 0%;
margin-bottom: 2%;
margin-right: 0%;
padding-top: 0%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 0px;
min-height: 300px;
background-position: center center;
}








#s-f9836ee7-30f9-4046-84e7-3532cbb32df0 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
  display: block;
}#s-f9836ee7-30f9-4046-84e7-3532cbb32df0 {
  cursor: pointer;
}#s-f9836ee7-30f9-4046-84e7-3532cbb32df0.shg-box.shg-c {
  justify-content: flex-end;
}

#s-d6abc8c7-c1d1-4320-be5f-e38b46a62971 {
  margin-top: 0px;
margin-bottom: 20px;
padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: center;
}

#s-d6abc8c7-c1d1-4320-be5f-e38b46a62971 .shogun-heading-component h1 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: center;
}



#s-5843b723-583f-460a-bbf3-249b31e0790c {
  box-shadow:2px 3px 10px 4px rgba(58, 66, 66, 0.75);
background-repeat: no-repeat;
background-size: cover;
margin-top: 2%;
margin-left: 0%;
margin-bottom: 3%;
margin-right: 0%;
padding-top: 0%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 0px;
min-height: 300px;
background-position: center center;
}








#s-5843b723-583f-460a-bbf3-249b31e0790c > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
  display: block;
}#s-5843b723-583f-460a-bbf3-249b31e0790c {
  cursor: pointer;
}#s-5843b723-583f-460a-bbf3-249b31e0790c.shg-box.shg-c {
  justify-content: flex-end;
}

#s-a6b7a41c-398b-48b7-a697-7c5731a33c8f {
  margin-top: 0px;
margin-bottom: 20px;
padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: center;
}

#s-a6b7a41c-398b-48b7-a697-7c5731a33c8f .shogun-heading-component h1 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: center;
}



#s-2bafd7a9-bb0f-46ba-802b-18a9e4914abf {
  min-height: 50px;
}








#s-2bafd7a9-bb0f-46ba-802b-18a9e4914abf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2bafd7a9-bb0f-46ba-802b-18a9e4914abf.shg-box.shg-c {
  justify-content: center;
}

#s-ef6f0e4e-7388-45f0-a32f-39555999a7fd {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
background-color: rgba(254, 147, 49, 1);
}








#s-ef6f0e4e-7388-45f0-a32f-39555999a7fd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ef6f0e4e-7388-45f0-a32f-39555999a7fd.shg-box.shg-c {
  justify-content: center;
}

#s-5622de96-747d-4f22-89ac-4b8ce7d3761b {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
min-height: 50px;
max-width: 1388px;
}








#s-5622de96-747d-4f22-89ac-4b8ce7d3761b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5622de96-747d-4f22-89ac-4b8ce7d3761b.shg-box.shg-c {
  justify-content: center;
}

#s-b4123503-007d-4fd0-9cc5-bc2a56b2e19e {
  margin-top: 25px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b4123503-007d-4fd0-9cc5-bc2a56b2e19e .shogun-heading-component h3 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 26px;
  
  
  
}



#s-e93b4d3a-29ef-4a89-9cca-f7107b9e2276 {
  margin-top: 10px;
margin-bottom: 5px;
padding-top: 5px;
padding-left: 10%;
padding-right: 10%;
}

@media (min-width: 0px) {
[id="s-e93b4d3a-29ef-4a89-9cca-f7107b9e2276"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 25.0px);
}

}

@media (min-width: 768px) {
[id="s-e93b4d3a-29ef-4a89-9cca-f7107b9e2276"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 37.5px);
}

}

@media (min-width: 992px) {
[id="s-e93b4d3a-29ef-4a89-9cca-f7107b9e2276"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 37.5px);
}

}

@media (min-width: 1200px) {
[id="s-e93b4d3a-29ef-4a89-9cca-f7107b9e2276"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 37.5px);
}

}

#s-4210a2bc-d29e-4307-994a-239a578568d7 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: none;
border-radius: 0px;
min-height: 50px;
}








#s-4210a2bc-d29e-4307-994a-239a578568d7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4210a2bc-d29e-4307-994a-239a578568d7.shg-box.shg-c {
  justify-content: center;
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  margin-top: 0px;
margin-bottom: 10px;
max-width: 100px;
aspect-ratio: 1/1;
text-align: center;
}
#s-1e38b6c8-5589-463f-978d-4cf18e580f4b:hover {opacity: 0.85 !important;}
#s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  margin: 0 !important;
  overflow: visible;
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 0px;
  margin-bottom: 10px;
}

.shg-image-content-margin-container-s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
  /* Add background color handling */
  
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shogun-image-content {
  
    justify-content: center;
  
}

.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image {
  box-sizing: border-box;
}



.s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
      position: relative;
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

@media (min-width: 1200px){#s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  margin: 0 !important;
  overflow: visible;
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
  /* Add background color handling */
  
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shogun-image-content {
  
    justify-content: center;
  
}

.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image {
  box-sizing: border-box;
}



.s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
      position: relative;
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  margin: 0 !important;
  overflow: visible;
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
  /* Add background color handling */
  
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shogun-image-content {
  
    justify-content: center;
  
}

.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image {
  box-sizing: border-box;
}



.s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
      position: relative;
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  margin: 0 !important;
  overflow: visible;
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
  /* Add background color handling */
  
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shogun-image-content {
  
    justify-content: center;
  
}

.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image {
  box-sizing: border-box;
}



.s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
      position: relative;
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (max-width: 767px){#s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  margin: 0 !important;
  overflow: visible;
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
  /* Add background color handling */
  
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shogun-image-content {
  
    justify-content: center;
  
}

.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image {
  box-sizing: border-box;
}



.s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
      position: relative;
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}
#s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe {
  border-style: solid;
margin-left: 15%;
margin-right: 15%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 5px;
padding-right: 0%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(244, 244, 244, 1);
border-radius: 5px;
background-color: rgba(244, 244, 244, 0);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(244, 244, 244, 1);
}
#s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe:hover {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(244, 244, 244, 1) !important;
border-radius: 5px !important;
background-color: rgba(244, 244, 244, 0.15) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}#s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe:active {background-color: rgba(77, 88, 88, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe-root {
    text-align: center;
  }


#s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe-root {
    text-align: center;
  }


#s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe-root {
    text-align: center;
  }


#s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe-root {
    text-align: center;
  }


#s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe-root {
    text-align: center;
  }


#s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-7bbc8007-0d32-4238-aeba-f5f5a5d8f37a {
  min-height: 50px;
}








#s-7bbc8007-0d32-4238-aeba-f5f5a5d8f37a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7bbc8007-0d32-4238-aeba-f5f5a5d8f37a.shg-box.shg-c {
  justify-content: center;
}

#s-88d3b206-35a6-466e-baa4-7300f793181f {
  margin-bottom: 10px;
max-width: 100px;
aspect-ratio: 1/1;
text-align: center;
}
#s-88d3b206-35a6-466e-baa4-7300f793181f:hover {opacity: 0.85 !important;}
#s-88d3b206-35a6-466e-baa4-7300f793181f {
  margin: 0 !important;
  overflow: visible;
}

#s-88d3b206-35a6-466e-baa4-7300f793181f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-88d3b206-35a6-466e-baa4-7300f793181f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 10px;
}

.shg-image-content-margin-container-s-88d3b206-35a6-466e-baa4-7300f793181f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
  /* Add background color handling */
  
}

#s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88d3b206-35a6-466e-baa4-7300f793181f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-88d3b206-35a6-466e-baa4-7300f793181f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88d3b206-35a6-466e-baa4-7300f793181f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-88d3b206-35a6-466e-baa4-7300f793181f .shogun-image-content {
  
    justify-content: center;
  
}

.s-88d3b206-35a6-466e-baa4-7300f793181f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image {
  box-sizing: border-box;
}



.s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-88d3b206-35a6-466e-baa4-7300f793181f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
      position: relative;
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

@media (min-width: 1200px){#s-88d3b206-35a6-466e-baa4-7300f793181f {
  margin: 0 !important;
  overflow: visible;
}

#s-88d3b206-35a6-466e-baa4-7300f793181f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-88d3b206-35a6-466e-baa4-7300f793181f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-88d3b206-35a6-466e-baa4-7300f793181f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
  /* Add background color handling */
  
}

#s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88d3b206-35a6-466e-baa4-7300f793181f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-88d3b206-35a6-466e-baa4-7300f793181f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88d3b206-35a6-466e-baa4-7300f793181f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-88d3b206-35a6-466e-baa4-7300f793181f .shogun-image-content {
  
    justify-content: center;
  
}

.s-88d3b206-35a6-466e-baa4-7300f793181f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image {
  box-sizing: border-box;
}



.s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-88d3b206-35a6-466e-baa4-7300f793181f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
      position: relative;
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-88d3b206-35a6-466e-baa4-7300f793181f {
  margin: 0 !important;
  overflow: visible;
}

#s-88d3b206-35a6-466e-baa4-7300f793181f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-88d3b206-35a6-466e-baa4-7300f793181f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-88d3b206-35a6-466e-baa4-7300f793181f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
  /* Add background color handling */
  
}

#s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88d3b206-35a6-466e-baa4-7300f793181f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-88d3b206-35a6-466e-baa4-7300f793181f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88d3b206-35a6-466e-baa4-7300f793181f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-88d3b206-35a6-466e-baa4-7300f793181f .shogun-image-content {
  
    justify-content: center;
  
}

.s-88d3b206-35a6-466e-baa4-7300f793181f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image {
  box-sizing: border-box;
}



.s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-88d3b206-35a6-466e-baa4-7300f793181f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
      position: relative;
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-88d3b206-35a6-466e-baa4-7300f793181f {
  margin: 0 !important;
  overflow: visible;
}

#s-88d3b206-35a6-466e-baa4-7300f793181f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-88d3b206-35a6-466e-baa4-7300f793181f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-88d3b206-35a6-466e-baa4-7300f793181f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
  /* Add background color handling */
  
}

#s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88d3b206-35a6-466e-baa4-7300f793181f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-88d3b206-35a6-466e-baa4-7300f793181f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88d3b206-35a6-466e-baa4-7300f793181f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-88d3b206-35a6-466e-baa4-7300f793181f .shogun-image-content {
  
    justify-content: center;
  
}

.s-88d3b206-35a6-466e-baa4-7300f793181f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image {
  box-sizing: border-box;
}



.s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-88d3b206-35a6-466e-baa4-7300f793181f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
      position: relative;
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (max-width: 767px){#s-88d3b206-35a6-466e-baa4-7300f793181f {
  margin: 0 !important;
  overflow: visible;
}

#s-88d3b206-35a6-466e-baa4-7300f793181f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-88d3b206-35a6-466e-baa4-7300f793181f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-88d3b206-35a6-466e-baa4-7300f793181f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
  /* Add background color handling */
  
}

#s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88d3b206-35a6-466e-baa4-7300f793181f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-88d3b206-35a6-466e-baa4-7300f793181f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88d3b206-35a6-466e-baa4-7300f793181f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-88d3b206-35a6-466e-baa4-7300f793181f .shogun-image-content {
  
    justify-content: center;
  
}

.s-88d3b206-35a6-466e-baa4-7300f793181f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image {
  box-sizing: border-box;
}



.s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-88d3b206-35a6-466e-baa4-7300f793181f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
      position: relative;
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}
#s-07fae983-0c2b-482f-b4aa-5c5b496c879c {
  border-style: solid;
margin-left: 15%;
margin-right: 15%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 5px;
padding-right: 0%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(244, 244, 244, 1);
border-radius: 5px;
background-color: rgba(244, 244, 244, 0);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(244, 244, 244, 1);
}
#s-07fae983-0c2b-482f-b4aa-5c5b496c879c:hover {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(244, 244, 244, 1) !important;
border-radius: 5px !important;
background-color: rgba(244, 244, 244, 0.15) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}#s-07fae983-0c2b-482f-b4aa-5c5b496c879c:active {background-color: rgba(77, 88, 88, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-07fae983-0c2b-482f-b4aa-5c5b496c879c-root {
    text-align: center;
  }


#s-07fae983-0c2b-482f-b4aa-5c5b496c879c.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-07fae983-0c2b-482f-b4aa-5c5b496c879c-root {
    text-align: center;
  }


#s-07fae983-0c2b-482f-b4aa-5c5b496c879c.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-07fae983-0c2b-482f-b4aa-5c5b496c879c-root {
    text-align: center;
  }


#s-07fae983-0c2b-482f-b4aa-5c5b496c879c.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-07fae983-0c2b-482f-b4aa-5c5b496c879c-root {
    text-align: center;
  }


#s-07fae983-0c2b-482f-b4aa-5c5b496c879c.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-07fae983-0c2b-482f-b4aa-5c5b496c879c-root {
    text-align: center;
  }


#s-07fae983-0c2b-482f-b4aa-5c5b496c879c.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-6b3f93c6-f574-44d3-95b6-001d7c1b5b7a {
  min-height: 50px;
}








#s-6b3f93c6-f574-44d3-95b6-001d7c1b5b7a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6b3f93c6-f574-44d3-95b6-001d7c1b5b7a.shg-box.shg-c {
  justify-content: center;
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  margin-bottom: 10px;
max-width: 100px;
aspect-ratio: 1/1;
text-align: center;
}
#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6:hover {opacity: 0.85 !important;}
#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  margin: 0 !important;
  overflow: visible;
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 10px;
}

.shg-image-content-margin-container-s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
  /* Add background color handling */
  
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image {
  box-sizing: border-box;
}



.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
      position: relative;
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

@media (min-width: 1200px){#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  margin: 0 !important;
  overflow: visible;
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
  /* Add background color handling */
  
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image {
  box-sizing: border-box;
}



.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
      position: relative;
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  margin: 0 !important;
  overflow: visible;
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
  /* Add background color handling */
  
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image {
  box-sizing: border-box;
}



.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
      position: relative;
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  margin: 0 !important;
  overflow: visible;
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
  /* Add background color handling */
  
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image {
  box-sizing: border-box;
}



.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
      position: relative;
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (max-width: 767px){#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  margin: 0 !important;
  overflow: visible;
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
  /* Add background color handling */
  
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image {
  box-sizing: border-box;
}



.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
      position: relative;
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}
#s-ba8a380e-8211-44a8-9c50-d558b057cd87 {
  border-style: solid;
margin-left: 15%;
margin-right: 15%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 5px;
padding-right: 0%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(244, 244, 244, 1);
border-radius: 5px;
background-color: rgba(244, 244, 244, 0);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(244, 244, 244, 1);
}
#s-ba8a380e-8211-44a8-9c50-d558b057cd87:hover {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(244, 244, 244, 1) !important;
border-radius: 5px !important;
background-color: rgba(244, 244, 244, 0.15) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}#s-ba8a380e-8211-44a8-9c50-d558b057cd87:active {background-color: rgba(77, 88, 88, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-ba8a380e-8211-44a8-9c50-d558b057cd87-root {
    text-align: center;
  }


#s-ba8a380e-8211-44a8-9c50-d558b057cd87.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-ba8a380e-8211-44a8-9c50-d558b057cd87-root {
    text-align: center;
  }


#s-ba8a380e-8211-44a8-9c50-d558b057cd87.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ba8a380e-8211-44a8-9c50-d558b057cd87-root {
    text-align: center;
  }


#s-ba8a380e-8211-44a8-9c50-d558b057cd87.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ba8a380e-8211-44a8-9c50-d558b057cd87-root {
    text-align: center;
  }


#s-ba8a380e-8211-44a8-9c50-d558b057cd87.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-ba8a380e-8211-44a8-9c50-d558b057cd87-root {
    text-align: center;
  }


#s-ba8a380e-8211-44a8-9c50-d558b057cd87.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-8b757c37-f771-439e-8482-0c0cb6dc3eef {
  min-height: 50px;
}








#s-8b757c37-f771-439e-8482-0c0cb6dc3eef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8b757c37-f771-439e-8482-0c0cb6dc3eef.shg-box.shg-c {
  justify-content: center;
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  margin-bottom: 10px;
max-width: 100px;
aspect-ratio: 1/1;
text-align: center;
}
#s-d15348c6-5e33-4d19-a2c3-f5580c72285d:hover {opacity: 0.85 !important;}
#s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  margin: 0 !important;
  overflow: visible;
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 10px;
}

.shg-image-content-margin-container-s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
  /* Add background color handling */
  
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shogun-image-content {
  
    justify-content: center;
  
}

.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image {
  box-sizing: border-box;
}



.s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
      position: relative;
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

@media (min-width: 1200px){#s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  margin: 0 !important;
  overflow: visible;
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
  /* Add background color handling */
  
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shogun-image-content {
  
    justify-content: center;
  
}

.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image {
  box-sizing: border-box;
}



.s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
      position: relative;
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  margin: 0 !important;
  overflow: visible;
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
  /* Add background color handling */
  
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shogun-image-content {
  
    justify-content: center;
  
}

.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image {
  box-sizing: border-box;
}



.s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
      position: relative;
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  margin: 0 !important;
  overflow: visible;
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
  /* Add background color handling */
  
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shogun-image-content {
  
    justify-content: center;
  
}

.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image {
  box-sizing: border-box;
}



.s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
      position: relative;
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (max-width: 767px){#s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  margin: 0 !important;
  overflow: visible;
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
  /* Add background color handling */
  
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shogun-image-content {
  
    justify-content: center;
  
}

.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image {
  box-sizing: border-box;
}



.s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
      position: relative;
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}
#s-4c3189ae-2447-4798-b135-f153d4deb725 {
  border-style: solid;
margin-left: 15%;
margin-right: 15%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 5px;
padding-right: 0%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(244, 244, 244, 1);
border-radius: 5px;
background-color: rgba(244, 244, 244, 0);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(244, 244, 244, 1);
}
#s-4c3189ae-2447-4798-b135-f153d4deb725:hover {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(244, 244, 244, 1) !important;
border-radius: 5px !important;
background-color: rgba(244, 244, 244, 0.15) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}#s-4c3189ae-2447-4798-b135-f153d4deb725:active {background-color: rgba(77, 88, 88, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-4c3189ae-2447-4798-b135-f153d4deb725-root {
    text-align: center;
  }


#s-4c3189ae-2447-4798-b135-f153d4deb725.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-4c3189ae-2447-4798-b135-f153d4deb725-root {
    text-align: center;
  }


#s-4c3189ae-2447-4798-b135-f153d4deb725.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4c3189ae-2447-4798-b135-f153d4deb725-root {
    text-align: center;
  }


#s-4c3189ae-2447-4798-b135-f153d4deb725.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4c3189ae-2447-4798-b135-f153d4deb725-root {
    text-align: center;
  }


#s-4c3189ae-2447-4798-b135-f153d4deb725.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-4c3189ae-2447-4798-b135-f153d4deb725-root {
    text-align: center;
  }


#s-4c3189ae-2447-4798-b135-f153d4deb725.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}

.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty:not(.shopify-section *):not([id^="wistia"]) {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}

/* <-- User Content Animations */

.shogun-form-error-msg,
.shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

@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{animation-duration:1s;animation-duration:var(--animate-duration);animation-fill-mode:both}.animate__animated.animate__infinite{animation-iteration-count:infinite}.animate__animated.animate__repeat-1{animation-iteration-count:1;animation-iteration-count:var(--animate-repeat)}.animate__animated.animate__repeat-2{animation-iteration-count:2;animation-iteration-count:calc(var(--animate-repeat)*2)}.animate__animated.animate__repeat-3{animation-iteration-count:3;animation-iteration-count:calc(var(--animate-repeat)*3)}.animate__animated.animate__delay-1s{animation-delay:1s;animation-delay:var(--animate-delay)}.animate__animated.animate__delay-2s{animation-delay:2s;animation-delay:calc(var(--animate-delay)*2)}.animate__animated.animate__delay-3s{animation-delay:3s;animation-delay:calc(var(--animate-delay)*3)}.animate__animated.animate__delay-4s{animation-delay:4s;animation-delay:calc(var(--animate-delay)*4)}.animate__animated.animate__delay-5s{animation-delay:5s;animation-delay:calc(var(--animate-delay)*5)}.animate__animated.animate__faster{animation-duration:.5s;animation-duration:calc(var(--animate-duration)/2)}.animate__animated.animate__fast{animation-duration:.8s;animation-duration:calc(var(--animate-duration)*0.8)}.animate__animated.animate__slow{animation-duration:2s;animation-duration:calc(var(--animate-duration)*2)}.animate__animated.animate__slower{animation-duration:3s;animation-duration:calc(var(--animate-duration)*3)}@media (prefers-reduced-motion:reduce),print{.animate__animated{animation-duration:1ms!important;transition-duration:1ms!important;animation-iteration-count:1!important}.animate__animated[class*=Out]{opacity:0}}@keyframes bounce{0%,20%,53%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}40%,43%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0) scaleY(.95)}90%{transform:translate3d(0,-4px,0) scaleY(1.02)}}.animate__bounce{animation-name:bounce;transform-origin:center bottom}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.animate__flash{animation-name:flash}@keyframes pulse{0%{transform:scaleX(1)}50%{transform:scale3d(1.05,1.05,1.05)}to{transform:scaleX(1)}}.animate__pulse{animation-name:pulse;animation-timing-function:ease-in-out}@keyframes rubberBand{0%{transform:scaleX(1)}30%{transform:scale3d(1.25,.75,1)}40%{transform:scale3d(.75,1.25,1)}50%{transform:scale3d(1.15,.85,1)}65%{transform:scale3d(.95,1.05,1)}75%{transform:scale3d(1.05,.95,1)}to{transform:scaleX(1)}}.animate__rubberBand{animation-name:rubberBand}@keyframes shakeX{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(-10px,0,0)}20%,40%,60%,80%{transform:translate3d(10px,0,0)}}.animate__shakeX{animation-name:shakeX}@keyframes shakeY{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(0,-10px,0)}20%,40%,60%,80%{transform:translate3d(0,10px,0)}}.animate__shakeY{animation-name:shakeY}@keyframes headShake{0%{transform:translateX(0)}6.5%{transform:translateX(-6px) rotateY(-9deg)}18.5%{transform:translateX(5px) rotateY(7deg)}31.5%{transform:translateX(-3px) rotateY(-5deg)}43.5%{transform:translateX(2px) rotateY(3deg)}50%{transform:translateX(0)}}.animate__headShake{animation-timing-function:ease-in-out;animation-name:headShake}@keyframes swing{20%{transform:rotate(15deg)}40%{transform:rotate(-10deg)}60%{transform:rotate(5deg)}80%{transform:rotate(-5deg)}to{transform:rotate(0deg)}}.animate__swing{transform-origin:top center;animation-name:swing}@keyframes tada{0%{transform:scaleX(1)}10%,20%{transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{transform:scaleX(1)}}.animate__tada{animation-name:tada}@keyframes wobble{0%{transform:translateZ(0)}15%{transform:translate3d(-25%,0,0) rotate(-5deg)}30%{transform:translate3d(20%,0,0) rotate(3deg)}45%{transform:translate3d(-15%,0,0) rotate(-3deg)}60%{transform:translate3d(10%,0,0) rotate(2deg)}75%{transform:translate3d(-5%,0,0) rotate(-1deg)}to{transform:translateZ(0)}}.animate__wobble{animation-name:wobble}@keyframes jello{0%,11.1%,to{transform:translateZ(0)}22.2%{transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{transform:skewX(6.25deg) skewY(6.25deg)}44.4%{transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{transform:skewX(.390625deg) skewY(.390625deg)}88.8%{transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.animate__jello{animation-name:jello;transform-origin:center}@keyframes heartBeat{0%{transform:scale(1)}14%{transform:scale(1.3)}28%{transform:scale(1)}42%{transform:scale(1.3)}70%{transform:scale(1)}}.animate__heartBeat{animation-name:heartBeat;animation-duration:1.3s;animation-duration:calc(var(--animate-duration)*1.3);animation-timing-function:ease-in-out}@keyframes backInDown{0%{transform:translateY(-1200px) scale(.7);opacity:.7}80%{transform:translateY(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInDown{animation-name:backInDown}@keyframes backInLeft{0%{transform:translateX(-2000px) scale(.7);opacity:.7}80%{transform:translateX(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInLeft{animation-name:backInLeft}@keyframes backInRight{0%{transform:translateX(2000px) scale(.7);opacity:.7}80%{transform:translateX(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInRight{animation-name:backInRight}@keyframes backInUp{0%{transform:translateY(1200px) scale(.7);opacity:.7}80%{transform:translateY(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInUp{animation-name:backInUp}@keyframes backOutDown{0%{transform:scale(1);opacity:1}20%{transform:translateY(0) scale(.7);opacity:.7}to{transform:translateY(700px) scale(.7);opacity:.7}}.animate__backOutDown{animation-name:backOutDown}@keyframes backOutLeft{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(.7);opacity:.7}to{transform:translateX(-2000px) scale(.7);opacity:.7}}.animate__backOutLeft{animation-name:backOutLeft}@keyframes backOutRight{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(.7);opacity:.7}to{transform:translateX(2000px) scale(.7);opacity:.7}}.animate__backOutRight{animation-name:backOutRight}@keyframes backOutUp{0%{transform:scale(1);opacity:1}20%{transform:translateY(0) scale(.7);opacity:.7}to{transform:translateY(-700px) scale(.7);opacity:.7}}.animate__backOutUp{animation-name:backOutUp}@keyframes bounceIn{0%,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scaleX(1)}}.animate__bounceIn{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);animation-name:bounceIn}@keyframes bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;transform:translate3d(0,25px,0) scaleY(.9)}75%{transform:translate3d(0,-10px,0) scaleY(.95)}90%{transform:translate3d(0,5px,0) scaleY(.985)}to{transform:translateZ(0)}}.animate__bounceInDown{animation-name:bounceInDown}@keyframes bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;transform:translate3d(25px,0,0) scaleX(1)}75%{transform:translate3d(-10px,0,0) scaleX(.98)}90%{transform:translate3d(5px,0,0) scaleX(.995)}to{transform:translateZ(0)}}.animate__bounceInLeft{animation-name:bounceInLeft}@keyframes bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;transform:translate3d(-25px,0,0) scaleX(1)}75%{transform:translate3d(10px,0,0) scaleX(.98)}90%{transform:translate3d(-5px,0,0) scaleX(.995)}to{transform:translateZ(0)}}.animate__bounceInRight{animation-name:bounceInRight}@keyframes bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;transform:translate3d(0,-20px,0) scaleY(.9)}75%{transform:translate3d(0,10px,0) scaleY(.95)}90%{transform:translate3d(0,-5px,0) scaleY(.985)}to{transform:translateZ(0)}}.animate__bounceInUp{animation-name:bounceInUp}@keyframes bounceOut{20%{transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(.3,.3,.3)}}.animate__bounceOut{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);animation-name:bounceOut}@keyframes bounceOutDown{20%{transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;transform:translate3d(0,2000px,0) scaleY(3)}}.animate__bounceOutDown{animation-name:bounceOutDown}@keyframes bounceOutLeft{20%{opacity:1;transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;transform:translate3d(-2000px,0,0) scaleX(2)}}.animate__bounceOutLeft{animation-name:bounceOutLeft}@keyframes bounceOutRight{20%{opacity:1;transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;transform:translate3d(2000px,0,0) scaleX(2)}}.animate__bounceOutRight{animation-name:bounceOutRight}@keyframes bounceOutUp{20%{transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;transform:translate3d(0,-2000px,0) scaleY(3)}}.animate__bounceOutUp{animation-name:bounceOutUp}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate__fadeIn{animation-name:fadeIn}@keyframes fadeInDown{0%{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInDown{animation-name:fadeInDown}@keyframes fadeInDownBig{0%{opacity:0;transform:translate3d(0,-2000px,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInDownBig{animation-name:fadeInDownBig}@keyframes fadeInLeft{0%{opacity:0;transform:translate3d(-100%,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInLeft{animation-name:fadeInLeft}@keyframes fadeInLeftBig{0%{opacity:0;transform:translate3d(-2000px,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInLeftBig{animation-name:fadeInLeftBig}@keyframes fadeInRight{0%{opacity:0;transform:translate3d(100%,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInRight{animation-name:fadeInRight}@keyframes fadeInRightBig{0%{opacity:0;transform:translate3d(2000px,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInRightBig{animation-name:fadeInRightBig}@keyframes fadeInUp{0%{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInUp{animation-name:fadeInUp}@keyframes fadeInUpBig{0%{opacity:0;transform:translate3d(0,2000px,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInUpBig{animation-name:fadeInUpBig}@keyframes fadeInTopLeft{0%{opacity:0;transform:translate3d(-100%,-100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInTopLeft{animation-name:fadeInTopLeft}@keyframes fadeInTopRight{0%{opacity:0;transform:translate3d(100%,-100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInTopRight{animation-name:fadeInTopRight}@keyframes fadeInBottomLeft{0%{opacity:0;transform:translate3d(-100%,100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInBottomLeft{animation-name:fadeInBottomLeft}@keyframes fadeInBottomRight{0%{opacity:0;transform:translate3d(100%,100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInBottomRight{animation-name:fadeInBottomRight}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.animate__fadeOut{animation-name:fadeOut}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;transform:translate3d(0,100%,0)}}.animate__fadeOutDown{animation-name:fadeOutDown}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,2000px,0)}}.animate__fadeOutDownBig{animation-name:fadeOutDownBig}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;transform:translate3d(-100%,0,0)}}.animate__fadeOutLeft{animation-name:fadeOutLeft}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;transform:translate3d(-2000px,0,0)}}.animate__fadeOutLeftBig{animation-name:fadeOutLeftBig}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0)}}.animate__fadeOutRight{animation-name:fadeOutRight}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;transform:translate3d(2000px,0,0)}}.animate__fadeOutRightBig{animation-name:fadeOutRightBig}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;transform:translate3d(0,-100%,0)}}.animate__fadeOutUp{animation-name:fadeOutUp}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,-2000px,0)}}.animate__fadeOutUpBig{animation-name:fadeOutUpBig}@keyframes fadeOutTopLeft{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(-100%,-100%,0)}}.animate__fadeOutTopLeft{animation-name:fadeOutTopLeft}@keyframes fadeOutTopRight{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(100%,-100%,0)}}.animate__fadeOutTopRight{animation-name:fadeOutTopRight}@keyframes fadeOutBottomRight{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(100%,100%,0)}}.animate__fadeOutBottomRight{animation-name:fadeOutBottomRight}@keyframes fadeOutBottomLeft{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(-100%,100%,0)}}.animate__fadeOutBottomLeft{animation-name:fadeOutBottomLeft}@keyframes flip{0%{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);animation-timing-function:ease-out}40%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);animation-timing-function:ease-out}50%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);animation-timing-function:ease-in}80%{transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);animation-timing-function:ease-in}to{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);animation-timing-function:ease-in}}.animate__animated.animate__flip{backface-visibility:visible;animation-name:flip}@keyframes flipInX{0%{transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}.animate__flipInX{backface-visibility:visible!important;animation-name:flipInX}@keyframes flipInY{0%{transform:perspective(400px) rotateY(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateY(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateY(10deg);opacity:1}80%{transform:perspective(400px) rotateY(-5deg)}to{transform:perspective(400px)}}.animate__flipInY{backface-visibility:visible!important;animation-name:flipInY}@keyframes flipOutX{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateX(-20deg);opacity:1}to{transform:perspective(400px) rotateX(90deg);opacity:0}}.animate__flipOutX{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);animation-name:flipOutX;backface-visibility:visible!important}@keyframes flipOutY{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateY(-15deg);opacity:1}to{transform:perspective(400px) rotateY(90deg);opacity:0}}.animate__flipOutY{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);backface-visibility:visible!important;animation-name:flipOutY}@keyframes lightSpeedInRight{0%{transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{transform:skewX(20deg);opacity:1}80%{transform:skewX(-5deg)}to{transform:translateZ(0)}}.animate__lightSpeedInRight{animation-name:lightSpeedInRight;animation-timing-function:ease-out}@keyframes lightSpeedInLeft{0%{transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{transform:skewX(-20deg);opacity:1}80%{transform:skewX(5deg)}to{transform:translateZ(0)}}.animate__lightSpeedInLeft{animation-name:lightSpeedInLeft;animation-timing-function:ease-out}@keyframes lightSpeedOutRight{0%{opacity:1}to{transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.animate__lightSpeedOutRight{animation-name:lightSpeedOutRight;animation-timing-function:ease-in}@keyframes lightSpeedOutLeft{0%{opacity:1}to{transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}.animate__lightSpeedOutLeft{animation-name:lightSpeedOutLeft;animation-timing-function:ease-in}@keyframes rotateIn{0%{transform:rotate(-200deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateIn{animation-name:rotateIn;transform-origin:center}@keyframes rotateInDownLeft{0%{transform:rotate(-45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInDownLeft{animation-name:rotateInDownLeft;transform-origin:left bottom}@keyframes rotateInDownRight{0%{transform:rotate(45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInDownRight{animation-name:rotateInDownRight;transform-origin:right bottom}@keyframes rotateInUpLeft{0%{transform:rotate(45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInUpLeft{animation-name:rotateInUpLeft;transform-origin:left bottom}@keyframes rotateInUpRight{0%{transform:rotate(-90deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInUpRight{animation-name:rotateInUpRight;transform-origin:right bottom}@keyframes rotateOut{0%{opacity:1}to{transform:rotate(200deg);opacity:0}}.animate__rotateOut{animation-name:rotateOut;transform-origin:center}@keyframes rotateOutDownLeft{0%{opacity:1}to{transform:rotate(45deg);opacity:0}}.animate__rotateOutDownLeft{animation-name:rotateOutDownLeft;transform-origin:left bottom}@keyframes rotateOutDownRight{0%{opacity:1}to{transform:rotate(-45deg);opacity:0}}.animate__rotateOutDownRight{animation-name:rotateOutDownRight;transform-origin:right bottom}@keyframes rotateOutUpLeft{0%{opacity:1}to{transform:rotate(-45deg);opacity:0}}.animate__rotateOutUpLeft{animation-name:rotateOutUpLeft;transform-origin:left bottom}@keyframes rotateOutUpRight{0%{opacity:1}to{transform:rotate(90deg);opacity:0}}.animate__rotateOutUpRight{animation-name:rotateOutUpRight;transform-origin:right bottom}@keyframes hinge{0%{animation-timing-function:ease-in-out}20%,60%{transform:rotate(80deg);animation-timing-function:ease-in-out}40%,80%{transform:rotate(60deg);animation-timing-function:ease-in-out;opacity:1}to{transform:translate3d(0,700px,0);opacity:0}}.animate__hinge{animation-duration:2s;animation-duration:calc(var(--animate-duration)*2);animation-name:hinge;transform-origin:top left}@keyframes jackInTheBox{0%{opacity:0;transform:scale(.1) rotate(30deg);transform-origin:center bottom}50%{transform:rotate(-10deg)}70%{transform:rotate(3deg)}to{opacity:1;transform:scale(1)}}.animate__jackInTheBox{animation-name:jackInTheBox}@keyframes rollIn{0%{opacity:0;transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;transform:translateZ(0)}}.animate__rollIn{animation-name:rollIn}@keyframes rollOut{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0) rotate(120deg)}}.animate__rollOut{animation-name:rollOut}@keyframes zoomIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}.animate__zoomIn{animation-name:zoomIn}@keyframes zoomInDown{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInDown{animation-name:zoomInDown}@keyframes zoomInLeft{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInLeft{animation-name:zoomInLeft}@keyframes zoomInRight{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInRight{animation-name:zoomInRight}@keyframes zoomInUp{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInUp{animation-name:zoomInUp}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.animate__zoomOut{animation-name:zoomOut}@keyframes zoomOutDown{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutDown{animation-name:zoomOutDown;transform-origin:center bottom}@keyframes zoomOutLeft{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(-2000px,0,0)}}.animate__zoomOutLeft{animation-name:zoomOutLeft;transform-origin:left center}@keyframes zoomOutRight{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(2000px,0,0)}}.animate__zoomOutRight{animation-name:zoomOutRight;transform-origin:right center}@keyframes zoomOutUp{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutUp{animation-name:zoomOutUp;transform-origin:center bottom}@keyframes slideInDown{0%{transform:translate3d(0,-100%,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInDown{animation-name:slideInDown}@keyframes slideInLeft{0%{transform:translate3d(-100%,0,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInLeft{animation-name:slideInLeft}@keyframes slideInRight{0%{transform:translate3d(100%,0,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInRight{animation-name:slideInRight}@keyframes slideInUp{0%{transform:translate3d(0,100%,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInUp{animation-name:slideInUp}@keyframes slideOutDown{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,100%,0)}}.animate__slideOutDown{animation-name:slideOutDown}@keyframes slideOutLeft{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(-100%,0,0)}}.animate__slideOutLeft{animation-name:slideOutLeft}@keyframes slideOutRight{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(100%,0,0)}}.animate__slideOutRight{animation-name:slideOutRight}@keyframes slideOutUp{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,-100%,0)}}.animate__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;
  }
}
