.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-eb52f313-77c9-44f2-a41c-9709e5f12142 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-eb52f313-77c9-44f2-a41c-9709e5f12142 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-eb52f313-77c9-44f2-a41c-9709e5f12142.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-f96ba2be-9927-4b68-93e7-a8c9fefec241 {
  margin-left: 0%;
margin-right: 0%;
padding-left: 8%;
padding-right: 8%;
}
@media (max-width: 767px){#s-f96ba2be-9927-4b68-93e7-a8c9fefec241 {
  display: none;
}
#s-f96ba2be-9927-4b68-93e7-a8c9fefec241, #wrap-s-f96ba2be-9927-4b68-93e7-a8c9fefec241, #wrap-content-s-f96ba2be-9927-4b68-93e7-a8c9fefec241 { display: none !important; }}
@media (min-width: 0px) {
[id="s-f96ba2be-9927-4b68-93e7-a8c9fefec241"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-f96ba2be-9927-4b68-93e7-a8c9fefec241"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f96ba2be-9927-4b68-93e7-a8c9fefec241"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f96ba2be-9927-4b68-93e7-a8c9fefec241"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 0.0px);
}

}

.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-c30e55ff-4654-47b8-9496-68bda8f7e01e {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
max-width: 125px;
text-align: center;
}

#s-c30e55ff-4654-47b8-9496-68bda8f7e01e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c30e55ff-4654-47b8-9496-68bda8f7e01e-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-c30e55ff-4654-47b8-9496-68bda8f7e01e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 20px;
  margin-bottom: 15px;
}

#s-c30e55ff-4654-47b8-9496-68bda8f7e01e .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-c30e55ff-4654-47b8-9496-68bda8f7e01e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c30e55ff-4654-47b8-9496-68bda8f7e01e img.shogun-image {
  width: 100%;
  
  
  max-width: 125px;

  /* 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-c30e55ff-4654-47b8-9496-68bda8f7e01e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c30e55ff-4654-47b8-9496-68bda8f7e01e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c30e55ff-4654-47b8-9496-68bda8f7e01e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c30e55ff-4654-47b8-9496-68bda8f7e01e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-c30e55ff-4654-47b8-9496-68bda8f7e01e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c30e55ff-4654-47b8-9496-68bda8f7e01e-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-c30e55ff-4654-47b8-9496-68bda8f7e01e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c30e55ff-4654-47b8-9496-68bda8f7e01e .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-c30e55ff-4654-47b8-9496-68bda8f7e01e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c30e55ff-4654-47b8-9496-68bda8f7e01e 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-c30e55ff-4654-47b8-9496-68bda8f7e01e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c30e55ff-4654-47b8-9496-68bda8f7e01e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c30e55ff-4654-47b8-9496-68bda8f7e01e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c30e55ff-4654-47b8-9496-68bda8f7e01e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-c30e55ff-4654-47b8-9496-68bda8f7e01e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c30e55ff-4654-47b8-9496-68bda8f7e01e-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-c30e55ff-4654-47b8-9496-68bda8f7e01e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c30e55ff-4654-47b8-9496-68bda8f7e01e .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-c30e55ff-4654-47b8-9496-68bda8f7e01e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c30e55ff-4654-47b8-9496-68bda8f7e01e 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-c30e55ff-4654-47b8-9496-68bda8f7e01e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c30e55ff-4654-47b8-9496-68bda8f7e01e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c30e55ff-4654-47b8-9496-68bda8f7e01e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c30e55ff-4654-47b8-9496-68bda8f7e01e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-c30e55ff-4654-47b8-9496-68bda8f7e01e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c30e55ff-4654-47b8-9496-68bda8f7e01e-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-c30e55ff-4654-47b8-9496-68bda8f7e01e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c30e55ff-4654-47b8-9496-68bda8f7e01e .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-c30e55ff-4654-47b8-9496-68bda8f7e01e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c30e55ff-4654-47b8-9496-68bda8f7e01e 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-c30e55ff-4654-47b8-9496-68bda8f7e01e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c30e55ff-4654-47b8-9496-68bda8f7e01e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c30e55ff-4654-47b8-9496-68bda8f7e01e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c30e55ff-4654-47b8-9496-68bda8f7e01e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-c30e55ff-4654-47b8-9496-68bda8f7e01e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c30e55ff-4654-47b8-9496-68bda8f7e01e-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-c30e55ff-4654-47b8-9496-68bda8f7e01e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c30e55ff-4654-47b8-9496-68bda8f7e01e .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-c30e55ff-4654-47b8-9496-68bda8f7e01e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c30e55ff-4654-47b8-9496-68bda8f7e01e 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-c30e55ff-4654-47b8-9496-68bda8f7e01e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c30e55ff-4654-47b8-9496-68bda8f7e01e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c30e55ff-4654-47b8-9496-68bda8f7e01e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c30e55ff-4654-47b8-9496-68bda8f7e01e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
.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-57896bf9-9a52-41e8-977a-71c3decd14f5 {
  margin-top: 20px;
margin-left: 21%;
margin-right: 21%;
}

#s-57896bf9-9a52-41e8-977a-71c3decd14f5 .shg-proportional-font-size,
#s-57896bf9-9a52-41e8-977a-71c3decd14f5 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-60beddad-6124-4b6d-81f5-b6d18e204b4a {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
}

#s-60beddad-6124-4b6d-81f5-b6d18e204b4a .shg-proportional-font-size,
#s-60beddad-6124-4b6d-81f5-b6d18e204b4a .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-007de8f6-f6b3-4d70-95bf-7ae558948dde {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
}

#s-007de8f6-f6b3-4d70-95bf-7ae558948dde .shg-proportional-font-size,
#s-007de8f6-f6b3-4d70-95bf-7ae558948dde .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-86901083-d0f1-420d-bb83-4f3edb6ce58c {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgb(0, 172, 78);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-86901083-d0f1-420d-bb83-4f3edb6ce58c:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-86901083-d0f1-420d-bb83-4f3edb6ce58c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-86901083-d0f1-420d-bb83-4f3edb6ce58c-root {
    text-align: center;
  }


#s-86901083-d0f1-420d-bb83-4f3edb6ce58c.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-86901083-d0f1-420d-bb83-4f3edb6ce58c-root {
    text-align: center;
  }


#s-86901083-d0f1-420d-bb83-4f3edb6ce58c.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-86901083-d0f1-420d-bb83-4f3edb6ce58c-root {
    text-align: center;
  }


#s-86901083-d0f1-420d-bb83-4f3edb6ce58c.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-86901083-d0f1-420d-bb83-4f3edb6ce58c-root {
    text-align: center;
  }


#s-86901083-d0f1-420d-bb83-4f3edb6ce58c.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-86901083-d0f1-420d-bb83-4f3edb6ce58c-root {
    text-align: center;
  }


#s-86901083-d0f1-420d-bb83-4f3edb6ce58c.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-5f40f1ce-b623-459d-889e-37ca88f8da06 {
  margin-left: 4%;
margin-right: 4%;
text-align: left;
}
@media (min-width: 1200px){#s-5f40f1ce-b623-459d-889e-37ca88f8da06 {
  display: none;
}
#s-5f40f1ce-b623-459d-889e-37ca88f8da06, #wrap-s-5f40f1ce-b623-459d-889e-37ca88f8da06, #wrap-content-s-5f40f1ce-b623-459d-889e-37ca88f8da06 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5f40f1ce-b623-459d-889e-37ca88f8da06 {
  display: none;
}
#s-5f40f1ce-b623-459d-889e-37ca88f8da06, #wrap-s-5f40f1ce-b623-459d-889e-37ca88f8da06, #wrap-content-s-5f40f1ce-b623-459d-889e-37ca88f8da06 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5f40f1ce-b623-459d-889e-37ca88f8da06 {
  display: none;
}
#s-5f40f1ce-b623-459d-889e-37ca88f8da06, #wrap-s-5f40f1ce-b623-459d-889e-37ca88f8da06, #wrap-content-s-5f40f1ce-b623-459d-889e-37ca88f8da06 { display: none !important; }}
#s-76579f88-cc89-4824-8963-9fb162fbb6cd {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(0, 172, 78, 1);
}








#s-76579f88-cc89-4824-8963-9fb162fbb6cd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-76579f88-cc89-4824-8963-9fb162fbb6cd.shg-box.shg-c {
  justify-content: center;
}

#s-b193d855-dcf0-493e-bfa8-b411dc68a576 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-bed0211f-e180-43f7-87b4-a398876a8069 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-bed0211f-e180-43f7-87b4-a398876a8069 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bed0211f-e180-43f7-87b4-a398876a8069.shg-box.shg-c {
  justify-content: center;
}

#s-1080258f-83cf-4dde-88a6-14a73100d9e1 {
  background-repeat: no-repeat;
margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-1080258f-83cf-4dde-88a6-14a73100d9e1 {
  display: none;
}
#s-1080258f-83cf-4dde-88a6-14a73100d9e1, #wrap-s-1080258f-83cf-4dde-88a6-14a73100d9e1, #wrap-content-s-1080258f-83cf-4dde-88a6-14a73100d9e1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1080258f-83cf-4dde-88a6-14a73100d9e1 {
  display: none;
}
#s-1080258f-83cf-4dde-88a6-14a73100d9e1, #wrap-s-1080258f-83cf-4dde-88a6-14a73100d9e1, #wrap-content-s-1080258f-83cf-4dde-88a6-14a73100d9e1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1080258f-83cf-4dde-88a6-14a73100d9e1 {
  display: none;
}
#s-1080258f-83cf-4dde-88a6-14a73100d9e1, #wrap-s-1080258f-83cf-4dde-88a6-14a73100d9e1, #wrap-content-s-1080258f-83cf-4dde-88a6-14a73100d9e1 { display: none !important; }}
#s-1080258f-83cf-4dde-88a6-14a73100d9e1 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZGE1MmY0NjAtOGI2ZC00YzAwLTk5ODAtMTBiOTBjODRmNjM3IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZmZmZmZmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZjZmNWYyO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNkYTUyZjQ2MC04YjZkLTRjMDAtOTk4MC0xMGI5MGM4NGY2MzcpIi8+PC9zdmc+);
}








#s-1080258f-83cf-4dde-88a6-14a73100d9e1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1080258f-83cf-4dde-88a6-14a73100d9e1.shg-box.shg-c {
  justify-content: center;
}

#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514 {
  background-repeat: no-repeat;
background-size: cover;
margin-left: auto;
margin-right: auto;
min-height: 50px;
background-position: center center;
}
@media (min-width: 1200px){#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514 {
  display: none;
}
#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514, #wrap-s-2d9b2fae-e90f-4bbc-afbf-531f3f886514, #wrap-content-s-2d9b2fae-e90f-4bbc-afbf-531f3f886514 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514 {
  display: none;
}
#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514, #wrap-s-2d9b2fae-e90f-4bbc-afbf-531f3f886514, #wrap-content-s-2d9b2fae-e90f-4bbc-afbf-531f3f886514 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514 {
  display: none;
}
#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514, #wrap-s-2d9b2fae-e90f-4bbc-afbf-531f3f886514, #wrap-content-s-2d9b2fae-e90f-4bbc-afbf-531f3f886514 { display: none !important; }}@media (max-width: 767px){#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514 {
  
}
}
#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514 {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514 {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/480x/);
}
#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514 {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/960x/);
}
#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514 {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/768x/);
}
#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514 {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/1536x/);
}
#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514 {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/1024x/);
}
#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514 {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/2048x/);
}
#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514 {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/1200x/);
}
#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514 {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/2048x/);
}
#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2d9b2fae-e90f-4bbc-afbf-531f3f886514.shg-box.shg-c {
  justify-content: center;
}

#s-01ae4ee1-f1b5-40f0-ac2c-cbb005090676 {
  margin-left: 15%;
margin-right: 15%;
padding-bottom: 25px;
}
@media (min-width: 1200px){#s-01ae4ee1-f1b5-40f0-ac2c-cbb005090676 {
  margin-left: 20%;
margin-right: 20%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-01ae4ee1-f1b5-40f0-ac2c-cbb005090676 {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-01ae4ee1-f1b5-40f0-ac2c-cbb005090676 {
  margin-left: 3%;
margin-right: 3%;
}
}
@media (min-width: 0px) {
[id="s-01ae4ee1-f1b5-40f0-ac2c-cbb005090676"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-01ae4ee1-f1b5-40f0-ac2c-cbb005090676"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-01ae4ee1-f1b5-40f0-ac2c-cbb005090676"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-01ae4ee1-f1b5-40f0-ac2c-cbb005090676"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-01ae4ee1-f1b5-40f0-ac2c-cbb005090676"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-2cfe37c4-8677-4bf3-9ff7-d0903591af5a {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
}
@media (max-width: 767px){#s-2cfe37c4-8677-4bf3-9ff7-d0903591af5a {
  display: none;
}
#s-2cfe37c4-8677-4bf3-9ff7-d0903591af5a, #wrap-s-2cfe37c4-8677-4bf3-9ff7-d0903591af5a, #wrap-content-s-2cfe37c4-8677-4bf3-9ff7-d0903591af5a { display: none !important; }}
#s-2cfe37c4-8677-4bf3-9ff7-d0903591af5a .shg-proportional-font-size,
#s-2cfe37c4-8677-4bf3-9ff7-d0903591af5a .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}
@media (min-width: 992px) and (max-width: 1199px){#s-2cfe37c4-8677-4bf3-9ff7-d0903591af5a .shg-proportional-font-size,
#s-2cfe37c4-8677-4bf3-9ff7-d0903591af5a .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 96;
    
    
    font-size: 0.96em;
  
}
}@media (max-width: 767px){#s-2cfe37c4-8677-4bf3-9ff7-d0903591af5a .shg-proportional-font-size,
#s-2cfe37c4-8677-4bf3-9ff7-d0903591af5a .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}
}
#s-dcb7919c-f9ea-4c5c-8cdf-839e8f747f2f {
  margin-top: -35px;
margin-left: 1%;
margin-right: auto;
}

#s-dcb7919c-f9ea-4c5c-8cdf-839e8f747f2f .shg-proportional-font-size,
#s-dcb7919c-f9ea-4c5c-8cdf-839e8f747f2f .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-65d7d9e0-c175-442a-b932-adccd3091543 {
  margin-left: auto;
margin-right: auto;
}

#s-65d7d9e0-c175-442a-b932-adccd3091543 .shg-proportional-font-size,
#s-65d7d9e0-c175-442a-b932-adccd3091543 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-4a1556ee-024c-4734-874f-3a423acec4b0 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 172, 78, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-4a1556ee-024c-4734-874f-3a423acec4b0:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-4a1556ee-024c-4734-874f-3a423acec4b0:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-4a1556ee-024c-4734-874f-3a423acec4b0-root {
    text-align: left;
  }


#s-4a1556ee-024c-4734-874f-3a423acec4b0.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-4a1556ee-024c-4734-874f-3a423acec4b0-root {
    text-align: left;
  }


#s-4a1556ee-024c-4734-874f-3a423acec4b0.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4a1556ee-024c-4734-874f-3a423acec4b0-root {
    text-align: left;
  }


#s-4a1556ee-024c-4734-874f-3a423acec4b0.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4a1556ee-024c-4734-874f-3a423acec4b0-root {
    text-align: left;
  }


#s-4a1556ee-024c-4734-874f-3a423acec4b0.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-4a1556ee-024c-4734-874f-3a423acec4b0-root {
    text-align: left;
  }


#s-4a1556ee-024c-4734-874f-3a423acec4b0.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-6465fde8-4a4c-43fb-90ca-16934fa6d112 {
  margin-top: 25px;
margin-left: 0%;
margin-right: 0%;
}
@media (min-width: 1200px){#s-6465fde8-4a4c-43fb-90ca-16934fa6d112 {
  display: none;
}
#s-6465fde8-4a4c-43fb-90ca-16934fa6d112, #wrap-s-6465fde8-4a4c-43fb-90ca-16934fa6d112, #wrap-content-s-6465fde8-4a4c-43fb-90ca-16934fa6d112 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6465fde8-4a4c-43fb-90ca-16934fa6d112 {
  display: none;
}
#s-6465fde8-4a4c-43fb-90ca-16934fa6d112, #wrap-s-6465fde8-4a4c-43fb-90ca-16934fa6d112, #wrap-content-s-6465fde8-4a4c-43fb-90ca-16934fa6d112 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6465fde8-4a4c-43fb-90ca-16934fa6d112 {
  display: none;
}
#s-6465fde8-4a4c-43fb-90ca-16934fa6d112, #wrap-s-6465fde8-4a4c-43fb-90ca-16934fa6d112, #wrap-content-s-6465fde8-4a4c-43fb-90ca-16934fa6d112 { display: none !important; }}@media (max-width: 767px){#s-6465fde8-4a4c-43fb-90ca-16934fa6d112 {
  margin-left: -5%;
}
}
@media (min-width: 0px) {
[id="s-6465fde8-4a4c-43fb-90ca-16934fa6d112"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-6465fde8-4a4c-43fb-90ca-16934fa6d112"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-6465fde8-4a4c-43fb-90ca-16934fa6d112"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-6465fde8-4a4c-43fb-90ca-16934fa6d112"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-6465fde8-4a4c-43fb-90ca-16934fa6d112"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-6465fde8-4a4c-43fb-90ca-16934fa6d112"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-6465fde8-4a4c-43fb-90ca-16934fa6d112"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-8647465a-3282-4491-a3d7-9b4618305636 {
  margin-top: 5px;
margin-left: auto;
margin-right: auto;
max-width: 25px;
text-align: center;
}
@media (max-width: 767px){#s-8647465a-3282-4491-a3d7-9b4618305636 {
  margin-top: 10px;
}
}
#s-8647465a-3282-4491-a3d7-9b4618305636 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8647465a-3282-4491-a3d7-9b4618305636-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-8647465a-3282-4491-a3d7-9b4618305636 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 5px;
  
}

#s-8647465a-3282-4491-a3d7-9b4618305636 .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-8647465a-3282-4491-a3d7-9b4618305636 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8647465a-3282-4491-a3d7-9b4618305636 img.shogun-image {
  width: 100%;
  
  
  max-width: 25px;

  /* 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-8647465a-3282-4491-a3d7-9b4618305636 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8647465a-3282-4491-a3d7-9b4618305636.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8647465a-3282-4491-a3d7-9b4618305636.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8647465a-3282-4491-a3d7-9b4618305636.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-8647465a-3282-4491-a3d7-9b4618305636 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8647465a-3282-4491-a3d7-9b4618305636-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-8647465a-3282-4491-a3d7-9b4618305636 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8647465a-3282-4491-a3d7-9b4618305636 .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-8647465a-3282-4491-a3d7-9b4618305636 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8647465a-3282-4491-a3d7-9b4618305636 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-8647465a-3282-4491-a3d7-9b4618305636 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8647465a-3282-4491-a3d7-9b4618305636.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8647465a-3282-4491-a3d7-9b4618305636.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8647465a-3282-4491-a3d7-9b4618305636.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-8647465a-3282-4491-a3d7-9b4618305636 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8647465a-3282-4491-a3d7-9b4618305636-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-8647465a-3282-4491-a3d7-9b4618305636 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8647465a-3282-4491-a3d7-9b4618305636 .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-8647465a-3282-4491-a3d7-9b4618305636 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8647465a-3282-4491-a3d7-9b4618305636 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-8647465a-3282-4491-a3d7-9b4618305636 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8647465a-3282-4491-a3d7-9b4618305636.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8647465a-3282-4491-a3d7-9b4618305636.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8647465a-3282-4491-a3d7-9b4618305636.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-8647465a-3282-4491-a3d7-9b4618305636 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8647465a-3282-4491-a3d7-9b4618305636-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-8647465a-3282-4491-a3d7-9b4618305636 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8647465a-3282-4491-a3d7-9b4618305636 .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-8647465a-3282-4491-a3d7-9b4618305636 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8647465a-3282-4491-a3d7-9b4618305636 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-8647465a-3282-4491-a3d7-9b4618305636 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8647465a-3282-4491-a3d7-9b4618305636.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8647465a-3282-4491-a3d7-9b4618305636.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8647465a-3282-4491-a3d7-9b4618305636.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-8647465a-3282-4491-a3d7-9b4618305636 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8647465a-3282-4491-a3d7-9b4618305636-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-8647465a-3282-4491-a3d7-9b4618305636 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 10px;
  
}

#s-8647465a-3282-4491-a3d7-9b4618305636 .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-8647465a-3282-4491-a3d7-9b4618305636 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8647465a-3282-4491-a3d7-9b4618305636 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-8647465a-3282-4491-a3d7-9b4618305636 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8647465a-3282-4491-a3d7-9b4618305636.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8647465a-3282-4491-a3d7-9b4618305636.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8647465a-3282-4491-a3d7-9b4618305636.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-9afda165-45ad-4acb-b15d-698c11a67fcf {
  margin-left: 0%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
}
@media (max-width: 767px){#s-9afda165-45ad-4acb-b15d-698c11a67fcf {
  margin-left: -20%;
margin-right: 18%;
}
}
#s-9afda165-45ad-4acb-b15d-698c11a67fcf .shg-proportional-font-size,
#s-9afda165-45ad-4acb-b15d-698c11a67fcf .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
max-width: 25px;
text-align: center;
}

#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b-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-12ad36ab-2842-40ba-ae0d-cdc70129d40b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 10px;
  
}

#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b .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-12ad36ab-2842-40ba-ae0d-cdc70129d40b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b img.shogun-image {
  width: 100%;
  
  
  max-width: 25px;

  /* 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-12ad36ab-2842-40ba-ae0d-cdc70129d40b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-12ad36ab-2842-40ba-ae0d-cdc70129d40b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12ad36ab-2842-40ba-ae0d-cdc70129d40b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b-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-12ad36ab-2842-40ba-ae0d-cdc70129d40b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b .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-12ad36ab-2842-40ba-ae0d-cdc70129d40b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b 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-12ad36ab-2842-40ba-ae0d-cdc70129d40b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-12ad36ab-2842-40ba-ae0d-cdc70129d40b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12ad36ab-2842-40ba-ae0d-cdc70129d40b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b-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-12ad36ab-2842-40ba-ae0d-cdc70129d40b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b .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-12ad36ab-2842-40ba-ae0d-cdc70129d40b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b 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-12ad36ab-2842-40ba-ae0d-cdc70129d40b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-12ad36ab-2842-40ba-ae0d-cdc70129d40b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12ad36ab-2842-40ba-ae0d-cdc70129d40b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b-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-12ad36ab-2842-40ba-ae0d-cdc70129d40b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b .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-12ad36ab-2842-40ba-ae0d-cdc70129d40b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b 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-12ad36ab-2842-40ba-ae0d-cdc70129d40b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-12ad36ab-2842-40ba-ae0d-cdc70129d40b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12ad36ab-2842-40ba-ae0d-cdc70129d40b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b-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-12ad36ab-2842-40ba-ae0d-cdc70129d40b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b .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-12ad36ab-2842-40ba-ae0d-cdc70129d40b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b 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-12ad36ab-2842-40ba-ae0d-cdc70129d40b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-12ad36ab-2842-40ba-ae0d-cdc70129d40b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12ad36ab-2842-40ba-ae0d-cdc70129d40b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12ad36ab-2842-40ba-ae0d-cdc70129d40b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-84b88ffa-7081-4102-b85f-f5cc1c6635d9 {
  margin-left: 0%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
}
@media (max-width: 767px){#s-84b88ffa-7081-4102-b85f-f5cc1c6635d9 {
  margin-left: -30%;
}
}
#s-84b88ffa-7081-4102-b85f-f5cc1c6635d9 .shg-proportional-font-size,
#s-84b88ffa-7081-4102-b85f-f5cc1c6635d9 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
max-width: 25px;
text-align: center;
}

#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c-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-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 10px;
  
}

#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c .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-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c img.shogun-image {
  width: 100%;
  
  
  max-width: 25px;

  /* 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-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c-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-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c .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-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c 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-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c-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-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c .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-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c 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-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c-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-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c .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-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c 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-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c-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-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c .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-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c 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-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d272ef7b-0702-4f4f-b1b5-5d6b55edbd6c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-06825034-8b09-4ca4-9109-b27ec2886cfe {
  margin-left: 0%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
}
@media (max-width: 767px){#s-06825034-8b09-4ca4-9109-b27ec2886cfe {
  margin-left: -27%;
margin-right: 0%;
}
}
#s-06825034-8b09-4ca4-9109-b27ec2886cfe .shg-proportional-font-size,
#s-06825034-8b09-4ca4-9109-b27ec2886cfe .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-c40fdac4-1436-4c2d-96ae-0dbc5c27d898 {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-c40fdac4-1436-4c2d-96ae-0dbc5c27d898 {
  margin-top: 0px;
}
}







#s-c40fdac4-1436-4c2d-96ae-0dbc5c27d898 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c40fdac4-1436-4c2d-96ae-0dbc5c27d898.shg-box.shg-c {
  justify-content: center;
}

#s-29dbe8a4-04dd-41ea-8251-ad70fee5c357 {
  margin-left: auto;
margin-right: auto;
padding-left: 1%;
}
@media (max-width: 767px){#s-29dbe8a4-04dd-41ea-8251-ad70fee5c357 {
  margin-top: 25px;
}
}
#s-29dbe8a4-04dd-41ea-8251-ad70fee5c357 .shg-proportional-font-size,
#s-29dbe8a4-04dd-41ea-8251-ad70fee5c357 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-e2afbe21-6141-4bc9-badb-a6d558d72ba3 {
  margin-top: -16px;
margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-e2afbe21-6141-4bc9-badb-a6d558d72ba3 {
  display: none;
}
#s-e2afbe21-6141-4bc9-badb-a6d558d72ba3, #wrap-s-e2afbe21-6141-4bc9-badb-a6d558d72ba3, #wrap-content-s-e2afbe21-6141-4bc9-badb-a6d558d72ba3 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e2afbe21-6141-4bc9-badb-a6d558d72ba3 {
  display: none;
}
#s-e2afbe21-6141-4bc9-badb-a6d558d72ba3, #wrap-s-e2afbe21-6141-4bc9-badb-a6d558d72ba3, #wrap-content-s-e2afbe21-6141-4bc9-badb-a6d558d72ba3 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e2afbe21-6141-4bc9-badb-a6d558d72ba3 {
  display: none;
}
#s-e2afbe21-6141-4bc9-badb-a6d558d72ba3, #wrap-s-e2afbe21-6141-4bc9-badb-a6d558d72ba3, #wrap-content-s-e2afbe21-6141-4bc9-badb-a6d558d72ba3 { display: none !important; }}@media (max-width: 767px){#s-e2afbe21-6141-4bc9-badb-a6d558d72ba3 {
  
}
}
#s-e2afbe21-6141-4bc9-badb-a6d558d72ba3 .shg-proportional-font-size,
#s-e2afbe21-6141-4bc9-badb-a6d558d72ba3 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}
@media (max-width: 767px){#s-e2afbe21-6141-4bc9-badb-a6d558d72ba3 .shg-proportional-font-size,
#s-e2afbe21-6141-4bc9-badb-a6d558d72ba3 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}
}
#s-013e9e08-3f0c-4978-bdf7-3981b1e7d919 {
  margin-top: -13px;
margin-left: -4%;
margin-bottom: 0px;
margin-right: -4%;
text-align: left;
}
@media (min-width: 1200px){#s-013e9e08-3f0c-4978-bdf7-3981b1e7d919 {
  display: none;
}
#s-013e9e08-3f0c-4978-bdf7-3981b1e7d919, #wrap-s-013e9e08-3f0c-4978-bdf7-3981b1e7d919, #wrap-content-s-013e9e08-3f0c-4978-bdf7-3981b1e7d919 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-013e9e08-3f0c-4978-bdf7-3981b1e7d919 {
  display: none;
}
#s-013e9e08-3f0c-4978-bdf7-3981b1e7d919, #wrap-s-013e9e08-3f0c-4978-bdf7-3981b1e7d919, #wrap-content-s-013e9e08-3f0c-4978-bdf7-3981b1e7d919 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-013e9e08-3f0c-4978-bdf7-3981b1e7d919 {
  display: none;
}
#s-013e9e08-3f0c-4978-bdf7-3981b1e7d919, #wrap-s-013e9e08-3f0c-4978-bdf7-3981b1e7d919, #wrap-content-s-013e9e08-3f0c-4978-bdf7-3981b1e7d919 { display: none !important; }}@media (max-width: 767px){#s-013e9e08-3f0c-4978-bdf7-3981b1e7d919 {
  
}
}
#s-7ef77d9a-737c-43f3-bacb-d469b0423eb7 {
  background-repeat: no-repeat;
background-size: cover;
margin-left: auto;
margin-right: auto;
padding-bottom: 30px;
min-height: 50px;
background-position: center center;
}
@media (max-width: 767px){#s-7ef77d9a-737c-43f3-bacb-d469b0423eb7 {
  display: none;
}
#s-7ef77d9a-737c-43f3-bacb-d469b0423eb7, #wrap-s-7ef77d9a-737c-43f3-bacb-d469b0423eb7, #wrap-content-s-7ef77d9a-737c-43f3-bacb-d469b0423eb7 { display: none !important; }}
#s-7ef77d9a-737c-43f3-bacb-d469b0423eb7 {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-7ef77d9a-737c-43f3-bacb-d469b0423eb7 {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/480x/);
}
#s-7ef77d9a-737c-43f3-bacb-d469b0423eb7.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-7ef77d9a-737c-43f3-bacb-d469b0423eb7 {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/960x/);
}
#s-7ef77d9a-737c-43f3-bacb-d469b0423eb7.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-7ef77d9a-737c-43f3-bacb-d469b0423eb7 {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/768x/);
}
#s-7ef77d9a-737c-43f3-bacb-d469b0423eb7.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-7ef77d9a-737c-43f3-bacb-d469b0423eb7 {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/1536x/);
}
#s-7ef77d9a-737c-43f3-bacb-d469b0423eb7.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-7ef77d9a-737c-43f3-bacb-d469b0423eb7 {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/1024x/);
}
#s-7ef77d9a-737c-43f3-bacb-d469b0423eb7.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-7ef77d9a-737c-43f3-bacb-d469b0423eb7 {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/2048x/);
}
#s-7ef77d9a-737c-43f3-bacb-d469b0423eb7.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-7ef77d9a-737c-43f3-bacb-d469b0423eb7 {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/1200x/);
}
#s-7ef77d9a-737c-43f3-bacb-d469b0423eb7.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-7ef77d9a-737c-43f3-bacb-d469b0423eb7 {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/2048x/);
}
#s-7ef77d9a-737c-43f3-bacb-d469b0423eb7.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-7ef77d9a-737c-43f3-bacb-d469b0423eb7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7ef77d9a-737c-43f3-bacb-d469b0423eb7.shg-box.shg-c {
  justify-content: center;
}

#s-767046e6-3381-42a3-9993-1afd5a28b34b {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-142f187f-7a84-41d3-b53c-0b6a151d6dbd {
  margin-left: 15%;
margin-right: 15%;
}
@media (min-width: 1200px){#s-142f187f-7a84-41d3-b53c-0b6a151d6dbd {
  margin-left: 17%;
margin-right: 17%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-142f187f-7a84-41d3-b53c-0b6a151d6dbd {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-142f187f-7a84-41d3-b53c-0b6a151d6dbd {
  margin-left: 3%;
margin-right: 3%;
}
}
@media (min-width: 0px) {
[id="s-142f187f-7a84-41d3-b53c-0b6a151d6dbd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-142f187f-7a84-41d3-b53c-0b6a151d6dbd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-142f187f-7a84-41d3-b53c-0b6a151d6dbd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-142f187f-7a84-41d3-b53c-0b6a151d6dbd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-142f187f-7a84-41d3-b53c-0b6a151d6dbd"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-5f942225-405d-4bc1-b02e-9ec4a45c9850 {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-5f942225-405d-4bc1-b02e-9ec4a45c9850 {
  margin-top: 0px;
}
}







#s-5f942225-405d-4bc1-b02e-9ec4a45c9850 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5f942225-405d-4bc1-b02e-9ec4a45c9850.shg-box.shg-c {
  justify-content: center;
}

#s-dc3fdb8a-d6ae-466c-b389-ed5fe796ae29 {
  margin-left: auto;
margin-right: auto;
padding-left: 1%;
}

#s-dc3fdb8a-d6ae-466c-b389-ed5fe796ae29 .shg-proportional-font-size,
#s-dc3fdb8a-d6ae-466c-b389-ed5fe796ae29 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-32c8f0ef-80fa-48a5-8c52-f8defa2ee066 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
}
@media (max-width: 767px){#s-32c8f0ef-80fa-48a5-8c52-f8defa2ee066 {
  display: none;
}
#s-32c8f0ef-80fa-48a5-8c52-f8defa2ee066, #wrap-s-32c8f0ef-80fa-48a5-8c52-f8defa2ee066, #wrap-content-s-32c8f0ef-80fa-48a5-8c52-f8defa2ee066 { display: none !important; }}
#s-32c8f0ef-80fa-48a5-8c52-f8defa2ee066 .shg-proportional-font-size,
#s-32c8f0ef-80fa-48a5-8c52-f8defa2ee066 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}
@media (min-width: 992px) and (max-width: 1199px){#s-32c8f0ef-80fa-48a5-8c52-f8defa2ee066 .shg-proportional-font-size,
#s-32c8f0ef-80fa-48a5-8c52-f8defa2ee066 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 96;
    
    
    font-size: 0.96em;
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-32c8f0ef-80fa-48a5-8c52-f8defa2ee066 .shg-proportional-font-size,
#s-32c8f0ef-80fa-48a5-8c52-f8defa2ee066 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 91;
    
    
    font-size: 0.91em;
  
}
}@media (max-width: 767px){#s-32c8f0ef-80fa-48a5-8c52-f8defa2ee066 .shg-proportional-font-size,
#s-32c8f0ef-80fa-48a5-8c52-f8defa2ee066 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}
}
#s-9e0c6d4e-757a-4376-a4ff-ced8201178e3 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
}
@media (min-width: 1200px){#s-9e0c6d4e-757a-4376-a4ff-ced8201178e3 {
  display: none;
}
#s-9e0c6d4e-757a-4376-a4ff-ced8201178e3, #wrap-s-9e0c6d4e-757a-4376-a4ff-ced8201178e3, #wrap-content-s-9e0c6d4e-757a-4376-a4ff-ced8201178e3 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9e0c6d4e-757a-4376-a4ff-ced8201178e3 {
  display: none;
}
#s-9e0c6d4e-757a-4376-a4ff-ced8201178e3, #wrap-s-9e0c6d4e-757a-4376-a4ff-ced8201178e3, #wrap-content-s-9e0c6d4e-757a-4376-a4ff-ced8201178e3 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9e0c6d4e-757a-4376-a4ff-ced8201178e3 {
  display: none;
}
#s-9e0c6d4e-757a-4376-a4ff-ced8201178e3, #wrap-s-9e0c6d4e-757a-4376-a4ff-ced8201178e3, #wrap-content-s-9e0c6d4e-757a-4376-a4ff-ced8201178e3 { display: none !important; }}
#s-9e0c6d4e-757a-4376-a4ff-ced8201178e3 .shg-proportional-font-size,
#s-9e0c6d4e-757a-4376-a4ff-ced8201178e3 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}
@media (max-width: 767px){#s-9e0c6d4e-757a-4376-a4ff-ced8201178e3 .shg-proportional-font-size,
#s-9e0c6d4e-757a-4376-a4ff-ced8201178e3 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}
}
#s-e13c0171-10a8-40ba-852d-ab177d8e80ce {
  margin-left: auto;
margin-right: auto;
}

#s-e13c0171-10a8-40ba-852d-ab177d8e80ce .shg-proportional-font-size,
#s-e13c0171-10a8-40ba-852d-ab177d8e80ce .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-79134c50-7776-4367-b2af-a8f5d5cac2ff {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 172, 78, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-79134c50-7776-4367-b2af-a8f5d5cac2ff:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-79134c50-7776-4367-b2af-a8f5d5cac2ff:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-79134c50-7776-4367-b2af-a8f5d5cac2ff-root {
    text-align: left;
  }


#s-79134c50-7776-4367-b2af-a8f5d5cac2ff.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-79134c50-7776-4367-b2af-a8f5d5cac2ff-root {
    text-align: left;
  }


#s-79134c50-7776-4367-b2af-a8f5d5cac2ff.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-79134c50-7776-4367-b2af-a8f5d5cac2ff-root {
    text-align: left;
  }


#s-79134c50-7776-4367-b2af-a8f5d5cac2ff.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-79134c50-7776-4367-b2af-a8f5d5cac2ff-root {
    text-align: left;
  }


#s-79134c50-7776-4367-b2af-a8f5d5cac2ff.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-79134c50-7776-4367-b2af-a8f5d5cac2ff-root {
    text-align: left;
  }


#s-79134c50-7776-4367-b2af-a8f5d5cac2ff.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-66320ef9-9611-4b11-aa65-83a0a6a03454 {
  margin-left: auto;
margin-right: auto;
}

#s-66320ef9-9611-4b11-aa65-83a0a6a03454 .shg-proportional-font-size,
#s-66320ef9-9611-4b11-aa65-83a0a6a03454 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-1d39e0cc-99b3-4f86-9a9e-8b5ec4eb6c6c {
  margin-top: 40px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
text-align: left;
}
@media (max-width: 767px){#s-1d39e0cc-99b3-4f86-9a9e-8b5ec4eb6c6c {
  margin-left: 5%;
margin-right: 5%;
display: none;
}
#s-1d39e0cc-99b3-4f86-9a9e-8b5ec4eb6c6c, #wrap-s-1d39e0cc-99b3-4f86-9a9e-8b5ec4eb6c6c, #wrap-content-s-1d39e0cc-99b3-4f86-9a9e-8b5ec4eb6c6c { display: none !important; }}
#s-f65233fd-f7e9-4158-a5e6-92ab3a7d6302 {
  margin-top: -30px;
margin-left: 6%;
margin-bottom: 0px;
margin-right: 4%;
}

#s-f65233fd-f7e9-4158-a5e6-92ab3a7d6302 .shg-proportional-font-size,
#s-f65233fd-f7e9-4158-a5e6-92ab3a7d6302 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-fd926bb6-a18d-4c80-a5a4-27a63c576664 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-7b6295af-4ffc-4ece-8200-174d9fb19432 {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-bottom: 25px;
min-height: 50px;
}








#s-7b6295af-4ffc-4ece-8200-174d9fb19432 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7b6295af-4ffc-4ece-8200-174d9fb19432.shg-box.shg-c {
  justify-content: center;
}

#s-bd717424-aa07-4f12-88bb-7f906a7be904 {
  margin-left: auto;
margin-right: auto;
max-width: 25px;
text-align: center;
}

#s-bd717424-aa07-4f12-88bb-7f906a7be904 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bd717424-aa07-4f12-88bb-7f906a7be904-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-bd717424-aa07-4f12-88bb-7f906a7be904 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bd717424-aa07-4f12-88bb-7f906a7be904 .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-bd717424-aa07-4f12-88bb-7f906a7be904 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bd717424-aa07-4f12-88bb-7f906a7be904 img.shogun-image {
  width: 100%;
  
  
  max-width: 25px;

  /* 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-bd717424-aa07-4f12-88bb-7f906a7be904 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bd717424-aa07-4f12-88bb-7f906a7be904.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd717424-aa07-4f12-88bb-7f906a7be904.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd717424-aa07-4f12-88bb-7f906a7be904.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-bd717424-aa07-4f12-88bb-7f906a7be904 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bd717424-aa07-4f12-88bb-7f906a7be904-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-bd717424-aa07-4f12-88bb-7f906a7be904 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bd717424-aa07-4f12-88bb-7f906a7be904 .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-bd717424-aa07-4f12-88bb-7f906a7be904 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bd717424-aa07-4f12-88bb-7f906a7be904 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-bd717424-aa07-4f12-88bb-7f906a7be904 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bd717424-aa07-4f12-88bb-7f906a7be904.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd717424-aa07-4f12-88bb-7f906a7be904.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd717424-aa07-4f12-88bb-7f906a7be904.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-bd717424-aa07-4f12-88bb-7f906a7be904 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bd717424-aa07-4f12-88bb-7f906a7be904-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-bd717424-aa07-4f12-88bb-7f906a7be904 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bd717424-aa07-4f12-88bb-7f906a7be904 .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-bd717424-aa07-4f12-88bb-7f906a7be904 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bd717424-aa07-4f12-88bb-7f906a7be904 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-bd717424-aa07-4f12-88bb-7f906a7be904 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bd717424-aa07-4f12-88bb-7f906a7be904.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd717424-aa07-4f12-88bb-7f906a7be904.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd717424-aa07-4f12-88bb-7f906a7be904.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-bd717424-aa07-4f12-88bb-7f906a7be904 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bd717424-aa07-4f12-88bb-7f906a7be904-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-bd717424-aa07-4f12-88bb-7f906a7be904 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bd717424-aa07-4f12-88bb-7f906a7be904 .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-bd717424-aa07-4f12-88bb-7f906a7be904 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bd717424-aa07-4f12-88bb-7f906a7be904 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-bd717424-aa07-4f12-88bb-7f906a7be904 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bd717424-aa07-4f12-88bb-7f906a7be904.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd717424-aa07-4f12-88bb-7f906a7be904.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd717424-aa07-4f12-88bb-7f906a7be904.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-bd717424-aa07-4f12-88bb-7f906a7be904 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bd717424-aa07-4f12-88bb-7f906a7be904-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-bd717424-aa07-4f12-88bb-7f906a7be904 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bd717424-aa07-4f12-88bb-7f906a7be904 .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-bd717424-aa07-4f12-88bb-7f906a7be904 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bd717424-aa07-4f12-88bb-7f906a7be904 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-bd717424-aa07-4f12-88bb-7f906a7be904 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bd717424-aa07-4f12-88bb-7f906a7be904.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd717424-aa07-4f12-88bb-7f906a7be904.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd717424-aa07-4f12-88bb-7f906a7be904.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-25ed0b45-85b2-4481-81a8-90cfb151b353 {
  margin-left: auto;
margin-right: auto;
padding-left: 1%;
}

#s-25ed0b45-85b2-4481-81a8-90cfb151b353 .shg-proportional-font-size,
#s-25ed0b45-85b2-4481-81a8-90cfb151b353 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

.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-8d9efbde-a850-46f3-ab5a-1ed349004481 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-8d9efbde-a850-46f3-ab5a-1ed349004481 {
  margin-left: 4%;
margin-right: 4%;
}
}@media (max-width: 767px){#s-8d9efbde-a850-46f3-ab5a-1ed349004481 {
  margin-left: 17%;
margin-right: 17%;
}
}
#s-8d9efbde-a850-46f3-ab5a-1ed349004481 .shogun-heading-component h1 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-f78ad964-4521-40b4-9eff-a7c43261e932 {
  margin-left: 24%;
margin-right: 24%;
}
@media (max-width: 767px){#s-f78ad964-4521-40b4-9eff-a7c43261e932 {
  margin-left: 5%;
margin-right: 5%;
display: none;
}
#s-f78ad964-4521-40b4-9eff-a7c43261e932, #wrap-s-f78ad964-4521-40b4-9eff-a7c43261e932, #wrap-content-s-f78ad964-4521-40b4-9eff-a7c43261e932 { display: none !important; }}
#s-f78ad964-4521-40b4-9eff-a7c43261e932 .shg-proportional-font-size,
#s-f78ad964-4521-40b4-9eff-a7c43261e932 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-1a6adba9-34c7-4c83-9be2-932e0d37aaa5 {
  margin-left: 24%;
margin-right: 24%;
}
@media (min-width: 1200px){#s-1a6adba9-34c7-4c83-9be2-932e0d37aaa5 {
  display: none;
}
#s-1a6adba9-34c7-4c83-9be2-932e0d37aaa5, #wrap-s-1a6adba9-34c7-4c83-9be2-932e0d37aaa5, #wrap-content-s-1a6adba9-34c7-4c83-9be2-932e0d37aaa5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1a6adba9-34c7-4c83-9be2-932e0d37aaa5 {
  display: none;
}
#s-1a6adba9-34c7-4c83-9be2-932e0d37aaa5, #wrap-s-1a6adba9-34c7-4c83-9be2-932e0d37aaa5, #wrap-content-s-1a6adba9-34c7-4c83-9be2-932e0d37aaa5 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1a6adba9-34c7-4c83-9be2-932e0d37aaa5 {
  display: none;
}
#s-1a6adba9-34c7-4c83-9be2-932e0d37aaa5, #wrap-s-1a6adba9-34c7-4c83-9be2-932e0d37aaa5, #wrap-content-s-1a6adba9-34c7-4c83-9be2-932e0d37aaa5 { display: none !important; }}@media (max-width: 767px){#s-1a6adba9-34c7-4c83-9be2-932e0d37aaa5 {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-1a6adba9-34c7-4c83-9be2-932e0d37aaa5 .shg-proportional-font-size,
#s-1a6adba9-34c7-4c83-9be2-932e0d37aaa5 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

/* 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;
}

/* Keep nav aligned to the slider frame; Swiper 12 adds sibling rules with top:50%. */
.shg-swiper-container > .shg-swiper.swiper-horizontal ~ .swiper-button-prev,
.shg-swiper-container > .shg-swiper.swiper-horizontal ~ .swiper-button-next {
  top: 0;
  margin-top: 0;
  height: calc(100% - var(--pagination-height));
}

.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-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9 {
  margin-left: 15%;
margin-right: 15%;
padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9 {
  display: none;
}
#s-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9, #wrap-s-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9, #wrap-content-s-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9 {
  display: none;
}
#s-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9, #wrap-s-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9, #wrap-content-s-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9 {
  display: none;
}
#s-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9, #wrap-s-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9, #wrap-content-s-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9 { display: none !important; }}@media (max-width: 767px){#s-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9 {
  margin-left: 4%;
margin-right: 4%;
}
}
/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9 {
  --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-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9 > .swiper-button-prev,
#slider-v3-s-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9 > .swiper-button-next {
  
}

#slider-v3-s-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9 > .swiper-button-prev svg,
#slider-v3-s-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9 > .swiper-button-next svg {
  fill: rgba(0, 68, 143, 1) !important;
  stroke: rgba(0, 68, 143, 1) !important;
  
}

#slider-v3-s-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9 > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9 > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9 > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9 .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9 .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-783e20aa-5a4e-44c3-a9e5-f42a5dcb22d9 .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731 {
  margin-left: auto;
margin-right: auto;
max-width: 630px;
text-align: center;
}

#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731-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-e73efe63-b161-4fb1-afe1-2c3cb67b0731 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 25px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-e73efe63-b161-4fb1-afe1-2c3cb67b0731 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731 img.shogun-image {
  width: 100%;
  
  
  max-width: 630px;

  /* 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-e73efe63-b161-4fb1-afe1-2c3cb67b0731 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e73efe63-b161-4fb1-afe1-2c3cb67b0731.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e73efe63-b161-4fb1-afe1-2c3cb67b0731.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731-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-e73efe63-b161-4fb1-afe1-2c3cb67b0731 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731 .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-e73efe63-b161-4fb1-afe1-2c3cb67b0731 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731 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-e73efe63-b161-4fb1-afe1-2c3cb67b0731 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e73efe63-b161-4fb1-afe1-2c3cb67b0731.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e73efe63-b161-4fb1-afe1-2c3cb67b0731.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731-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-e73efe63-b161-4fb1-afe1-2c3cb67b0731 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731 .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-e73efe63-b161-4fb1-afe1-2c3cb67b0731 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731 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-e73efe63-b161-4fb1-afe1-2c3cb67b0731 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e73efe63-b161-4fb1-afe1-2c3cb67b0731.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e73efe63-b161-4fb1-afe1-2c3cb67b0731.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731-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-e73efe63-b161-4fb1-afe1-2c3cb67b0731 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731 .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-e73efe63-b161-4fb1-afe1-2c3cb67b0731 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731 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-e73efe63-b161-4fb1-afe1-2c3cb67b0731 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e73efe63-b161-4fb1-afe1-2c3cb67b0731.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e73efe63-b161-4fb1-afe1-2c3cb67b0731.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731-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-e73efe63-b161-4fb1-afe1-2c3cb67b0731 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731 .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-e73efe63-b161-4fb1-afe1-2c3cb67b0731 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731 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-e73efe63-b161-4fb1-afe1-2c3cb67b0731 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e73efe63-b161-4fb1-afe1-2c3cb67b0731.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e73efe63-b161-4fb1-afe1-2c3cb67b0731.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e73efe63-b161-4fb1-afe1-2c3cb67b0731.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-31e79489-a135-4fda-b691-986f5fb46cd8 {
  margin-left: auto;
margin-right: auto;
max-width: 630px;
text-align: center;
}

#s-31e79489-a135-4fda-b691-986f5fb46cd8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-31e79489-a135-4fda-b691-986f5fb46cd8-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-31e79489-a135-4fda-b691-986f5fb46cd8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-31e79489-a135-4fda-b691-986f5fb46cd8 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 25px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-31e79489-a135-4fda-b691-986f5fb46cd8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-31e79489-a135-4fda-b691-986f5fb46cd8 img.shogun-image {
  width: 100%;
  
  
  max-width: 630px;

  /* 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-31e79489-a135-4fda-b691-986f5fb46cd8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-31e79489-a135-4fda-b691-986f5fb46cd8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31e79489-a135-4fda-b691-986f5fb46cd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31e79489-a135-4fda-b691-986f5fb46cd8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-31e79489-a135-4fda-b691-986f5fb46cd8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-31e79489-a135-4fda-b691-986f5fb46cd8-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-31e79489-a135-4fda-b691-986f5fb46cd8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-31e79489-a135-4fda-b691-986f5fb46cd8 .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-31e79489-a135-4fda-b691-986f5fb46cd8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-31e79489-a135-4fda-b691-986f5fb46cd8 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-31e79489-a135-4fda-b691-986f5fb46cd8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-31e79489-a135-4fda-b691-986f5fb46cd8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31e79489-a135-4fda-b691-986f5fb46cd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31e79489-a135-4fda-b691-986f5fb46cd8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-31e79489-a135-4fda-b691-986f5fb46cd8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-31e79489-a135-4fda-b691-986f5fb46cd8-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-31e79489-a135-4fda-b691-986f5fb46cd8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-31e79489-a135-4fda-b691-986f5fb46cd8 .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-31e79489-a135-4fda-b691-986f5fb46cd8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-31e79489-a135-4fda-b691-986f5fb46cd8 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-31e79489-a135-4fda-b691-986f5fb46cd8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-31e79489-a135-4fda-b691-986f5fb46cd8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31e79489-a135-4fda-b691-986f5fb46cd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31e79489-a135-4fda-b691-986f5fb46cd8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-31e79489-a135-4fda-b691-986f5fb46cd8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-31e79489-a135-4fda-b691-986f5fb46cd8-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-31e79489-a135-4fda-b691-986f5fb46cd8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-31e79489-a135-4fda-b691-986f5fb46cd8 .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-31e79489-a135-4fda-b691-986f5fb46cd8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-31e79489-a135-4fda-b691-986f5fb46cd8 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-31e79489-a135-4fda-b691-986f5fb46cd8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-31e79489-a135-4fda-b691-986f5fb46cd8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31e79489-a135-4fda-b691-986f5fb46cd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31e79489-a135-4fda-b691-986f5fb46cd8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-31e79489-a135-4fda-b691-986f5fb46cd8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-31e79489-a135-4fda-b691-986f5fb46cd8-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-31e79489-a135-4fda-b691-986f5fb46cd8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-31e79489-a135-4fda-b691-986f5fb46cd8 .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-31e79489-a135-4fda-b691-986f5fb46cd8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-31e79489-a135-4fda-b691-986f5fb46cd8 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-31e79489-a135-4fda-b691-986f5fb46cd8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-31e79489-a135-4fda-b691-986f5fb46cd8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31e79489-a135-4fda-b691-986f5fb46cd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31e79489-a135-4fda-b691-986f5fb46cd8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-efbaeff7-bdf7-4bca-90ef-24055544885f {
  margin-left: auto;
margin-right: auto;
max-width: 630px;
text-align: center;
}

#s-efbaeff7-bdf7-4bca-90ef-24055544885f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-efbaeff7-bdf7-4bca-90ef-24055544885f-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-efbaeff7-bdf7-4bca-90ef-24055544885f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-efbaeff7-bdf7-4bca-90ef-24055544885f .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 25px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-efbaeff7-bdf7-4bca-90ef-24055544885f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-efbaeff7-bdf7-4bca-90ef-24055544885f img.shogun-image {
  width: 100%;
  
  
  max-width: 630px;

  /* 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-efbaeff7-bdf7-4bca-90ef-24055544885f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-efbaeff7-bdf7-4bca-90ef-24055544885f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-efbaeff7-bdf7-4bca-90ef-24055544885f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-efbaeff7-bdf7-4bca-90ef-24055544885f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-efbaeff7-bdf7-4bca-90ef-24055544885f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-efbaeff7-bdf7-4bca-90ef-24055544885f-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-efbaeff7-bdf7-4bca-90ef-24055544885f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-efbaeff7-bdf7-4bca-90ef-24055544885f .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-efbaeff7-bdf7-4bca-90ef-24055544885f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-efbaeff7-bdf7-4bca-90ef-24055544885f 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-efbaeff7-bdf7-4bca-90ef-24055544885f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-efbaeff7-bdf7-4bca-90ef-24055544885f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-efbaeff7-bdf7-4bca-90ef-24055544885f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-efbaeff7-bdf7-4bca-90ef-24055544885f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-efbaeff7-bdf7-4bca-90ef-24055544885f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-efbaeff7-bdf7-4bca-90ef-24055544885f-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-efbaeff7-bdf7-4bca-90ef-24055544885f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-efbaeff7-bdf7-4bca-90ef-24055544885f .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-efbaeff7-bdf7-4bca-90ef-24055544885f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-efbaeff7-bdf7-4bca-90ef-24055544885f 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-efbaeff7-bdf7-4bca-90ef-24055544885f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-efbaeff7-bdf7-4bca-90ef-24055544885f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-efbaeff7-bdf7-4bca-90ef-24055544885f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-efbaeff7-bdf7-4bca-90ef-24055544885f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-efbaeff7-bdf7-4bca-90ef-24055544885f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-efbaeff7-bdf7-4bca-90ef-24055544885f-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-efbaeff7-bdf7-4bca-90ef-24055544885f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-efbaeff7-bdf7-4bca-90ef-24055544885f .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-efbaeff7-bdf7-4bca-90ef-24055544885f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-efbaeff7-bdf7-4bca-90ef-24055544885f 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-efbaeff7-bdf7-4bca-90ef-24055544885f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-efbaeff7-bdf7-4bca-90ef-24055544885f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-efbaeff7-bdf7-4bca-90ef-24055544885f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-efbaeff7-bdf7-4bca-90ef-24055544885f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-efbaeff7-bdf7-4bca-90ef-24055544885f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-efbaeff7-bdf7-4bca-90ef-24055544885f-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-efbaeff7-bdf7-4bca-90ef-24055544885f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-efbaeff7-bdf7-4bca-90ef-24055544885f .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-efbaeff7-bdf7-4bca-90ef-24055544885f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-efbaeff7-bdf7-4bca-90ef-24055544885f 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-efbaeff7-bdf7-4bca-90ef-24055544885f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-efbaeff7-bdf7-4bca-90ef-24055544885f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-efbaeff7-bdf7-4bca-90ef-24055544885f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-efbaeff7-bdf7-4bca-90ef-24055544885f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-e8eada07-f2d7-4a27-abec-5d35e93b4500 {
  margin-left: auto;
margin-right: auto;
max-width: 630px;
text-align: center;
}

#s-e8eada07-f2d7-4a27-abec-5d35e93b4500 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e8eada07-f2d7-4a27-abec-5d35e93b4500-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-e8eada07-f2d7-4a27-abec-5d35e93b4500 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e8eada07-f2d7-4a27-abec-5d35e93b4500 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 25px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-e8eada07-f2d7-4a27-abec-5d35e93b4500 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e8eada07-f2d7-4a27-abec-5d35e93b4500 img.shogun-image {
  width: 100%;
  
  
  max-width: 630px;

  /* 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-e8eada07-f2d7-4a27-abec-5d35e93b4500 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e8eada07-f2d7-4a27-abec-5d35e93b4500.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e8eada07-f2d7-4a27-abec-5d35e93b4500.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e8eada07-f2d7-4a27-abec-5d35e93b4500.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-e8eada07-f2d7-4a27-abec-5d35e93b4500 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e8eada07-f2d7-4a27-abec-5d35e93b4500-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-e8eada07-f2d7-4a27-abec-5d35e93b4500 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e8eada07-f2d7-4a27-abec-5d35e93b4500 .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-e8eada07-f2d7-4a27-abec-5d35e93b4500 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e8eada07-f2d7-4a27-abec-5d35e93b4500 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-e8eada07-f2d7-4a27-abec-5d35e93b4500 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e8eada07-f2d7-4a27-abec-5d35e93b4500.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e8eada07-f2d7-4a27-abec-5d35e93b4500.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e8eada07-f2d7-4a27-abec-5d35e93b4500.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-e8eada07-f2d7-4a27-abec-5d35e93b4500 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e8eada07-f2d7-4a27-abec-5d35e93b4500-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-e8eada07-f2d7-4a27-abec-5d35e93b4500 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e8eada07-f2d7-4a27-abec-5d35e93b4500 .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-e8eada07-f2d7-4a27-abec-5d35e93b4500 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e8eada07-f2d7-4a27-abec-5d35e93b4500 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-e8eada07-f2d7-4a27-abec-5d35e93b4500 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e8eada07-f2d7-4a27-abec-5d35e93b4500.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e8eada07-f2d7-4a27-abec-5d35e93b4500.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e8eada07-f2d7-4a27-abec-5d35e93b4500.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-e8eada07-f2d7-4a27-abec-5d35e93b4500 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e8eada07-f2d7-4a27-abec-5d35e93b4500-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-e8eada07-f2d7-4a27-abec-5d35e93b4500 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e8eada07-f2d7-4a27-abec-5d35e93b4500 .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-e8eada07-f2d7-4a27-abec-5d35e93b4500 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e8eada07-f2d7-4a27-abec-5d35e93b4500 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-e8eada07-f2d7-4a27-abec-5d35e93b4500 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e8eada07-f2d7-4a27-abec-5d35e93b4500.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e8eada07-f2d7-4a27-abec-5d35e93b4500.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e8eada07-f2d7-4a27-abec-5d35e93b4500.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-e8eada07-f2d7-4a27-abec-5d35e93b4500 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e8eada07-f2d7-4a27-abec-5d35e93b4500-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-e8eada07-f2d7-4a27-abec-5d35e93b4500 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e8eada07-f2d7-4a27-abec-5d35e93b4500 .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-e8eada07-f2d7-4a27-abec-5d35e93b4500 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e8eada07-f2d7-4a27-abec-5d35e93b4500 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-e8eada07-f2d7-4a27-abec-5d35e93b4500 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e8eada07-f2d7-4a27-abec-5d35e93b4500.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e8eada07-f2d7-4a27-abec-5d35e93b4500.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e8eada07-f2d7-4a27-abec-5d35e93b4500.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-9503ff72-c3f6-406b-b5c8-47446b533eb6 .shg-proportional-font-size,
#s-9503ff72-c3f6-406b-b5c8-47446b533eb6 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-b141b9d0-d63b-4bff-85fc-2b910793670d .shg-proportional-font-size,
#s-b141b9d0-d63b-4bff-85fc-2b910793670d .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-b4714e15-12e9-4e67-9d0c-8635a953a7a4 .shg-proportional-font-size,
#s-b4714e15-12e9-4e67-9d0c-8635a953a7a4 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-6eda6d05-d059-4204-9be3-bfb1d05ab409 .shg-proportional-font-size,
#s-6eda6d05-d059-4204-9be3-bfb1d05ab409 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-349af04b-4bbd-424e-b5d4-0ebb619395e1 {
  margin-left: 15%;
margin-right: 15%;
padding-top: 10px;
padding-bottom: 10px;
}
@media (max-width: 767px){#s-349af04b-4bbd-424e-b5d4-0ebb619395e1 {
  margin-left: 4%;
margin-right: 4%;
display: none;
}
#s-349af04b-4bbd-424e-b5d4-0ebb619395e1, #wrap-s-349af04b-4bbd-424e-b5d4-0ebb619395e1, #wrap-content-s-349af04b-4bbd-424e-b5d4-0ebb619395e1 { display: none !important; }}
/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-349af04b-4bbd-424e-b5d4-0ebb619395e1 {
  --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-349af04b-4bbd-424e-b5d4-0ebb619395e1 > .swiper-button-prev,
#slider-v3-s-349af04b-4bbd-424e-b5d4-0ebb619395e1 > .swiper-button-next {
  
}

#slider-v3-s-349af04b-4bbd-424e-b5d4-0ebb619395e1 > .swiper-button-prev svg,
#slider-v3-s-349af04b-4bbd-424e-b5d4-0ebb619395e1 > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-349af04b-4bbd-424e-b5d4-0ebb619395e1 > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-349af04b-4bbd-424e-b5d4-0ebb619395e1 > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-349af04b-4bbd-424e-b5d4-0ebb619395e1 > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-349af04b-4bbd-424e-b5d4-0ebb619395e1 .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-349af04b-4bbd-424e-b5d4-0ebb619395e1 .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-349af04b-4bbd-424e-b5d4-0ebb619395e1 .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-9d155b8c-efe5-48b7-87a2-91c95c141acb {
  margin-left: auto;
margin-right: auto;
max-width: 630px;
text-align: center;
}

#s-9d155b8c-efe5-48b7-87a2-91c95c141acb {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9d155b8c-efe5-48b7-87a2-91c95c141acb-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-9d155b8c-efe5-48b7-87a2-91c95c141acb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9d155b8c-efe5-48b7-87a2-91c95c141acb .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 25px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-9d155b8c-efe5-48b7-87a2-91c95c141acb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9d155b8c-efe5-48b7-87a2-91c95c141acb img.shogun-image {
  width: 100%;
  
  
  max-width: 630px;

  /* 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-9d155b8c-efe5-48b7-87a2-91c95c141acb .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9d155b8c-efe5-48b7-87a2-91c95c141acb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d155b8c-efe5-48b7-87a2-91c95c141acb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d155b8c-efe5-48b7-87a2-91c95c141acb.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-9d155b8c-efe5-48b7-87a2-91c95c141acb {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9d155b8c-efe5-48b7-87a2-91c95c141acb-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-9d155b8c-efe5-48b7-87a2-91c95c141acb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9d155b8c-efe5-48b7-87a2-91c95c141acb .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-9d155b8c-efe5-48b7-87a2-91c95c141acb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9d155b8c-efe5-48b7-87a2-91c95c141acb 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-9d155b8c-efe5-48b7-87a2-91c95c141acb .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9d155b8c-efe5-48b7-87a2-91c95c141acb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d155b8c-efe5-48b7-87a2-91c95c141acb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d155b8c-efe5-48b7-87a2-91c95c141acb.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-9d155b8c-efe5-48b7-87a2-91c95c141acb {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9d155b8c-efe5-48b7-87a2-91c95c141acb-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-9d155b8c-efe5-48b7-87a2-91c95c141acb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9d155b8c-efe5-48b7-87a2-91c95c141acb .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-9d155b8c-efe5-48b7-87a2-91c95c141acb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9d155b8c-efe5-48b7-87a2-91c95c141acb 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-9d155b8c-efe5-48b7-87a2-91c95c141acb .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9d155b8c-efe5-48b7-87a2-91c95c141acb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d155b8c-efe5-48b7-87a2-91c95c141acb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d155b8c-efe5-48b7-87a2-91c95c141acb.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-9d155b8c-efe5-48b7-87a2-91c95c141acb {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9d155b8c-efe5-48b7-87a2-91c95c141acb-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-9d155b8c-efe5-48b7-87a2-91c95c141acb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9d155b8c-efe5-48b7-87a2-91c95c141acb .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-9d155b8c-efe5-48b7-87a2-91c95c141acb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9d155b8c-efe5-48b7-87a2-91c95c141acb 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-9d155b8c-efe5-48b7-87a2-91c95c141acb .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9d155b8c-efe5-48b7-87a2-91c95c141acb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d155b8c-efe5-48b7-87a2-91c95c141acb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d155b8c-efe5-48b7-87a2-91c95c141acb.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-9d155b8c-efe5-48b7-87a2-91c95c141acb {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9d155b8c-efe5-48b7-87a2-91c95c141acb-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-9d155b8c-efe5-48b7-87a2-91c95c141acb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9d155b8c-efe5-48b7-87a2-91c95c141acb .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-9d155b8c-efe5-48b7-87a2-91c95c141acb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9d155b8c-efe5-48b7-87a2-91c95c141acb 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-9d155b8c-efe5-48b7-87a2-91c95c141acb .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9d155b8c-efe5-48b7-87a2-91c95c141acb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d155b8c-efe5-48b7-87a2-91c95c141acb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d155b8c-efe5-48b7-87a2-91c95c141acb.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-a5384695-e580-4ac9-b450-c8940e55d697 {
  margin-left: auto;
margin-right: auto;
max-width: 630px;
text-align: center;
}

#s-a5384695-e580-4ac9-b450-c8940e55d697 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a5384695-e580-4ac9-b450-c8940e55d697-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-a5384695-e580-4ac9-b450-c8940e55d697 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a5384695-e580-4ac9-b450-c8940e55d697 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 25px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-a5384695-e580-4ac9-b450-c8940e55d697 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a5384695-e580-4ac9-b450-c8940e55d697 img.shogun-image {
  width: 100%;
  
  
  max-width: 630px;

  /* 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-a5384695-e580-4ac9-b450-c8940e55d697 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a5384695-e580-4ac9-b450-c8940e55d697.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5384695-e580-4ac9-b450-c8940e55d697.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5384695-e580-4ac9-b450-c8940e55d697.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-a5384695-e580-4ac9-b450-c8940e55d697 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a5384695-e580-4ac9-b450-c8940e55d697-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-a5384695-e580-4ac9-b450-c8940e55d697 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a5384695-e580-4ac9-b450-c8940e55d697 .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-a5384695-e580-4ac9-b450-c8940e55d697 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a5384695-e580-4ac9-b450-c8940e55d697 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-a5384695-e580-4ac9-b450-c8940e55d697 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a5384695-e580-4ac9-b450-c8940e55d697.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5384695-e580-4ac9-b450-c8940e55d697.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5384695-e580-4ac9-b450-c8940e55d697.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-a5384695-e580-4ac9-b450-c8940e55d697 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a5384695-e580-4ac9-b450-c8940e55d697-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-a5384695-e580-4ac9-b450-c8940e55d697 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a5384695-e580-4ac9-b450-c8940e55d697 .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-a5384695-e580-4ac9-b450-c8940e55d697 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a5384695-e580-4ac9-b450-c8940e55d697 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-a5384695-e580-4ac9-b450-c8940e55d697 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a5384695-e580-4ac9-b450-c8940e55d697.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5384695-e580-4ac9-b450-c8940e55d697.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5384695-e580-4ac9-b450-c8940e55d697.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-a5384695-e580-4ac9-b450-c8940e55d697 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a5384695-e580-4ac9-b450-c8940e55d697-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-a5384695-e580-4ac9-b450-c8940e55d697 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a5384695-e580-4ac9-b450-c8940e55d697 .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-a5384695-e580-4ac9-b450-c8940e55d697 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a5384695-e580-4ac9-b450-c8940e55d697 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-a5384695-e580-4ac9-b450-c8940e55d697 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a5384695-e580-4ac9-b450-c8940e55d697.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5384695-e580-4ac9-b450-c8940e55d697.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5384695-e580-4ac9-b450-c8940e55d697.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-a5384695-e580-4ac9-b450-c8940e55d697 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a5384695-e580-4ac9-b450-c8940e55d697-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-a5384695-e580-4ac9-b450-c8940e55d697 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a5384695-e580-4ac9-b450-c8940e55d697 .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-a5384695-e580-4ac9-b450-c8940e55d697 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a5384695-e580-4ac9-b450-c8940e55d697 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-a5384695-e580-4ac9-b450-c8940e55d697 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a5384695-e580-4ac9-b450-c8940e55d697.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5384695-e580-4ac9-b450-c8940e55d697.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5384695-e580-4ac9-b450-c8940e55d697.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-81d80f10-e061-40c6-84cc-c6918c777309 {
  margin-left: auto;
margin-right: auto;
max-width: 630px;
text-align: center;
}

#s-81d80f10-e061-40c6-84cc-c6918c777309 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-81d80f10-e061-40c6-84cc-c6918c777309-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-81d80f10-e061-40c6-84cc-c6918c777309 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-81d80f10-e061-40c6-84cc-c6918c777309 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 25px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-81d80f10-e061-40c6-84cc-c6918c777309 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-81d80f10-e061-40c6-84cc-c6918c777309 img.shogun-image {
  width: 100%;
  
  
  max-width: 630px;

  /* 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-81d80f10-e061-40c6-84cc-c6918c777309 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-81d80f10-e061-40c6-84cc-c6918c777309.shg-align-container {
  display: flex;
  justify-content: center
}

.s-81d80f10-e061-40c6-84cc-c6918c777309.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-81d80f10-e061-40c6-84cc-c6918c777309.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-81d80f10-e061-40c6-84cc-c6918c777309 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-81d80f10-e061-40c6-84cc-c6918c777309-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-81d80f10-e061-40c6-84cc-c6918c777309 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-81d80f10-e061-40c6-84cc-c6918c777309 .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-81d80f10-e061-40c6-84cc-c6918c777309 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-81d80f10-e061-40c6-84cc-c6918c777309 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-81d80f10-e061-40c6-84cc-c6918c777309 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-81d80f10-e061-40c6-84cc-c6918c777309.shg-align-container {
  display: flex;
  justify-content: center
}

.s-81d80f10-e061-40c6-84cc-c6918c777309.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-81d80f10-e061-40c6-84cc-c6918c777309.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-81d80f10-e061-40c6-84cc-c6918c777309 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-81d80f10-e061-40c6-84cc-c6918c777309-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-81d80f10-e061-40c6-84cc-c6918c777309 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-81d80f10-e061-40c6-84cc-c6918c777309 .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-81d80f10-e061-40c6-84cc-c6918c777309 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-81d80f10-e061-40c6-84cc-c6918c777309 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-81d80f10-e061-40c6-84cc-c6918c777309 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-81d80f10-e061-40c6-84cc-c6918c777309.shg-align-container {
  display: flex;
  justify-content: center
}

.s-81d80f10-e061-40c6-84cc-c6918c777309.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-81d80f10-e061-40c6-84cc-c6918c777309.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-81d80f10-e061-40c6-84cc-c6918c777309 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-81d80f10-e061-40c6-84cc-c6918c777309-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-81d80f10-e061-40c6-84cc-c6918c777309 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-81d80f10-e061-40c6-84cc-c6918c777309 .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-81d80f10-e061-40c6-84cc-c6918c777309 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-81d80f10-e061-40c6-84cc-c6918c777309 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-81d80f10-e061-40c6-84cc-c6918c777309 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-81d80f10-e061-40c6-84cc-c6918c777309.shg-align-container {
  display: flex;
  justify-content: center
}

.s-81d80f10-e061-40c6-84cc-c6918c777309.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-81d80f10-e061-40c6-84cc-c6918c777309.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-81d80f10-e061-40c6-84cc-c6918c777309 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-81d80f10-e061-40c6-84cc-c6918c777309-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-81d80f10-e061-40c6-84cc-c6918c777309 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-81d80f10-e061-40c6-84cc-c6918c777309 .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-81d80f10-e061-40c6-84cc-c6918c777309 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-81d80f10-e061-40c6-84cc-c6918c777309 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-81d80f10-e061-40c6-84cc-c6918c777309 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-81d80f10-e061-40c6-84cc-c6918c777309.shg-align-container {
  display: flex;
  justify-content: center
}

.s-81d80f10-e061-40c6-84cc-c6918c777309.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-81d80f10-e061-40c6-84cc-c6918c777309.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-27c54f2f-990d-49f9-a46d-cbc42a466304 {
  margin-left: auto;
margin-right: auto;
max-width: 630px;
text-align: center;
}

#s-27c54f2f-990d-49f9-a46d-cbc42a466304 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-27c54f2f-990d-49f9-a46d-cbc42a466304-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-27c54f2f-990d-49f9-a46d-cbc42a466304 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-27c54f2f-990d-49f9-a46d-cbc42a466304 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 25px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-27c54f2f-990d-49f9-a46d-cbc42a466304 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-27c54f2f-990d-49f9-a46d-cbc42a466304 img.shogun-image {
  width: 100%;
  
  
  max-width: 630px;

  /* 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-27c54f2f-990d-49f9-a46d-cbc42a466304 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-27c54f2f-990d-49f9-a46d-cbc42a466304.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27c54f2f-990d-49f9-a46d-cbc42a466304.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27c54f2f-990d-49f9-a46d-cbc42a466304.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-27c54f2f-990d-49f9-a46d-cbc42a466304 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-27c54f2f-990d-49f9-a46d-cbc42a466304-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-27c54f2f-990d-49f9-a46d-cbc42a466304 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-27c54f2f-990d-49f9-a46d-cbc42a466304 .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-27c54f2f-990d-49f9-a46d-cbc42a466304 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-27c54f2f-990d-49f9-a46d-cbc42a466304 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-27c54f2f-990d-49f9-a46d-cbc42a466304 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-27c54f2f-990d-49f9-a46d-cbc42a466304.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27c54f2f-990d-49f9-a46d-cbc42a466304.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27c54f2f-990d-49f9-a46d-cbc42a466304.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-27c54f2f-990d-49f9-a46d-cbc42a466304 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-27c54f2f-990d-49f9-a46d-cbc42a466304-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-27c54f2f-990d-49f9-a46d-cbc42a466304 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-27c54f2f-990d-49f9-a46d-cbc42a466304 .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-27c54f2f-990d-49f9-a46d-cbc42a466304 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-27c54f2f-990d-49f9-a46d-cbc42a466304 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-27c54f2f-990d-49f9-a46d-cbc42a466304 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-27c54f2f-990d-49f9-a46d-cbc42a466304.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27c54f2f-990d-49f9-a46d-cbc42a466304.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27c54f2f-990d-49f9-a46d-cbc42a466304.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-27c54f2f-990d-49f9-a46d-cbc42a466304 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-27c54f2f-990d-49f9-a46d-cbc42a466304-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-27c54f2f-990d-49f9-a46d-cbc42a466304 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-27c54f2f-990d-49f9-a46d-cbc42a466304 .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-27c54f2f-990d-49f9-a46d-cbc42a466304 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-27c54f2f-990d-49f9-a46d-cbc42a466304 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-27c54f2f-990d-49f9-a46d-cbc42a466304 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-27c54f2f-990d-49f9-a46d-cbc42a466304.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27c54f2f-990d-49f9-a46d-cbc42a466304.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27c54f2f-990d-49f9-a46d-cbc42a466304.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-27c54f2f-990d-49f9-a46d-cbc42a466304 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-27c54f2f-990d-49f9-a46d-cbc42a466304-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-27c54f2f-990d-49f9-a46d-cbc42a466304 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-27c54f2f-990d-49f9-a46d-cbc42a466304 .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-27c54f2f-990d-49f9-a46d-cbc42a466304 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-27c54f2f-990d-49f9-a46d-cbc42a466304 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-27c54f2f-990d-49f9-a46d-cbc42a466304 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-27c54f2f-990d-49f9-a46d-cbc42a466304.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27c54f2f-990d-49f9-a46d-cbc42a466304.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27c54f2f-990d-49f9-a46d-cbc42a466304.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-d993ca4b-0f2a-4ca8-990a-475dbd309845 {
  margin-left: 3%;
margin-right: 3%;
}

#s-d993ca4b-0f2a-4ca8-990a-475dbd309845 .shg-proportional-font-size,
#s-d993ca4b-0f2a-4ca8-990a-475dbd309845 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-e0d0db63-195b-4a7a-9efd-19c9fa7416f2 {
  margin-left: 3%;
margin-right: 3%;
padding-left: 0%;
padding-right: 0%;
}

#s-e0d0db63-195b-4a7a-9efd-19c9fa7416f2 .shg-proportional-font-size,
#s-e0d0db63-195b-4a7a-9efd-19c9fa7416f2 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-ff873e30-95af-47bb-b750-a586ce4176e4 {
  margin-left: 3%;
margin-right: 3%;
}

#s-ff873e30-95af-47bb-b750-a586ce4176e4 .shg-proportional-font-size,
#s-ff873e30-95af-47bb-b750-a586ce4176e4 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-f2699220-a49b-46d0-a0a6-4123cff9eedd {
  margin-left: 3%;
margin-right: 3%;
}

#s-f2699220-a49b-46d0-a0a6-4123cff9eedd .shg-proportional-font-size,
#s-f2699220-a49b-46d0-a0a6-4123cff9eedd .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-576ce787-62d0-49ca-896a-cbb02c672b56 {
  margin-top: -40px;
margin-left: auto;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-radius: 7px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-576ce787-62d0-49ca-896a-cbb02c672b56:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-576ce787-62d0-49ca-896a-cbb02c672b56:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-576ce787-62d0-49ca-896a-cbb02c672b56 {
  margin-top: 0px;
padding-left: 10px;
padding-right: 10px;
}
}

  #s-576ce787-62d0-49ca-896a-cbb02c672b56-root {
    text-align: center;
  }


#s-576ce787-62d0-49ca-896a-cbb02c672b56.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-576ce787-62d0-49ca-896a-cbb02c672b56-root {
    text-align: center;
  }


#s-576ce787-62d0-49ca-896a-cbb02c672b56.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-576ce787-62d0-49ca-896a-cbb02c672b56-root {
    text-align: center;
  }


#s-576ce787-62d0-49ca-896a-cbb02c672b56.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-576ce787-62d0-49ca-896a-cbb02c672b56-root {
    text-align: center;
  }


#s-576ce787-62d0-49ca-896a-cbb02c672b56.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-576ce787-62d0-49ca-896a-cbb02c672b56-root {
    text-align: center;
  }


#s-576ce787-62d0-49ca-896a-cbb02c672b56.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-2507db73-84fa-46e5-9899-7ecedcc9f8fb {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(27, 67, 118, 1);
}








#s-2507db73-84fa-46e5-9899-7ecedcc9f8fb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2507db73-84fa-46e5-9899-7ecedcc9f8fb.shg-box.shg-c {
  justify-content: center;
}

#s-b1b709d3-306f-4091-8964-4dedc4db376b {
  margin-left: 15%;
margin-right: 15%;
}
@media (max-width: 767px){#s-b1b709d3-306f-4091-8964-4dedc4db376b {
  display: none;
}
#s-b1b709d3-306f-4091-8964-4dedc4db376b, #wrap-s-b1b709d3-306f-4091-8964-4dedc4db376b, #wrap-content-s-b1b709d3-306f-4091-8964-4dedc4db376b { display: none !important; }}
#s-b1b709d3-306f-4091-8964-4dedc4db376b .shg-proportional-font-size,
#s-b1b709d3-306f-4091-8964-4dedc4db376b .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-fc32262a-4a9b-41e1-b193-7fea3b5dc590 {
  margin-left: 4%;
margin-right: 4%;
}
@media (min-width: 1200px){#s-fc32262a-4a9b-41e1-b193-7fea3b5dc590 {
  display: none;
}
#s-fc32262a-4a9b-41e1-b193-7fea3b5dc590, #wrap-s-fc32262a-4a9b-41e1-b193-7fea3b5dc590, #wrap-content-s-fc32262a-4a9b-41e1-b193-7fea3b5dc590 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fc32262a-4a9b-41e1-b193-7fea3b5dc590 {
  display: none;
}
#s-fc32262a-4a9b-41e1-b193-7fea3b5dc590, #wrap-s-fc32262a-4a9b-41e1-b193-7fea3b5dc590, #wrap-content-s-fc32262a-4a9b-41e1-b193-7fea3b5dc590 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-fc32262a-4a9b-41e1-b193-7fea3b5dc590 {
  display: none;
}
#s-fc32262a-4a9b-41e1-b193-7fea3b5dc590, #wrap-s-fc32262a-4a9b-41e1-b193-7fea3b5dc590, #wrap-content-s-fc32262a-4a9b-41e1-b193-7fea3b5dc590 { display: none !important; }}
#s-fc32262a-4a9b-41e1-b193-7fea3b5dc590 .shg-proportional-font-size,
#s-fc32262a-4a9b-41e1-b193-7fea3b5dc590 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-4abff57b-c3a4-47e9-885e-b5a212a72c58 {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-bottom: 25px;
min-height: 50px;
}








#s-4abff57b-c3a4-47e9-885e-b5a212a72c58 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4abff57b-c3a4-47e9-885e-b5a212a72c58.shg-box.shg-c {
  justify-content: center;
}

#s-e1bad0c1-cc94-48e7-9766-20d5f5f88dea {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96 {
  margin-left: auto;
margin-right: auto;
max-width: 25px;
text-align: center;
}

#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96-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-5f5d7c70-bc02-437f-a5d3-8173fd663e96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96 .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-5f5d7c70-bc02-437f-a5d3-8173fd663e96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96 img.shogun-image {
  width: 100%;
  
  
  max-width: 25px;

  /* 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-5f5d7c70-bc02-437f-a5d3-8173fd663e96 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5f5d7c70-bc02-437f-a5d3-8173fd663e96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5f5d7c70-bc02-437f-a5d3-8173fd663e96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96-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-5f5d7c70-bc02-437f-a5d3-8173fd663e96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96 .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-5f5d7c70-bc02-437f-a5d3-8173fd663e96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96 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-5f5d7c70-bc02-437f-a5d3-8173fd663e96 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5f5d7c70-bc02-437f-a5d3-8173fd663e96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5f5d7c70-bc02-437f-a5d3-8173fd663e96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96-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-5f5d7c70-bc02-437f-a5d3-8173fd663e96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96 .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-5f5d7c70-bc02-437f-a5d3-8173fd663e96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96 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-5f5d7c70-bc02-437f-a5d3-8173fd663e96 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5f5d7c70-bc02-437f-a5d3-8173fd663e96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5f5d7c70-bc02-437f-a5d3-8173fd663e96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96-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-5f5d7c70-bc02-437f-a5d3-8173fd663e96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96 .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-5f5d7c70-bc02-437f-a5d3-8173fd663e96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96 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-5f5d7c70-bc02-437f-a5d3-8173fd663e96 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5f5d7c70-bc02-437f-a5d3-8173fd663e96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5f5d7c70-bc02-437f-a5d3-8173fd663e96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96-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-5f5d7c70-bc02-437f-a5d3-8173fd663e96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96 .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-5f5d7c70-bc02-437f-a5d3-8173fd663e96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96 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-5f5d7c70-bc02-437f-a5d3-8173fd663e96 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5f5d7c70-bc02-437f-a5d3-8173fd663e96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5f5d7c70-bc02-437f-a5d3-8173fd663e96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f5d7c70-bc02-437f-a5d3-8173fd663e96.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-0d44682d-7fa6-4054-b194-c54438c6f26f {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0d44682d-7fa6-4054-b194-c54438c6f26f .shogun-heading-component h1 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


@media (max-width: 767px){#s-0d44682d-7fa6-4054-b194-c54438c6f26f .shogun-heading-component h1 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
#s-d9f38875-6166-4690-85de-37808c39a191 {
  margin-left: 24%;
margin-right: 24%;
}
@media (min-width: 1200px){#s-d9f38875-6166-4690-85de-37808c39a191 {
  display: none;
}
#s-d9f38875-6166-4690-85de-37808c39a191, #wrap-s-d9f38875-6166-4690-85de-37808c39a191, #wrap-content-s-d9f38875-6166-4690-85de-37808c39a191 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d9f38875-6166-4690-85de-37808c39a191 {
  display: none;
}
#s-d9f38875-6166-4690-85de-37808c39a191, #wrap-s-d9f38875-6166-4690-85de-37808c39a191, #wrap-content-s-d9f38875-6166-4690-85de-37808c39a191 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d9f38875-6166-4690-85de-37808c39a191 {
  display: none;
}
#s-d9f38875-6166-4690-85de-37808c39a191, #wrap-s-d9f38875-6166-4690-85de-37808c39a191, #wrap-content-s-d9f38875-6166-4690-85de-37808c39a191 { display: none !important; }}@media (max-width: 767px){#s-d9f38875-6166-4690-85de-37808c39a191 {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-d9f38875-6166-4690-85de-37808c39a191 .shg-proportional-font-size,
#s-d9f38875-6166-4690-85de-37808c39a191 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-39d28fe3-b618-4a93-864c-664430451d9d {
  margin-left: 24%;
margin-right: 24%;
}
@media (max-width: 767px){#s-39d28fe3-b618-4a93-864c-664430451d9d {
  margin-left: 5%;
margin-right: 5%;
display: none;
}
#s-39d28fe3-b618-4a93-864c-664430451d9d, #wrap-s-39d28fe3-b618-4a93-864c-664430451d9d, #wrap-content-s-39d28fe3-b618-4a93-864c-664430451d9d { display: none !important; }}
#s-39d28fe3-b618-4a93-864c-664430451d9d .shg-proportional-font-size,
#s-39d28fe3-b618-4a93-864c-664430451d9d .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-ceb1300b-01fa-4774-9ed9-5c7211af781b {
  margin-left: 16%;
margin-right: 16%;
max-width: 1262px;
text-align: center;
}
@media (max-width: 767px){#s-ceb1300b-01fa-4774-9ed9-5c7211af781b {
  display: none;
}
#s-ceb1300b-01fa-4774-9ed9-5c7211af781b, #wrap-s-ceb1300b-01fa-4774-9ed9-5c7211af781b, #wrap-content-s-ceb1300b-01fa-4774-9ed9-5c7211af781b { display: none !important; }}
#s-ceb1300b-01fa-4774-9ed9-5c7211af781b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ceb1300b-01fa-4774-9ed9-5c7211af781b-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-ceb1300b-01fa-4774-9ed9-5c7211af781b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 16%;
  margin-right: 16%;
  
  
}

#s-ceb1300b-01fa-4774-9ed9-5c7211af781b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 0%;
  padding-right: 0%;
  
  
}


.shg-image-content-margin-container-s-ceb1300b-01fa-4774-9ed9-5c7211af781b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ceb1300b-01fa-4774-9ed9-5c7211af781b img.shogun-image {
  width: 100%;
  
  
  max-width: 1262px;

  /* 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-ceb1300b-01fa-4774-9ed9-5c7211af781b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ceb1300b-01fa-4774-9ed9-5c7211af781b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ceb1300b-01fa-4774-9ed9-5c7211af781b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ceb1300b-01fa-4774-9ed9-5c7211af781b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-ceb1300b-01fa-4774-9ed9-5c7211af781b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ceb1300b-01fa-4774-9ed9-5c7211af781b-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-ceb1300b-01fa-4774-9ed9-5c7211af781b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ceb1300b-01fa-4774-9ed9-5c7211af781b .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-ceb1300b-01fa-4774-9ed9-5c7211af781b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ceb1300b-01fa-4774-9ed9-5c7211af781b 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-ceb1300b-01fa-4774-9ed9-5c7211af781b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ceb1300b-01fa-4774-9ed9-5c7211af781b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ceb1300b-01fa-4774-9ed9-5c7211af781b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ceb1300b-01fa-4774-9ed9-5c7211af781b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-ceb1300b-01fa-4774-9ed9-5c7211af781b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ceb1300b-01fa-4774-9ed9-5c7211af781b-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-ceb1300b-01fa-4774-9ed9-5c7211af781b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ceb1300b-01fa-4774-9ed9-5c7211af781b .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-ceb1300b-01fa-4774-9ed9-5c7211af781b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ceb1300b-01fa-4774-9ed9-5c7211af781b 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-ceb1300b-01fa-4774-9ed9-5c7211af781b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ceb1300b-01fa-4774-9ed9-5c7211af781b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ceb1300b-01fa-4774-9ed9-5c7211af781b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ceb1300b-01fa-4774-9ed9-5c7211af781b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-ceb1300b-01fa-4774-9ed9-5c7211af781b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ceb1300b-01fa-4774-9ed9-5c7211af781b-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-ceb1300b-01fa-4774-9ed9-5c7211af781b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ceb1300b-01fa-4774-9ed9-5c7211af781b .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-ceb1300b-01fa-4774-9ed9-5c7211af781b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ceb1300b-01fa-4774-9ed9-5c7211af781b 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-ceb1300b-01fa-4774-9ed9-5c7211af781b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ceb1300b-01fa-4774-9ed9-5c7211af781b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ceb1300b-01fa-4774-9ed9-5c7211af781b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ceb1300b-01fa-4774-9ed9-5c7211af781b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-ceb1300b-01fa-4774-9ed9-5c7211af781b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ceb1300b-01fa-4774-9ed9-5c7211af781b-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-ceb1300b-01fa-4774-9ed9-5c7211af781b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ceb1300b-01fa-4774-9ed9-5c7211af781b .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-ceb1300b-01fa-4774-9ed9-5c7211af781b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ceb1300b-01fa-4774-9ed9-5c7211af781b 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-ceb1300b-01fa-4774-9ed9-5c7211af781b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ceb1300b-01fa-4774-9ed9-5c7211af781b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ceb1300b-01fa-4774-9ed9-5c7211af781b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ceb1300b-01fa-4774-9ed9-5c7211af781b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
.shogun-accordion-wrapper .shogun-accordion {
  margin-bottom: 0;
  border-radius: 4px;
}

.shogun-accordion {
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.shogun-accordion-wrapper .shogun-accordion + .shogun-accordion {
  margin-top: 5px;
}

.shogun-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.shogun-accordion-heading {
  color: #333;
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  cursor: pointer;
}

.shogun-accordion-title {
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  text-decoration: none;
  flex: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.shogun-accordion-body {
  display: none;
  opacity: 0;
  transition: opacity 0.5s linear;
}

.shogun-accordion-body.shogun-accordion-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.shogun-accordion-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.2em;
}

.shogun-accordion-icon > span {
  transition: 0.3s transform;
  position: absolute;
  right: 0;
  font-size: 1.2em;
}

.shogun-accordion-icon.shogun-icon-chevron > span::after {
  content: "▸";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-chevron
  > span {
  transform: rotate(90deg);
}

.shogun-accordion-icon.shogun-icon-plus > span::after {
  content: "＋";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-plus
  > span {
  transform: rotate(-225deg);
}

#s-647e8df9-1736-47b2-b721-1fd3b49f93a5 {
  margin-left: 4%;
margin-right: 4%;
}
@media (min-width: 1200px){#s-647e8df9-1736-47b2-b721-1fd3b49f93a5 {
  display: none;
}
#s-647e8df9-1736-47b2-b721-1fd3b49f93a5, #wrap-s-647e8df9-1736-47b2-b721-1fd3b49f93a5, #wrap-content-s-647e8df9-1736-47b2-b721-1fd3b49f93a5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-647e8df9-1736-47b2-b721-1fd3b49f93a5 {
  display: none;
}
#s-647e8df9-1736-47b2-b721-1fd3b49f93a5, #wrap-s-647e8df9-1736-47b2-b721-1fd3b49f93a5, #wrap-content-s-647e8df9-1736-47b2-b721-1fd3b49f93a5 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-647e8df9-1736-47b2-b721-1fd3b49f93a5 {
  display: none;
}
#s-647e8df9-1736-47b2-b721-1fd3b49f93a5, #wrap-s-647e8df9-1736-47b2-b721-1fd3b49f93a5, #wrap-content-s-647e8df9-1736-47b2-b721-1fd3b49f93a5 { display: none !important; }}
#s-647e8df9-1736-47b2-b721-1fd3b49f93a5 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-647e8df9-1736-47b2-b721-1fd3b49f93a5 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(0, 172, 78, 1);
  padding: 10px;
}

#s-647e8df9-1736-47b2-b721-1fd3b49f93a5 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(255, 255, 255, 1);
}

#s-647e8df9-1736-47b2-b721-1fd3b49f93a5 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-647e8df9-1736-47b2-b721-1fd3b49f93a5 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(255, 255, 255, 1);
  text-align: center;
  font-family: Montserrat;
  font-weight: 700;
  
  font-size: 21px;
}

#s-647e8df9-1736-47b2-b721-1fd3b49f93a5 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 21px;
}
#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d {
  margin-top: 20px;
margin-left: 3%;
margin-bottom: 20px;
margin-right: 3%;
max-width: 1890px;
text-align: center;
}

#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d-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-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 3%;
  margin-right: 3%;
  margin-top: 20px;
  margin-bottom: 20px;
}

#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d .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-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d img.shogun-image {
  width: 100%;
  
  
  max-width: 1890px;

  /* 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-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d-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-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d .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-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d 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-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d-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-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d .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-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d 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-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d-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-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d .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-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d 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-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d-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-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d .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-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d 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-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e1f1e7b2-8fc8-49ea-a115-3a994ae1c19d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-d4291ca4-1167-41d9-840d-88d7dcb360db {
  margin-top: 10px;
margin-left: 4%;
margin-right: 4%;
}
@media (min-width: 1200px){#s-d4291ca4-1167-41d9-840d-88d7dcb360db {
  display: none;
}
#s-d4291ca4-1167-41d9-840d-88d7dcb360db, #wrap-s-d4291ca4-1167-41d9-840d-88d7dcb360db, #wrap-content-s-d4291ca4-1167-41d9-840d-88d7dcb360db { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d4291ca4-1167-41d9-840d-88d7dcb360db {
  display: none;
}
#s-d4291ca4-1167-41d9-840d-88d7dcb360db, #wrap-s-d4291ca4-1167-41d9-840d-88d7dcb360db, #wrap-content-s-d4291ca4-1167-41d9-840d-88d7dcb360db { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d4291ca4-1167-41d9-840d-88d7dcb360db {
  display: none;
}
#s-d4291ca4-1167-41d9-840d-88d7dcb360db, #wrap-s-d4291ca4-1167-41d9-840d-88d7dcb360db, #wrap-content-s-d4291ca4-1167-41d9-840d-88d7dcb360db { display: none !important; }}
#s-d4291ca4-1167-41d9-840d-88d7dcb360db > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-d4291ca4-1167-41d9-840d-88d7dcb360db > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(0, 172, 78, 1);
  padding: 10px;
}

#s-d4291ca4-1167-41d9-840d-88d7dcb360db > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(255, 255, 255, 1);
}

#s-d4291ca4-1167-41d9-840d-88d7dcb360db > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-d4291ca4-1167-41d9-840d-88d7dcb360db > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(255, 255, 255, 1);
  text-align: center;
  font-family: Montserrat;
  font-weight: 700;
  
  font-size: 21px;
}

#s-d4291ca4-1167-41d9-840d-88d7dcb360db > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 21px;
}
#s-6e53395d-2cd5-47f4-813f-838f1e77387b {
  margin-top: 20px;
margin-left: 3%;
margin-bottom: 20px;
margin-right: 3%;
max-width: 1890px;
text-align: center;
}

#s-6e53395d-2cd5-47f4-813f-838f1e77387b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6e53395d-2cd5-47f4-813f-838f1e77387b-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-6e53395d-2cd5-47f4-813f-838f1e77387b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 3%;
  margin-right: 3%;
  margin-top: 20px;
  margin-bottom: 20px;
}

#s-6e53395d-2cd5-47f4-813f-838f1e77387b .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-6e53395d-2cd5-47f4-813f-838f1e77387b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6e53395d-2cd5-47f4-813f-838f1e77387b img.shogun-image {
  width: 100%;
  
  
  max-width: 1890px;

  /* 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-6e53395d-2cd5-47f4-813f-838f1e77387b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6e53395d-2cd5-47f4-813f-838f1e77387b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e53395d-2cd5-47f4-813f-838f1e77387b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e53395d-2cd5-47f4-813f-838f1e77387b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-6e53395d-2cd5-47f4-813f-838f1e77387b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6e53395d-2cd5-47f4-813f-838f1e77387b-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-6e53395d-2cd5-47f4-813f-838f1e77387b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6e53395d-2cd5-47f4-813f-838f1e77387b .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-6e53395d-2cd5-47f4-813f-838f1e77387b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6e53395d-2cd5-47f4-813f-838f1e77387b 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-6e53395d-2cd5-47f4-813f-838f1e77387b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6e53395d-2cd5-47f4-813f-838f1e77387b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e53395d-2cd5-47f4-813f-838f1e77387b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e53395d-2cd5-47f4-813f-838f1e77387b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-6e53395d-2cd5-47f4-813f-838f1e77387b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6e53395d-2cd5-47f4-813f-838f1e77387b-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-6e53395d-2cd5-47f4-813f-838f1e77387b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6e53395d-2cd5-47f4-813f-838f1e77387b .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-6e53395d-2cd5-47f4-813f-838f1e77387b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6e53395d-2cd5-47f4-813f-838f1e77387b 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-6e53395d-2cd5-47f4-813f-838f1e77387b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6e53395d-2cd5-47f4-813f-838f1e77387b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e53395d-2cd5-47f4-813f-838f1e77387b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e53395d-2cd5-47f4-813f-838f1e77387b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-6e53395d-2cd5-47f4-813f-838f1e77387b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6e53395d-2cd5-47f4-813f-838f1e77387b-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-6e53395d-2cd5-47f4-813f-838f1e77387b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6e53395d-2cd5-47f4-813f-838f1e77387b .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-6e53395d-2cd5-47f4-813f-838f1e77387b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6e53395d-2cd5-47f4-813f-838f1e77387b 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-6e53395d-2cd5-47f4-813f-838f1e77387b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6e53395d-2cd5-47f4-813f-838f1e77387b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e53395d-2cd5-47f4-813f-838f1e77387b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e53395d-2cd5-47f4-813f-838f1e77387b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-6e53395d-2cd5-47f4-813f-838f1e77387b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6e53395d-2cd5-47f4-813f-838f1e77387b-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-6e53395d-2cd5-47f4-813f-838f1e77387b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6e53395d-2cd5-47f4-813f-838f1e77387b .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-6e53395d-2cd5-47f4-813f-838f1e77387b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6e53395d-2cd5-47f4-813f-838f1e77387b 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-6e53395d-2cd5-47f4-813f-838f1e77387b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6e53395d-2cd5-47f4-813f-838f1e77387b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e53395d-2cd5-47f4-813f-838f1e77387b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e53395d-2cd5-47f4-813f-838f1e77387b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-4adf01c5-ce71-44bd-bfc8-9f55f43567a3 {
  margin-top: 10px;
margin-left: 4%;
margin-right: 4%;
}
@media (min-width: 1200px){#s-4adf01c5-ce71-44bd-bfc8-9f55f43567a3 {
  display: none;
}
#s-4adf01c5-ce71-44bd-bfc8-9f55f43567a3, #wrap-s-4adf01c5-ce71-44bd-bfc8-9f55f43567a3, #wrap-content-s-4adf01c5-ce71-44bd-bfc8-9f55f43567a3 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4adf01c5-ce71-44bd-bfc8-9f55f43567a3 {
  display: none;
}
#s-4adf01c5-ce71-44bd-bfc8-9f55f43567a3, #wrap-s-4adf01c5-ce71-44bd-bfc8-9f55f43567a3, #wrap-content-s-4adf01c5-ce71-44bd-bfc8-9f55f43567a3 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4adf01c5-ce71-44bd-bfc8-9f55f43567a3 {
  display: none;
}
#s-4adf01c5-ce71-44bd-bfc8-9f55f43567a3, #wrap-s-4adf01c5-ce71-44bd-bfc8-9f55f43567a3, #wrap-content-s-4adf01c5-ce71-44bd-bfc8-9f55f43567a3 { display: none !important; }}
#s-4adf01c5-ce71-44bd-bfc8-9f55f43567a3 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-4adf01c5-ce71-44bd-bfc8-9f55f43567a3 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(0, 172, 78, 1);
  padding: 10px;
}

#s-4adf01c5-ce71-44bd-bfc8-9f55f43567a3 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(255, 255, 255, 1);
}

#s-4adf01c5-ce71-44bd-bfc8-9f55f43567a3 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-4adf01c5-ce71-44bd-bfc8-9f55f43567a3 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(255, 255, 255, 1);
  text-align: center;
  font-family: Montserrat;
  font-weight: 700;
  
  font-size: 21px;
}

#s-4adf01c5-ce71-44bd-bfc8-9f55f43567a3 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 21px;
}
#s-6d2c6855-1b17-48a1-a96b-e8e52079200b {
  margin-top: 20px;
margin-left: 3%;
margin-bottom: 20px;
margin-right: 3%;
max-width: 1890px;
text-align: center;
}

#s-6d2c6855-1b17-48a1-a96b-e8e52079200b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6d2c6855-1b17-48a1-a96b-e8e52079200b-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-6d2c6855-1b17-48a1-a96b-e8e52079200b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 3%;
  margin-right: 3%;
  margin-top: 20px;
  margin-bottom: 20px;
}

#s-6d2c6855-1b17-48a1-a96b-e8e52079200b .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-6d2c6855-1b17-48a1-a96b-e8e52079200b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6d2c6855-1b17-48a1-a96b-e8e52079200b img.shogun-image {
  width: 100%;
  
  
  max-width: 1890px;

  /* 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-6d2c6855-1b17-48a1-a96b-e8e52079200b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6d2c6855-1b17-48a1-a96b-e8e52079200b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d2c6855-1b17-48a1-a96b-e8e52079200b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d2c6855-1b17-48a1-a96b-e8e52079200b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-6d2c6855-1b17-48a1-a96b-e8e52079200b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6d2c6855-1b17-48a1-a96b-e8e52079200b-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-6d2c6855-1b17-48a1-a96b-e8e52079200b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6d2c6855-1b17-48a1-a96b-e8e52079200b .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-6d2c6855-1b17-48a1-a96b-e8e52079200b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6d2c6855-1b17-48a1-a96b-e8e52079200b 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-6d2c6855-1b17-48a1-a96b-e8e52079200b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6d2c6855-1b17-48a1-a96b-e8e52079200b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d2c6855-1b17-48a1-a96b-e8e52079200b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d2c6855-1b17-48a1-a96b-e8e52079200b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-6d2c6855-1b17-48a1-a96b-e8e52079200b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6d2c6855-1b17-48a1-a96b-e8e52079200b-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-6d2c6855-1b17-48a1-a96b-e8e52079200b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6d2c6855-1b17-48a1-a96b-e8e52079200b .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-6d2c6855-1b17-48a1-a96b-e8e52079200b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6d2c6855-1b17-48a1-a96b-e8e52079200b 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-6d2c6855-1b17-48a1-a96b-e8e52079200b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6d2c6855-1b17-48a1-a96b-e8e52079200b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d2c6855-1b17-48a1-a96b-e8e52079200b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d2c6855-1b17-48a1-a96b-e8e52079200b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-6d2c6855-1b17-48a1-a96b-e8e52079200b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6d2c6855-1b17-48a1-a96b-e8e52079200b-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-6d2c6855-1b17-48a1-a96b-e8e52079200b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6d2c6855-1b17-48a1-a96b-e8e52079200b .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-6d2c6855-1b17-48a1-a96b-e8e52079200b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6d2c6855-1b17-48a1-a96b-e8e52079200b 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-6d2c6855-1b17-48a1-a96b-e8e52079200b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6d2c6855-1b17-48a1-a96b-e8e52079200b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d2c6855-1b17-48a1-a96b-e8e52079200b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d2c6855-1b17-48a1-a96b-e8e52079200b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-6d2c6855-1b17-48a1-a96b-e8e52079200b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6d2c6855-1b17-48a1-a96b-e8e52079200b-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-6d2c6855-1b17-48a1-a96b-e8e52079200b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6d2c6855-1b17-48a1-a96b-e8e52079200b .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-6d2c6855-1b17-48a1-a96b-e8e52079200b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6d2c6855-1b17-48a1-a96b-e8e52079200b 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-6d2c6855-1b17-48a1-a96b-e8e52079200b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6d2c6855-1b17-48a1-a96b-e8e52079200b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d2c6855-1b17-48a1-a96b-e8e52079200b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d2c6855-1b17-48a1-a96b-e8e52079200b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-50864fda-f95a-4436-8936-184bc4076f95 {
  margin-top: 10px;
margin-left: 4%;
margin-right: 4%;
}
@media (min-width: 1200px){#s-50864fda-f95a-4436-8936-184bc4076f95 {
  display: none;
}
#s-50864fda-f95a-4436-8936-184bc4076f95, #wrap-s-50864fda-f95a-4436-8936-184bc4076f95, #wrap-content-s-50864fda-f95a-4436-8936-184bc4076f95 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-50864fda-f95a-4436-8936-184bc4076f95 {
  display: none;
}
#s-50864fda-f95a-4436-8936-184bc4076f95, #wrap-s-50864fda-f95a-4436-8936-184bc4076f95, #wrap-content-s-50864fda-f95a-4436-8936-184bc4076f95 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-50864fda-f95a-4436-8936-184bc4076f95 {
  display: none;
}
#s-50864fda-f95a-4436-8936-184bc4076f95, #wrap-s-50864fda-f95a-4436-8936-184bc4076f95, #wrap-content-s-50864fda-f95a-4436-8936-184bc4076f95 { display: none !important; }}
#s-50864fda-f95a-4436-8936-184bc4076f95 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-50864fda-f95a-4436-8936-184bc4076f95 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(0, 172, 78, 1);
  padding: 10px;
}

#s-50864fda-f95a-4436-8936-184bc4076f95 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(255, 255, 255, 1);
}

#s-50864fda-f95a-4436-8936-184bc4076f95 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-50864fda-f95a-4436-8936-184bc4076f95 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(255, 255, 255, 1);
  text-align: center;
  font-family: Montserrat;
  font-weight: 700;
  
  font-size: 21px;
}

#s-50864fda-f95a-4436-8936-184bc4076f95 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 21px;
}
#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a {
  margin-top: 20px;
margin-left: 3%;
margin-bottom: 20px;
margin-right: 3%;
max-width: 1890px;
text-align: center;
}

#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a-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-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 3%;
  margin-right: 3%;
  margin-top: 20px;
  margin-bottom: 20px;
}

#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a .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-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a img.shogun-image {
  width: 100%;
  
  
  max-width: 1890px;

  /* 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-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a-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-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a .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-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a 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-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a-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-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a .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-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a 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-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a-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-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a .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-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a 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-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a-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-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a .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-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a 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-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-144db5ac-ab82-42b9-9e5a-4ed14f7ea86a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-07ac8608-8a12-4e78-9348-e1294c021f9f {
  margin-top: 10px;
margin-left: 4%;
margin-right: 4%;
}
@media (min-width: 1200px){#s-07ac8608-8a12-4e78-9348-e1294c021f9f {
  display: none;
}
#s-07ac8608-8a12-4e78-9348-e1294c021f9f, #wrap-s-07ac8608-8a12-4e78-9348-e1294c021f9f, #wrap-content-s-07ac8608-8a12-4e78-9348-e1294c021f9f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-07ac8608-8a12-4e78-9348-e1294c021f9f {
  display: none;
}
#s-07ac8608-8a12-4e78-9348-e1294c021f9f, #wrap-s-07ac8608-8a12-4e78-9348-e1294c021f9f, #wrap-content-s-07ac8608-8a12-4e78-9348-e1294c021f9f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-07ac8608-8a12-4e78-9348-e1294c021f9f {
  display: none;
}
#s-07ac8608-8a12-4e78-9348-e1294c021f9f, #wrap-s-07ac8608-8a12-4e78-9348-e1294c021f9f, #wrap-content-s-07ac8608-8a12-4e78-9348-e1294c021f9f { display: none !important; }}
#s-07ac8608-8a12-4e78-9348-e1294c021f9f > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-07ac8608-8a12-4e78-9348-e1294c021f9f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(0, 172, 78, 1);
  padding: 10px;
}

#s-07ac8608-8a12-4e78-9348-e1294c021f9f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(255, 255, 255, 1);
}

#s-07ac8608-8a12-4e78-9348-e1294c021f9f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-07ac8608-8a12-4e78-9348-e1294c021f9f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(255, 255, 255, 1);
  text-align: center;
  font-family: Montserrat;
  font-weight: 700;
  
  font-size: 21px;
}

#s-07ac8608-8a12-4e78-9348-e1294c021f9f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 21px;
}
#s-707b87c3-7e68-47e3-b9db-abdb266becd4 {
  margin-top: 20px;
margin-left: 3%;
margin-bottom: 20px;
margin-right: 3%;
max-width: 1890px;
text-align: center;
}

#s-707b87c3-7e68-47e3-b9db-abdb266becd4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-707b87c3-7e68-47e3-b9db-abdb266becd4-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-707b87c3-7e68-47e3-b9db-abdb266becd4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 3%;
  margin-right: 3%;
  margin-top: 20px;
  margin-bottom: 20px;
}

#s-707b87c3-7e68-47e3-b9db-abdb266becd4 .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-707b87c3-7e68-47e3-b9db-abdb266becd4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-707b87c3-7e68-47e3-b9db-abdb266becd4 img.shogun-image {
  width: 100%;
  
  
  max-width: 1890px;

  /* 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-707b87c3-7e68-47e3-b9db-abdb266becd4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-707b87c3-7e68-47e3-b9db-abdb266becd4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-707b87c3-7e68-47e3-b9db-abdb266becd4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-707b87c3-7e68-47e3-b9db-abdb266becd4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-707b87c3-7e68-47e3-b9db-abdb266becd4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-707b87c3-7e68-47e3-b9db-abdb266becd4-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-707b87c3-7e68-47e3-b9db-abdb266becd4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-707b87c3-7e68-47e3-b9db-abdb266becd4 .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-707b87c3-7e68-47e3-b9db-abdb266becd4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-707b87c3-7e68-47e3-b9db-abdb266becd4 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-707b87c3-7e68-47e3-b9db-abdb266becd4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-707b87c3-7e68-47e3-b9db-abdb266becd4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-707b87c3-7e68-47e3-b9db-abdb266becd4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-707b87c3-7e68-47e3-b9db-abdb266becd4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-707b87c3-7e68-47e3-b9db-abdb266becd4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-707b87c3-7e68-47e3-b9db-abdb266becd4-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-707b87c3-7e68-47e3-b9db-abdb266becd4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-707b87c3-7e68-47e3-b9db-abdb266becd4 .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-707b87c3-7e68-47e3-b9db-abdb266becd4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-707b87c3-7e68-47e3-b9db-abdb266becd4 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-707b87c3-7e68-47e3-b9db-abdb266becd4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-707b87c3-7e68-47e3-b9db-abdb266becd4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-707b87c3-7e68-47e3-b9db-abdb266becd4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-707b87c3-7e68-47e3-b9db-abdb266becd4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-707b87c3-7e68-47e3-b9db-abdb266becd4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-707b87c3-7e68-47e3-b9db-abdb266becd4-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-707b87c3-7e68-47e3-b9db-abdb266becd4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-707b87c3-7e68-47e3-b9db-abdb266becd4 .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-707b87c3-7e68-47e3-b9db-abdb266becd4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-707b87c3-7e68-47e3-b9db-abdb266becd4 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-707b87c3-7e68-47e3-b9db-abdb266becd4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-707b87c3-7e68-47e3-b9db-abdb266becd4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-707b87c3-7e68-47e3-b9db-abdb266becd4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-707b87c3-7e68-47e3-b9db-abdb266becd4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-707b87c3-7e68-47e3-b9db-abdb266becd4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-707b87c3-7e68-47e3-b9db-abdb266becd4-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-707b87c3-7e68-47e3-b9db-abdb266becd4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-707b87c3-7e68-47e3-b9db-abdb266becd4 .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-707b87c3-7e68-47e3-b9db-abdb266becd4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-707b87c3-7e68-47e3-b9db-abdb266becd4 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-707b87c3-7e68-47e3-b9db-abdb266becd4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-707b87c3-7e68-47e3-b9db-abdb266becd4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-707b87c3-7e68-47e3-b9db-abdb266becd4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-707b87c3-7e68-47e3-b9db-abdb266becd4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-6d4e961f-9aab-4ac0-a3b3-20e5691e1abd {
  margin-top: 10px;
margin-left: 4%;
margin-right: 4%;
}
@media (min-width: 1200px){#s-6d4e961f-9aab-4ac0-a3b3-20e5691e1abd {
  display: none;
}
#s-6d4e961f-9aab-4ac0-a3b3-20e5691e1abd, #wrap-s-6d4e961f-9aab-4ac0-a3b3-20e5691e1abd, #wrap-content-s-6d4e961f-9aab-4ac0-a3b3-20e5691e1abd { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6d4e961f-9aab-4ac0-a3b3-20e5691e1abd {
  display: none;
}
#s-6d4e961f-9aab-4ac0-a3b3-20e5691e1abd, #wrap-s-6d4e961f-9aab-4ac0-a3b3-20e5691e1abd, #wrap-content-s-6d4e961f-9aab-4ac0-a3b3-20e5691e1abd { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6d4e961f-9aab-4ac0-a3b3-20e5691e1abd {
  display: none;
}
#s-6d4e961f-9aab-4ac0-a3b3-20e5691e1abd, #wrap-s-6d4e961f-9aab-4ac0-a3b3-20e5691e1abd, #wrap-content-s-6d4e961f-9aab-4ac0-a3b3-20e5691e1abd { display: none !important; }}
#s-6d4e961f-9aab-4ac0-a3b3-20e5691e1abd > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-6d4e961f-9aab-4ac0-a3b3-20e5691e1abd > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(0, 172, 78, 1);
  padding: 10px;
}

#s-6d4e961f-9aab-4ac0-a3b3-20e5691e1abd > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(255, 255, 255, 1);
}

#s-6d4e961f-9aab-4ac0-a3b3-20e5691e1abd > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-6d4e961f-9aab-4ac0-a3b3-20e5691e1abd > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(255, 255, 255, 1);
  text-align: center;
  font-family: Montserrat;
  font-weight: 700;
  
  font-size: 21px;
}

#s-6d4e961f-9aab-4ac0-a3b3-20e5691e1abd > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 21px;
}
#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e {
  margin-top: 20px;
margin-left: 3%;
margin-bottom: 20px;
margin-right: 3%;
max-width: 1890px;
text-align: center;
}

#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e-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-cc311648-bdc2-4830-ba2e-3d2c338b6a5e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 3%;
  margin-right: 3%;
  margin-top: 20px;
  margin-bottom: 20px;
}

#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e .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-cc311648-bdc2-4830-ba2e-3d2c338b6a5e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e img.shogun-image {
  width: 100%;
  
  
  max-width: 1890px;

  /* 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-cc311648-bdc2-4830-ba2e-3d2c338b6a5e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e-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-cc311648-bdc2-4830-ba2e-3d2c338b6a5e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e .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-cc311648-bdc2-4830-ba2e-3d2c338b6a5e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e 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-cc311648-bdc2-4830-ba2e-3d2c338b6a5e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e-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-cc311648-bdc2-4830-ba2e-3d2c338b6a5e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e .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-cc311648-bdc2-4830-ba2e-3d2c338b6a5e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e 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-cc311648-bdc2-4830-ba2e-3d2c338b6a5e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e-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-cc311648-bdc2-4830-ba2e-3d2c338b6a5e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e .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-cc311648-bdc2-4830-ba2e-3d2c338b6a5e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e 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-cc311648-bdc2-4830-ba2e-3d2c338b6a5e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e-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-cc311648-bdc2-4830-ba2e-3d2c338b6a5e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e .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-cc311648-bdc2-4830-ba2e-3d2c338b6a5e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e 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-cc311648-bdc2-4830-ba2e-3d2c338b6a5e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc311648-bdc2-4830-ba2e-3d2c338b6a5e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-7da430e0-ba71-4b25-86e8-0be8e908c846 {
  margin-top: 10px;
margin-left: 4%;
margin-right: 4%;
}
@media (min-width: 1200px){#s-7da430e0-ba71-4b25-86e8-0be8e908c846 {
  display: none;
}
#s-7da430e0-ba71-4b25-86e8-0be8e908c846, #wrap-s-7da430e0-ba71-4b25-86e8-0be8e908c846, #wrap-content-s-7da430e0-ba71-4b25-86e8-0be8e908c846 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7da430e0-ba71-4b25-86e8-0be8e908c846 {
  display: none;
}
#s-7da430e0-ba71-4b25-86e8-0be8e908c846, #wrap-s-7da430e0-ba71-4b25-86e8-0be8e908c846, #wrap-content-s-7da430e0-ba71-4b25-86e8-0be8e908c846 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7da430e0-ba71-4b25-86e8-0be8e908c846 {
  display: none;
}
#s-7da430e0-ba71-4b25-86e8-0be8e908c846, #wrap-s-7da430e0-ba71-4b25-86e8-0be8e908c846, #wrap-content-s-7da430e0-ba71-4b25-86e8-0be8e908c846 { display: none !important; }}
#s-7da430e0-ba71-4b25-86e8-0be8e908c846 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-7da430e0-ba71-4b25-86e8-0be8e908c846 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(0, 172, 78, 1);
  padding: 10px;
}

#s-7da430e0-ba71-4b25-86e8-0be8e908c846 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(255, 255, 255, 1);
}

#s-7da430e0-ba71-4b25-86e8-0be8e908c846 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-7da430e0-ba71-4b25-86e8-0be8e908c846 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(255, 255, 255, 1);
  text-align: center;
  font-family: Montserrat;
  font-weight: 700;
  
  font-size: 21px;
}

#s-7da430e0-ba71-4b25-86e8-0be8e908c846 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 21px;
}
#s-41fadf30-dad4-41bd-8350-664b5ddb530d {
  margin-top: 20px;
margin-left: 3%;
margin-bottom: 20px;
margin-right: 3%;
max-width: 1890px;
text-align: center;
}

#s-41fadf30-dad4-41bd-8350-664b5ddb530d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-41fadf30-dad4-41bd-8350-664b5ddb530d-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-41fadf30-dad4-41bd-8350-664b5ddb530d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 3%;
  margin-right: 3%;
  margin-top: 20px;
  margin-bottom: 20px;
}

#s-41fadf30-dad4-41bd-8350-664b5ddb530d .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-41fadf30-dad4-41bd-8350-664b5ddb530d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-41fadf30-dad4-41bd-8350-664b5ddb530d img.shogun-image {
  width: 100%;
  
  
  max-width: 1890px;

  /* 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-41fadf30-dad4-41bd-8350-664b5ddb530d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-41fadf30-dad4-41bd-8350-664b5ddb530d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-41fadf30-dad4-41bd-8350-664b5ddb530d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41fadf30-dad4-41bd-8350-664b5ddb530d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-41fadf30-dad4-41bd-8350-664b5ddb530d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-41fadf30-dad4-41bd-8350-664b5ddb530d-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-41fadf30-dad4-41bd-8350-664b5ddb530d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-41fadf30-dad4-41bd-8350-664b5ddb530d .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-41fadf30-dad4-41bd-8350-664b5ddb530d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-41fadf30-dad4-41bd-8350-664b5ddb530d 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-41fadf30-dad4-41bd-8350-664b5ddb530d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-41fadf30-dad4-41bd-8350-664b5ddb530d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-41fadf30-dad4-41bd-8350-664b5ddb530d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41fadf30-dad4-41bd-8350-664b5ddb530d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-41fadf30-dad4-41bd-8350-664b5ddb530d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-41fadf30-dad4-41bd-8350-664b5ddb530d-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-41fadf30-dad4-41bd-8350-664b5ddb530d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-41fadf30-dad4-41bd-8350-664b5ddb530d .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-41fadf30-dad4-41bd-8350-664b5ddb530d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-41fadf30-dad4-41bd-8350-664b5ddb530d 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-41fadf30-dad4-41bd-8350-664b5ddb530d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-41fadf30-dad4-41bd-8350-664b5ddb530d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-41fadf30-dad4-41bd-8350-664b5ddb530d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41fadf30-dad4-41bd-8350-664b5ddb530d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-41fadf30-dad4-41bd-8350-664b5ddb530d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-41fadf30-dad4-41bd-8350-664b5ddb530d-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-41fadf30-dad4-41bd-8350-664b5ddb530d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-41fadf30-dad4-41bd-8350-664b5ddb530d .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-41fadf30-dad4-41bd-8350-664b5ddb530d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-41fadf30-dad4-41bd-8350-664b5ddb530d 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-41fadf30-dad4-41bd-8350-664b5ddb530d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-41fadf30-dad4-41bd-8350-664b5ddb530d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-41fadf30-dad4-41bd-8350-664b5ddb530d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41fadf30-dad4-41bd-8350-664b5ddb530d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-41fadf30-dad4-41bd-8350-664b5ddb530d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-41fadf30-dad4-41bd-8350-664b5ddb530d-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-41fadf30-dad4-41bd-8350-664b5ddb530d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-41fadf30-dad4-41bd-8350-664b5ddb530d .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-41fadf30-dad4-41bd-8350-664b5ddb530d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-41fadf30-dad4-41bd-8350-664b5ddb530d 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-41fadf30-dad4-41bd-8350-664b5ddb530d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-41fadf30-dad4-41bd-8350-664b5ddb530d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-41fadf30-dad4-41bd-8350-664b5ddb530d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41fadf30-dad4-41bd-8350-664b5ddb530d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-ce9b2cff-971d-4aea-9a63-31fa3aedb9fa {
  margin-left: 24%;
margin-right: 24%;
}
@media (max-width: 767px){#s-ce9b2cff-971d-4aea-9a63-31fa3aedb9fa {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-ce9b2cff-971d-4aea-9a63-31fa3aedb9fa .shg-proportional-font-size,
#s-ce9b2cff-971d-4aea-9a63-31fa3aedb9fa .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-6b1198fd-28e2-488e-aaf9-345835319823 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 10px;
padding-left: 80px;
padding-bottom: 10px;
padding-right: 80px;
border-radius: 7px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-6b1198fd-28e2-488e-aaf9-345835319823:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-6b1198fd-28e2-488e-aaf9-345835319823:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-6b1198fd-28e2-488e-aaf9-345835319823 {
  padding-left: 50px;
padding-right: 50px;
}
}

  #s-6b1198fd-28e2-488e-aaf9-345835319823-root {
    text-align: center;
  }


#s-6b1198fd-28e2-488e-aaf9-345835319823.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6b1198fd-28e2-488e-aaf9-345835319823-root {
    text-align: center;
  }


#s-6b1198fd-28e2-488e-aaf9-345835319823.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6b1198fd-28e2-488e-aaf9-345835319823-root {
    text-align: center;
  }


#s-6b1198fd-28e2-488e-aaf9-345835319823.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6b1198fd-28e2-488e-aaf9-345835319823-root {
    text-align: center;
  }


#s-6b1198fd-28e2-488e-aaf9-345835319823.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6b1198fd-28e2-488e-aaf9-345835319823-root {
    text-align: center;
  }


#s-6b1198fd-28e2-488e-aaf9-345835319823.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-de6e0734-7b71-4167-b740-196a31136d72 {
  margin-left: 24%;
margin-right: 24%;
}
@media (max-width: 767px){#s-de6e0734-7b71-4167-b740-196a31136d72 {
  margin-left: 11%;
margin-right: 11%;
}
}
#s-de6e0734-7b71-4167-b740-196a31136d72 .shg-proportional-font-size,
#s-de6e0734-7b71-4167-b740-196a31136d72 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

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

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

#s-03982d0c-fe53-4ff9-8e14-ffac1bf3d7c6 {
  margin-left: 6%;
margin-right: 6%;
}
@media (min-width: 1200px){#s-03982d0c-fe53-4ff9-8e14-ffac1bf3d7c6 {
  display: none;
}
#s-03982d0c-fe53-4ff9-8e14-ffac1bf3d7c6, #wrap-s-03982d0c-fe53-4ff9-8e14-ffac1bf3d7c6, #wrap-content-s-03982d0c-fe53-4ff9-8e14-ffac1bf3d7c6 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-03982d0c-fe53-4ff9-8e14-ffac1bf3d7c6 {
  display: none;
}
#s-03982d0c-fe53-4ff9-8e14-ffac1bf3d7c6, #wrap-s-03982d0c-fe53-4ff9-8e14-ffac1bf3d7c6, #wrap-content-s-03982d0c-fe53-4ff9-8e14-ffac1bf3d7c6 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-03982d0c-fe53-4ff9-8e14-ffac1bf3d7c6 {
  display: none;
}
#s-03982d0c-fe53-4ff9-8e14-ffac1bf3d7c6, #wrap-s-03982d0c-fe53-4ff9-8e14-ffac1bf3d7c6, #wrap-content-s-03982d0c-fe53-4ff9-8e14-ffac1bf3d7c6 { display: none !important; }}
#s-03982d0c-fe53-4ff9-8e14-ffac1bf3d7c6 hr {
  border-top: 2px solid #ddd;
}

#s-c373f4bd-b841-415b-abb7-feccd3496c4a {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
min-height: 50px;
}








#s-c373f4bd-b841-415b-abb7-feccd3496c4a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c373f4bd-b841-415b-abb7-feccd3496c4a.shg-box.shg-c {
  justify-content: center;
}

#s-8a78a10a-220b-42d1-b6c6-083cd63189eb {
  margin-left: auto;
margin-right: auto;
max-width: 25px;
text-align: center;
}

#s-8a78a10a-220b-42d1-b6c6-083cd63189eb {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8a78a10a-220b-42d1-b6c6-083cd63189eb-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-8a78a10a-220b-42d1-b6c6-083cd63189eb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8a78a10a-220b-42d1-b6c6-083cd63189eb .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-8a78a10a-220b-42d1-b6c6-083cd63189eb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8a78a10a-220b-42d1-b6c6-083cd63189eb img.shogun-image {
  width: 100%;
  
  
  max-width: 25px;

  /* 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-8a78a10a-220b-42d1-b6c6-083cd63189eb .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8a78a10a-220b-42d1-b6c6-083cd63189eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a78a10a-220b-42d1-b6c6-083cd63189eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a78a10a-220b-42d1-b6c6-083cd63189eb.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-8a78a10a-220b-42d1-b6c6-083cd63189eb {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8a78a10a-220b-42d1-b6c6-083cd63189eb-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-8a78a10a-220b-42d1-b6c6-083cd63189eb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8a78a10a-220b-42d1-b6c6-083cd63189eb .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-8a78a10a-220b-42d1-b6c6-083cd63189eb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8a78a10a-220b-42d1-b6c6-083cd63189eb 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-8a78a10a-220b-42d1-b6c6-083cd63189eb .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8a78a10a-220b-42d1-b6c6-083cd63189eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a78a10a-220b-42d1-b6c6-083cd63189eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a78a10a-220b-42d1-b6c6-083cd63189eb.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-8a78a10a-220b-42d1-b6c6-083cd63189eb {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8a78a10a-220b-42d1-b6c6-083cd63189eb-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-8a78a10a-220b-42d1-b6c6-083cd63189eb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8a78a10a-220b-42d1-b6c6-083cd63189eb .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-8a78a10a-220b-42d1-b6c6-083cd63189eb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8a78a10a-220b-42d1-b6c6-083cd63189eb 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-8a78a10a-220b-42d1-b6c6-083cd63189eb .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8a78a10a-220b-42d1-b6c6-083cd63189eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a78a10a-220b-42d1-b6c6-083cd63189eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a78a10a-220b-42d1-b6c6-083cd63189eb.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-8a78a10a-220b-42d1-b6c6-083cd63189eb {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8a78a10a-220b-42d1-b6c6-083cd63189eb-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-8a78a10a-220b-42d1-b6c6-083cd63189eb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8a78a10a-220b-42d1-b6c6-083cd63189eb .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-8a78a10a-220b-42d1-b6c6-083cd63189eb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8a78a10a-220b-42d1-b6c6-083cd63189eb 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-8a78a10a-220b-42d1-b6c6-083cd63189eb .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8a78a10a-220b-42d1-b6c6-083cd63189eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a78a10a-220b-42d1-b6c6-083cd63189eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a78a10a-220b-42d1-b6c6-083cd63189eb.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-8a78a10a-220b-42d1-b6c6-083cd63189eb {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8a78a10a-220b-42d1-b6c6-083cd63189eb-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-8a78a10a-220b-42d1-b6c6-083cd63189eb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8a78a10a-220b-42d1-b6c6-083cd63189eb .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-8a78a10a-220b-42d1-b6c6-083cd63189eb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8a78a10a-220b-42d1-b6c6-083cd63189eb 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-8a78a10a-220b-42d1-b6c6-083cd63189eb .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8a78a10a-220b-42d1-b6c6-083cd63189eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a78a10a-220b-42d1-b6c6-083cd63189eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a78a10a-220b-42d1-b6c6-083cd63189eb.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-6cd8323f-e02f-4a16-b94b-1de3e593e50e {
  margin-left: auto;
margin-right: auto;
padding-left: 1%;
}

#s-6cd8323f-e02f-4a16-b94b-1de3e593e50e .shg-proportional-font-size,
#s-6cd8323f-e02f-4a16-b94b-1de3e593e50e .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-97304ea8-00a8-4672-a134-d8e97a8452b0 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-97304ea8-00a8-4672-a134-d8e97a8452b0 .shogun-heading-component h1 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


@media (max-width: 767px){#s-97304ea8-00a8-4672-a134-d8e97a8452b0 .shogun-heading-component h1 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
#s-8a3e08d9-f2e9-4bc2-a761-3b99b7196c5e {
  margin-left: 24%;
margin-right: 24%;
}
@media (max-width: 767px){#s-8a3e08d9-f2e9-4bc2-a761-3b99b7196c5e {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-8a3e08d9-f2e9-4bc2-a761-3b99b7196c5e .shg-proportional-font-size,
#s-8a3e08d9-f2e9-4bc2-a761-3b99b7196c5e .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-8a0c235b-fe72-4edf-a2e5-5e32f3723a48 {
  box-shadow:1px 1px 7px 3px rgba(229, 229, 229, 1);
margin-left: 15%;
margin-right: 15%;
padding-top: 25px;
padding-bottom: 50px;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(175, 175, 175, 1);
border-style: none;
border-radius: 25px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-8a0c235b-fe72-4edf-a2e5-5e32f3723a48 {
  margin-left: 3%;
margin-right: 3%;
}
}@media (max-width: 767px){#s-8a0c235b-fe72-4edf-a2e5-5e32f3723a48 {
  margin-left: 5%;
margin-right: 5%;
}
}
@media (min-width: 0px) {
[id="s-8a0c235b-fe72-4edf-a2e5-5e32f3723a48"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8a0c235b-fe72-4edf-a2e5-5e32f3723a48"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8a0c235b-fe72-4edf-a2e5-5e32f3723a48"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8a0c235b-fe72-4edf-a2e5-5e32f3723a48"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8a0c235b-fe72-4edf-a2e5-5e32f3723a48"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8a0c235b-fe72-4edf-a2e5-5e32f3723a48"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8a0c235b-fe72-4edf-a2e5-5e32f3723a48"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-8c3af1c1-6a7c-4836-a612-a997cb46f0cc {
  margin-top: 25px;
margin-left: 23%;
margin-bottom: 25px;
margin-right: 23%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 255px;
background-color: rgba(0, 172, 78, 1);
}

#s-8c3af1c1-6a7c-4836-a612-a997cb46f0cc .shg-proportional-font-size,
#s-8c3af1c1-6a7c-4836-a612-a997cb46f0cc .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 {
  margin-top: 45px;
margin-left: auto;
margin-right: auto;
max-width: 300px;
text-align: center;
}
@media (max-width: 767px){#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 {
  max-width: 200px;
}
}
#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16-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-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 45px;
  
}

#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 .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-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 img.shogun-image {
  width: 100%;
  
  
  max-width: 300px;

  /* 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-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16-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-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 .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-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 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-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16-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-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 .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-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 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-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16-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-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 .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-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 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-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16-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-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 .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-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 img.shogun-image {
  width: 100%;
  
  
  max-width: 200px;

  /* 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-cc153887-cc1b-4ba9-9e8c-130c6ce34a16 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc153887-cc1b-4ba9-9e8c-130c6ce34a16.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-e2b741e5-2a4a-4705-b24a-711c4d8ce49f {
  margin-top: 25px;
margin-left: 5%;
margin-right: auto;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
}

#s-ef164be6-1760-4444-9d0b-17cc318ed381 {
  margin-left: auto;
margin-right: auto;
}

#s-ceaa0bbc-dbb9-4fa1-b32b-55f206d61ea7 {
  margin-left: 5%;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-ceaa0bbc-dbb9-4fa1-b32b-55f206d61ea7 .shogun-heading-component h1 {
  color: rgba(0, 172, 78, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


@media (max-width: 767px){#s-ceaa0bbc-dbb9-4fa1-b32b-55f206d61ea7 .shogun-heading-component h1 {
  color: rgba(0, 172, 78, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
#s-86b04c07-2ad6-4e04-8a5f-e8e3a9a4ce09 {
  margin-top: -19px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 0%;
}

#s-86b04c07-2ad6-4e04-8a5f-e8e3a9a4ce09 .shg-proportional-font-size,
#s-86b04c07-2ad6-4e04-8a5f-e8e3a9a4ce09 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-f748f8c6-48cc-4a38-9acf-18e5d141d842 {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-f748f8c6-48cc-4a38-9acf-18e5d141d842"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f748f8c6-48cc-4a38-9acf-18e5d141d842"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-f748f8c6-48cc-4a38-9acf-18e5d141d842"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-f748f8c6-48cc-4a38-9acf-18e5d141d842"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-208b3a48-f8bf-46c7-81ae-466100927495 {
  margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 15px;
min-height: 50px;
background-color: rgba(246, 247, 249, 1);
}
@media (max-width: 767px){#s-208b3a48-f8bf-46c7-81ae-466100927495 {
  margin-top: 10px;
margin-bottom: 10px;
}
}







#s-208b3a48-f8bf-46c7-81ae-466100927495 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-208b3a48-f8bf-46c7-81ae-466100927495.shg-box.shg-c {
  justify-content: center;
}

#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d {
  margin-top: -18px;
margin-left: auto;
margin-right: auto;
max-width: 30px;
text-align: center;
}
@media (max-width: 767px){#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d {
  display: none;
}
#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d, #wrap-s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d, #wrap-content-s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d { display: none !important; }}
#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d-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-d70ad25a-b9dd-435b-8457-3fa8d05bf17d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: -18px;
  
}

#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  padding-top: 0px;
  padding-bottom: 0px;
}


.shg-image-content-margin-container-s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d img.shogun-image {
  width: 100%;
  
  
  max-width: 30px;

  /* 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-d70ad25a-b9dd-435b-8457-3fa8d05bf17d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d-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-d70ad25a-b9dd-435b-8457-3fa8d05bf17d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d .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-d70ad25a-b9dd-435b-8457-3fa8d05bf17d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d 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-d70ad25a-b9dd-435b-8457-3fa8d05bf17d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d-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-d70ad25a-b9dd-435b-8457-3fa8d05bf17d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d .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-d70ad25a-b9dd-435b-8457-3fa8d05bf17d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d 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-d70ad25a-b9dd-435b-8457-3fa8d05bf17d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d-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-d70ad25a-b9dd-435b-8457-3fa8d05bf17d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d .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-d70ad25a-b9dd-435b-8457-3fa8d05bf17d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d 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-d70ad25a-b9dd-435b-8457-3fa8d05bf17d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d-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-d70ad25a-b9dd-435b-8457-3fa8d05bf17d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d .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-d70ad25a-b9dd-435b-8457-3fa8d05bf17d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d 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-d70ad25a-b9dd-435b-8457-3fa8d05bf17d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d70ad25a-b9dd-435b-8457-3fa8d05bf17d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9 {
  margin-left: auto;
margin-right: auto;
max-width: 30px;
text-align: center;
}
@media (min-width: 1200px){#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9 {
  display: none;
}
#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9, #wrap-s-b34c10cd-d725-44e0-973c-5ddee48a8ae9, #wrap-content-s-b34c10cd-d725-44e0-973c-5ddee48a8ae9 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9 {
  display: none;
}
#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9, #wrap-s-b34c10cd-d725-44e0-973c-5ddee48a8ae9, #wrap-content-s-b34c10cd-d725-44e0-973c-5ddee48a8ae9 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9 {
  display: none;
}
#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9, #wrap-s-b34c10cd-d725-44e0-973c-5ddee48a8ae9, #wrap-content-s-b34c10cd-d725-44e0-973c-5ddee48a8ae9 { display: none !important; }}
#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9-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-b34c10cd-d725-44e0-973c-5ddee48a8ae9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  padding-top: 0px;
  padding-bottom: 0px;
}


.shg-image-content-margin-container-s-b34c10cd-d725-44e0-973c-5ddee48a8ae9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9 img.shogun-image {
  width: 100%;
  
  
  max-width: 30px;

  /* 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-b34c10cd-d725-44e0-973c-5ddee48a8ae9 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b34c10cd-d725-44e0-973c-5ddee48a8ae9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b34c10cd-d725-44e0-973c-5ddee48a8ae9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9-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-b34c10cd-d725-44e0-973c-5ddee48a8ae9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9 .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-b34c10cd-d725-44e0-973c-5ddee48a8ae9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9 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-b34c10cd-d725-44e0-973c-5ddee48a8ae9 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b34c10cd-d725-44e0-973c-5ddee48a8ae9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b34c10cd-d725-44e0-973c-5ddee48a8ae9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9-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-b34c10cd-d725-44e0-973c-5ddee48a8ae9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9 .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-b34c10cd-d725-44e0-973c-5ddee48a8ae9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9 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-b34c10cd-d725-44e0-973c-5ddee48a8ae9 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b34c10cd-d725-44e0-973c-5ddee48a8ae9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b34c10cd-d725-44e0-973c-5ddee48a8ae9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9-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-b34c10cd-d725-44e0-973c-5ddee48a8ae9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9 .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-b34c10cd-d725-44e0-973c-5ddee48a8ae9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9 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-b34c10cd-d725-44e0-973c-5ddee48a8ae9 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b34c10cd-d725-44e0-973c-5ddee48a8ae9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b34c10cd-d725-44e0-973c-5ddee48a8ae9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9-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-b34c10cd-d725-44e0-973c-5ddee48a8ae9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9 .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-b34c10cd-d725-44e0-973c-5ddee48a8ae9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9 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-b34c10cd-d725-44e0-973c-5ddee48a8ae9 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b34c10cd-d725-44e0-973c-5ddee48a8ae9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b34c10cd-d725-44e0-973c-5ddee48a8ae9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b34c10cd-d725-44e0-973c-5ddee48a8ae9.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-76fee776-d744-44c2-9a4d-2914dabadb59 {
  margin-left: auto;
margin-right: auto;
}

#s-76fee776-d744-44c2-9a4d-2914dabadb59 .shg-proportional-font-size,
#s-76fee776-d744-44c2-9a4d-2914dabadb59 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-40888aec-dc78-420e-900d-e16a2a6e1a25 {
  margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 15px;
min-height: 50px;
background-color: rgba(246, 247, 249, 1);
}








#s-40888aec-dc78-420e-900d-e16a2a6e1a25 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-40888aec-dc78-420e-900d-e16a2a6e1a25.shg-box.shg-c {
  justify-content: center;
}

#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 {
  margin-left: auto;
margin-right: auto;
max-width: 30px;
text-align: center;
}

#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0-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-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 .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-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 img.shogun-image {
  width: 100%;
  
  
  max-width: 30px;

  /* 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-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0-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-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 .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-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 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-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0-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-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 .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-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 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-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0-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-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 .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-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 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-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0-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-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 .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-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 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-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-339d1ab8-3dba-4cbb-ae11-6da2b442cdf0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-430d3a01-3b5d-40e4-8002-58451fafcb01 {
  margin-left: 3%;
margin-right: 3%;
}

#s-430d3a01-3b5d-40e4-8002-58451fafcb01 .shg-proportional-font-size,
#s-430d3a01-3b5d-40e4-8002-58451fafcb01 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-d1ae4110-1661-48cc-8f8e-28a2bdb52bc2 {
  margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 15px;
min-height: 50px;
background-color: rgba(246, 247, 249, 1);
}
@media (max-width: 767px){#s-d1ae4110-1661-48cc-8f8e-28a2bdb52bc2 {
  margin-top: 10px;
margin-bottom: 0px;
}
}







#s-d1ae4110-1661-48cc-8f8e-28a2bdb52bc2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d1ae4110-1661-48cc-8f8e-28a2bdb52bc2.shg-box.shg-c {
  justify-content: center;
}

#s-7a416d55-9191-44d1-ae85-e08b673e30d1 {
  margin-left: auto;
margin-right: auto;
max-width: 30px;
text-align: center;
}

#s-7a416d55-9191-44d1-ae85-e08b673e30d1 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-7a416d55-9191-44d1-ae85-e08b673e30d1-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-7a416d55-9191-44d1-ae85-e08b673e30d1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-7a416d55-9191-44d1-ae85-e08b673e30d1 .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-7a416d55-9191-44d1-ae85-e08b673e30d1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-7a416d55-9191-44d1-ae85-e08b673e30d1 img.shogun-image {
  width: 100%;
  
  
  max-width: 30px;

  /* 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-7a416d55-9191-44d1-ae85-e08b673e30d1 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-7a416d55-9191-44d1-ae85-e08b673e30d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a416d55-9191-44d1-ae85-e08b673e30d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a416d55-9191-44d1-ae85-e08b673e30d1.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-7a416d55-9191-44d1-ae85-e08b673e30d1 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-7a416d55-9191-44d1-ae85-e08b673e30d1-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-7a416d55-9191-44d1-ae85-e08b673e30d1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-7a416d55-9191-44d1-ae85-e08b673e30d1 .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-7a416d55-9191-44d1-ae85-e08b673e30d1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-7a416d55-9191-44d1-ae85-e08b673e30d1 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-7a416d55-9191-44d1-ae85-e08b673e30d1 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-7a416d55-9191-44d1-ae85-e08b673e30d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a416d55-9191-44d1-ae85-e08b673e30d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a416d55-9191-44d1-ae85-e08b673e30d1.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-7a416d55-9191-44d1-ae85-e08b673e30d1 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-7a416d55-9191-44d1-ae85-e08b673e30d1-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-7a416d55-9191-44d1-ae85-e08b673e30d1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-7a416d55-9191-44d1-ae85-e08b673e30d1 .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-7a416d55-9191-44d1-ae85-e08b673e30d1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-7a416d55-9191-44d1-ae85-e08b673e30d1 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-7a416d55-9191-44d1-ae85-e08b673e30d1 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-7a416d55-9191-44d1-ae85-e08b673e30d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a416d55-9191-44d1-ae85-e08b673e30d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a416d55-9191-44d1-ae85-e08b673e30d1.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-7a416d55-9191-44d1-ae85-e08b673e30d1 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-7a416d55-9191-44d1-ae85-e08b673e30d1-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-7a416d55-9191-44d1-ae85-e08b673e30d1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-7a416d55-9191-44d1-ae85-e08b673e30d1 .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-7a416d55-9191-44d1-ae85-e08b673e30d1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-7a416d55-9191-44d1-ae85-e08b673e30d1 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-7a416d55-9191-44d1-ae85-e08b673e30d1 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-7a416d55-9191-44d1-ae85-e08b673e30d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a416d55-9191-44d1-ae85-e08b673e30d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a416d55-9191-44d1-ae85-e08b673e30d1.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-7a416d55-9191-44d1-ae85-e08b673e30d1 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-7a416d55-9191-44d1-ae85-e08b673e30d1-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-7a416d55-9191-44d1-ae85-e08b673e30d1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-7a416d55-9191-44d1-ae85-e08b673e30d1 .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-7a416d55-9191-44d1-ae85-e08b673e30d1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-7a416d55-9191-44d1-ae85-e08b673e30d1 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-7a416d55-9191-44d1-ae85-e08b673e30d1 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-7a416d55-9191-44d1-ae85-e08b673e30d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a416d55-9191-44d1-ae85-e08b673e30d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a416d55-9191-44d1-ae85-e08b673e30d1.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-ab434297-936f-4d0a-b147-7e53d115f287 {
  margin-left: 3%;
margin-right: 3%;
}

#s-ab434297-936f-4d0a-b147-7e53d115f287 .shg-proportional-font-size,
#s-ab434297-936f-4d0a-b147-7e53d115f287 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-957bf90d-2816-47cd-8e1c-c51346af8a44 {
  margin-left: 1%;
margin-right: 1%;
padding-left: 0%;
padding-right: 0%;
}

#s-957bf90d-2816-47cd-8e1c-c51346af8a44 .shg-proportional-font-size,
#s-957bf90d-2816-47cd-8e1c-c51346af8a44 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-3068af00-4d13-45f0-903e-4109099d8c73 {
  margin-top: -19px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 0%;
}

#s-3068af00-4d13-45f0-903e-4109099d8c73 .shg-proportional-font-size,
#s-3068af00-4d13-45f0-903e-4109099d8c73 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-ddb00dbd-6109-45f8-903a-499f3f3eace3 {
  margin-left: auto;
margin-right: auto;
}

#s-ef8d08ca-df13-4e8b-9ec2-eee50d15957f {
  margin-left: auto;
margin-right: auto;
}

#s-caeafa22-1e15-40c4-90d8-f0d0a0228871 {
  margin-left: 5%;
margin-right: 5%;
}
@media (max-width: 767px){#s-caeafa22-1e15-40c4-90d8-f0d0a0228871 {
  display: none;
}
#s-caeafa22-1e15-40c4-90d8-f0d0a0228871, #wrap-s-caeafa22-1e15-40c4-90d8-f0d0a0228871, #wrap-content-s-caeafa22-1e15-40c4-90d8-f0d0a0228871 { display: none !important; }}
@media (min-width: 0px) {
[id="s-caeafa22-1e15-40c4-90d8-f0d0a0228871"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-caeafa22-1e15-40c4-90d8-f0d0a0228871"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-caeafa22-1e15-40c4-90d8-f0d0a0228871"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-caeafa22-1e15-40c4-90d8-f0d0a0228871"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-3ea98243-9fa3-4054-9462-4db2a1fc6f78 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-3ea98243-9fa3-4054-9462-4db2a1fc6f78 .shogun-heading-component h1 {
  
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



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

.shg-product-atc-wrapper {
  position: relative;
}

.shg-product-atc-btn {
  position: relative;
  z-index: 2;
  display: block;
  border: none;
  align-items: normal;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 200ms linear;
  opacity: 1;
}

.shg-product-atc-btn-opaque {
  opacity: 0;
}

.shg-product-atc-info-box {
  position: absolute;
  z-index: 1;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

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

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

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

#s-b6f83298-c607-40c4-8f99-fe07cc43efdc {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-b6f83298-c607-40c4-8f99-fe07cc43efdc:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-b6f83298-c607-40c4-8f99-fe07cc43efdc:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iODY5ZmVkZDUtNmU3ZS00MDEyLWE5Y2ItNDk2YWQxZjczYjI0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM4NjlmZWRkNS02ZTdlLTQwMTItYTljYi00OTZhZDFmNzNiMjQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-b6f83298-c607-40c4-8f99-fe07cc43efdc-atc-btn-wrapper {
    text-align: center;
  }


#s-b6f83298-c607-40c4-8f99-fe07cc43efdc {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b6f83298-c607-40c4-8f99-fe07cc43efdc.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b6f83298-c607-40c4-8f99-fe07cc43efdc.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-b6f83298-c607-40c4-8f99-fe07cc43efdc.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-b6f83298-c607-40c4-8f99-fe07cc43efdc-atc-btn-wrapper {
    text-align: center;
  }


#s-b6f83298-c607-40c4-8f99-fe07cc43efdc {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b6f83298-c607-40c4-8f99-fe07cc43efdc.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b6f83298-c607-40c4-8f99-fe07cc43efdc.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-b6f83298-c607-40c4-8f99-fe07cc43efdc.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-b6f83298-c607-40c4-8f99-fe07cc43efdc-atc-btn-wrapper {
    text-align: center;
  }


#s-b6f83298-c607-40c4-8f99-fe07cc43efdc {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b6f83298-c607-40c4-8f99-fe07cc43efdc.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b6f83298-c607-40c4-8f99-fe07cc43efdc.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-b6f83298-c607-40c4-8f99-fe07cc43efdc.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-b6f83298-c607-40c4-8f99-fe07cc43efdc-atc-btn-wrapper {
    text-align: center;
  }


#s-b6f83298-c607-40c4-8f99-fe07cc43efdc {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b6f83298-c607-40c4-8f99-fe07cc43efdc.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b6f83298-c607-40c4-8f99-fe07cc43efdc.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-b6f83298-c607-40c4-8f99-fe07cc43efdc.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-b6f83298-c607-40c4-8f99-fe07cc43efdc-atc-btn-wrapper {
    text-align: center;
  }


#s-b6f83298-c607-40c4-8f99-fe07cc43efdc {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b6f83298-c607-40c4-8f99-fe07cc43efdc.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b6f83298-c607-40c4-8f99-fe07cc43efdc.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-b6f83298-c607-40c4-8f99-fe07cc43efdc.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-4fdee4c9-505e-4ae9-9af0-d6a085dc7eff {
  margin-left: 5%;
margin-right: 5%;
}
@media (min-width: 1200px){#s-4fdee4c9-505e-4ae9-9af0-d6a085dc7eff {
  display: none;
}
#s-4fdee4c9-505e-4ae9-9af0-d6a085dc7eff, #wrap-s-4fdee4c9-505e-4ae9-9af0-d6a085dc7eff, #wrap-content-s-4fdee4c9-505e-4ae9-9af0-d6a085dc7eff { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4fdee4c9-505e-4ae9-9af0-d6a085dc7eff {
  display: none;
}
#s-4fdee4c9-505e-4ae9-9af0-d6a085dc7eff, #wrap-s-4fdee4c9-505e-4ae9-9af0-d6a085dc7eff, #wrap-content-s-4fdee4c9-505e-4ae9-9af0-d6a085dc7eff { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4fdee4c9-505e-4ae9-9af0-d6a085dc7eff {
  display: none;
}
#s-4fdee4c9-505e-4ae9-9af0-d6a085dc7eff, #wrap-s-4fdee4c9-505e-4ae9-9af0-d6a085dc7eff, #wrap-content-s-4fdee4c9-505e-4ae9-9af0-d6a085dc7eff { display: none !important; }}
@media (min-width: 0px) {
[id="s-4fdee4c9-505e-4ae9-9af0-d6a085dc7eff"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-4fdee4c9-505e-4ae9-9af0-d6a085dc7eff"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4fdee4c9-505e-4ae9-9af0-d6a085dc7eff"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4fdee4c9-505e-4ae9-9af0-d6a085dc7eff"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-75d6f23d-60f7-4447-a63f-6e5c29809580 {
  margin-left: 0%;
margin-right: 20%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-75d6f23d-60f7-4447-a63f-6e5c29809580 .shogun-heading-component h1 {
  
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-844e34a5-cde7-480c-8c9b-829d50b50f28 {
  margin-left: -27%;
margin-right: 0%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-844e34a5-cde7-480c-8c9b-829d50b50f28:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-844e34a5-cde7-480c-8c9b-829d50b50f28:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iN2I5OWRjNTEtZmRmYS00ZWNiLWE0YzEtMWJiNmY1NWJhNGQ1IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM3Yjk5ZGM1MS1mZGZhLTRlY2ItYTRjMS0xYmI2ZjU1YmE0ZDUpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-844e34a5-cde7-480c-8c9b-829d50b50f28-atc-btn-wrapper {
    text-align: center;
  }


#s-844e34a5-cde7-480c-8c9b-829d50b50f28 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-844e34a5-cde7-480c-8c9b-829d50b50f28.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-844e34a5-cde7-480c-8c9b-829d50b50f28.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-844e34a5-cde7-480c-8c9b-829d50b50f28.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-844e34a5-cde7-480c-8c9b-829d50b50f28-atc-btn-wrapper {
    text-align: center;
  }


#s-844e34a5-cde7-480c-8c9b-829d50b50f28 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-844e34a5-cde7-480c-8c9b-829d50b50f28.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-844e34a5-cde7-480c-8c9b-829d50b50f28.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-844e34a5-cde7-480c-8c9b-829d50b50f28.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-844e34a5-cde7-480c-8c9b-829d50b50f28-atc-btn-wrapper {
    text-align: center;
  }


#s-844e34a5-cde7-480c-8c9b-829d50b50f28 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-844e34a5-cde7-480c-8c9b-829d50b50f28.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-844e34a5-cde7-480c-8c9b-829d50b50f28.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-844e34a5-cde7-480c-8c9b-829d50b50f28.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-844e34a5-cde7-480c-8c9b-829d50b50f28-atc-btn-wrapper {
    text-align: center;
  }


#s-844e34a5-cde7-480c-8c9b-829d50b50f28 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-844e34a5-cde7-480c-8c9b-829d50b50f28.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-844e34a5-cde7-480c-8c9b-829d50b50f28.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-844e34a5-cde7-480c-8c9b-829d50b50f28.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-844e34a5-cde7-480c-8c9b-829d50b50f28-atc-btn-wrapper {
    text-align: center;
  }


#s-844e34a5-cde7-480c-8c9b-829d50b50f28 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-844e34a5-cde7-480c-8c9b-829d50b50f28.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-844e34a5-cde7-480c-8c9b-829d50b50f28.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-844e34a5-cde7-480c-8c9b-829d50b50f28.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-1f57d589-79df-4100-95cc-2e763b8a9bb0 {
  margin-left: 5%;
margin-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: none;
border-radius: 15px;
min-height: 50px;
background-color: rgba(233, 249, 239, 1);
}








#s-1f57d589-79df-4100-95cc-2e763b8a9bb0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1f57d589-79df-4100-95cc-2e763b8a9bb0.shg-box.shg-c {
  justify-content: center;
}

#s-2128166c-b10c-4482-8247-d2a48b03ade3 {
  margin-left: 7%;
margin-right: 4%;
padding-left: 1%;
}

#s-2128166c-b10c-4482-8247-d2a48b03ade3 .shg-proportional-font-size,
#s-2128166c-b10c-4482-8247-d2a48b03ade3 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-bddd1e92-b509-4a4d-afdf-4a8ec43c1c5e {
  margin-left: 5%;
margin-right: 5%;
}

#s-bddd1e92-b509-4a4d-afdf-4a8ec43c1c5e .shg-proportional-font-size,
#s-bddd1e92-b509-4a4d-afdf-4a8ec43c1c5e .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-e3a03a1f-528a-4bf3-88b5-c2a6392c4e52 {
  box-shadow:1px 1px 7px 3px rgba(229, 229, 229, 1);
margin-top: 40px;
margin-left: 15%;
margin-right: 15%;
padding-top: 25px;
padding-bottom: 50px;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(175, 175, 175, 1);
border-style: none;
border-radius: 25px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-e3a03a1f-528a-4bf3-88b5-c2a6392c4e52 {
  margin-left: 3%;
margin-right: 3%;
}
}@media (max-width: 767px){#s-e3a03a1f-528a-4bf3-88b5-c2a6392c4e52 {
  margin-left: 5%;
margin-right: 5%;
}
}
@media (min-width: 0px) {
[id="s-e3a03a1f-528a-4bf3-88b5-c2a6392c4e52"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e3a03a1f-528a-4bf3-88b5-c2a6392c4e52"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e3a03a1f-528a-4bf3-88b5-c2a6392c4e52"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e3a03a1f-528a-4bf3-88b5-c2a6392c4e52"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e3a03a1f-528a-4bf3-88b5-c2a6392c4e52"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e3a03a1f-528a-4bf3-88b5-c2a6392c4e52"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e3a03a1f-528a-4bf3-88b5-c2a6392c4e52"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-ec7e1cda-bce8-47fc-9eca-b2b4572d93ed {
  margin-top: 25px;
margin-left: 23%;
margin-bottom: 25px;
margin-right: 23%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 255px;
background-color: rgba(0, 172, 78, 1);
}

#s-ec7e1cda-bce8-47fc-9eca-b2b4572d93ed .shg-proportional-font-size,
#s-ec7e1cda-bce8-47fc-9eca-b2b4572d93ed .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-3a37615c-2ac5-45cc-a283-9d0bae729250 {
  margin-top: 45px;
margin-left: auto;
margin-right: auto;
max-width: 300px;
text-align: center;
}
@media (max-width: 767px){#s-3a37615c-2ac5-45cc-a283-9d0bae729250 {
  max-width: 200px;
}
}
#s-3a37615c-2ac5-45cc-a283-9d0bae729250 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3a37615c-2ac5-45cc-a283-9d0bae729250-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-3a37615c-2ac5-45cc-a283-9d0bae729250 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 45px;
  
}

#s-3a37615c-2ac5-45cc-a283-9d0bae729250 .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-3a37615c-2ac5-45cc-a283-9d0bae729250 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3a37615c-2ac5-45cc-a283-9d0bae729250 img.shogun-image {
  width: 100%;
  
  
  max-width: 300px;

  /* 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-3a37615c-2ac5-45cc-a283-9d0bae729250 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3a37615c-2ac5-45cc-a283-9d0bae729250.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a37615c-2ac5-45cc-a283-9d0bae729250.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a37615c-2ac5-45cc-a283-9d0bae729250.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-3a37615c-2ac5-45cc-a283-9d0bae729250 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3a37615c-2ac5-45cc-a283-9d0bae729250-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-3a37615c-2ac5-45cc-a283-9d0bae729250 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3a37615c-2ac5-45cc-a283-9d0bae729250 .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-3a37615c-2ac5-45cc-a283-9d0bae729250 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3a37615c-2ac5-45cc-a283-9d0bae729250 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-3a37615c-2ac5-45cc-a283-9d0bae729250 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3a37615c-2ac5-45cc-a283-9d0bae729250.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a37615c-2ac5-45cc-a283-9d0bae729250.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a37615c-2ac5-45cc-a283-9d0bae729250.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-3a37615c-2ac5-45cc-a283-9d0bae729250 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3a37615c-2ac5-45cc-a283-9d0bae729250-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-3a37615c-2ac5-45cc-a283-9d0bae729250 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3a37615c-2ac5-45cc-a283-9d0bae729250 .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-3a37615c-2ac5-45cc-a283-9d0bae729250 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3a37615c-2ac5-45cc-a283-9d0bae729250 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-3a37615c-2ac5-45cc-a283-9d0bae729250 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3a37615c-2ac5-45cc-a283-9d0bae729250.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a37615c-2ac5-45cc-a283-9d0bae729250.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a37615c-2ac5-45cc-a283-9d0bae729250.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-3a37615c-2ac5-45cc-a283-9d0bae729250 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3a37615c-2ac5-45cc-a283-9d0bae729250-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-3a37615c-2ac5-45cc-a283-9d0bae729250 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3a37615c-2ac5-45cc-a283-9d0bae729250 .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-3a37615c-2ac5-45cc-a283-9d0bae729250 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3a37615c-2ac5-45cc-a283-9d0bae729250 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-3a37615c-2ac5-45cc-a283-9d0bae729250 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3a37615c-2ac5-45cc-a283-9d0bae729250.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a37615c-2ac5-45cc-a283-9d0bae729250.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a37615c-2ac5-45cc-a283-9d0bae729250.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-3a37615c-2ac5-45cc-a283-9d0bae729250 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3a37615c-2ac5-45cc-a283-9d0bae729250-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-3a37615c-2ac5-45cc-a283-9d0bae729250 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3a37615c-2ac5-45cc-a283-9d0bae729250 .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-3a37615c-2ac5-45cc-a283-9d0bae729250 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3a37615c-2ac5-45cc-a283-9d0bae729250 img.shogun-image {
  width: 100%;
  
  
  max-width: 200px;

  /* 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-3a37615c-2ac5-45cc-a283-9d0bae729250 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3a37615c-2ac5-45cc-a283-9d0bae729250.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a37615c-2ac5-45cc-a283-9d0bae729250.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a37615c-2ac5-45cc-a283-9d0bae729250.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-41ce9521-eb74-4d98-9382-95fdcf667683 {
  margin-top: 25px;
margin-left: 5%;
margin-right: auto;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
}

#s-485b663e-9fd9-4d8c-a1fb-5af6741f62e7 {
  margin-left: auto;
margin-right: auto;
}

#s-3486cd71-6b6c-4bdc-be74-5e2a75a62572 {
  margin-left: 5%;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-3486cd71-6b6c-4bdc-be74-5e2a75a62572 .shogun-heading-component h1 {
  color: rgba(0, 172, 78, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


@media (max-width: 767px){#s-3486cd71-6b6c-4bdc-be74-5e2a75a62572 .shogun-heading-component h1 {
  color: rgba(0, 172, 78, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
#s-11b914ab-0307-430b-8021-d62b12880eb0 {
  margin-top: -13px;
margin-left: 5%;
margin-bottom: 10px;
margin-right: 0%;
}

#s-11b914ab-0307-430b-8021-d62b12880eb0 .shg-proportional-font-size,
#s-11b914ab-0307-430b-8021-d62b12880eb0 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-10881e05-5048-4d45-9847-15901e52bc86 {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-10881e05-5048-4d45-9847-15901e52bc86"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-10881e05-5048-4d45-9847-15901e52bc86"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-10881e05-5048-4d45-9847-15901e52bc86"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-10881e05-5048-4d45-9847-15901e52bc86"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-e105ab8d-91f4-4c63-92c1-a06857c68d43 {
  margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 15px;
min-height: 50px;
background-color: rgba(246, 247, 249, 1);
}
@media (max-width: 767px){#s-e105ab8d-91f4-4c63-92c1-a06857c68d43 {
  margin-top: 10px;
margin-bottom: 10px;
}
}







#s-e105ab8d-91f4-4c63-92c1-a06857c68d43 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e105ab8d-91f4-4c63-92c1-a06857c68d43.shg-box.shg-c {
  justify-content: center;
}

#s-465e452f-8593-47c5-b6ba-60e981feda6b {
  margin-left: auto;
margin-right: auto;
max-width: 30px;
text-align: center;
}
@media (max-width: 767px){#s-465e452f-8593-47c5-b6ba-60e981feda6b {
  display: none;
}
#s-465e452f-8593-47c5-b6ba-60e981feda6b, #wrap-s-465e452f-8593-47c5-b6ba-60e981feda6b, #wrap-content-s-465e452f-8593-47c5-b6ba-60e981feda6b { display: none !important; }}
#s-465e452f-8593-47c5-b6ba-60e981feda6b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-465e452f-8593-47c5-b6ba-60e981feda6b-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-465e452f-8593-47c5-b6ba-60e981feda6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-465e452f-8593-47c5-b6ba-60e981feda6b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  padding-top: 0px;
  padding-bottom: 0px;
}


.shg-image-content-margin-container-s-465e452f-8593-47c5-b6ba-60e981feda6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-465e452f-8593-47c5-b6ba-60e981feda6b img.shogun-image {
  width: 100%;
  
  
  max-width: 30px;

  /* 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-465e452f-8593-47c5-b6ba-60e981feda6b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-465e452f-8593-47c5-b6ba-60e981feda6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-465e452f-8593-47c5-b6ba-60e981feda6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-465e452f-8593-47c5-b6ba-60e981feda6b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-465e452f-8593-47c5-b6ba-60e981feda6b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-465e452f-8593-47c5-b6ba-60e981feda6b-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-465e452f-8593-47c5-b6ba-60e981feda6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-465e452f-8593-47c5-b6ba-60e981feda6b .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-465e452f-8593-47c5-b6ba-60e981feda6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-465e452f-8593-47c5-b6ba-60e981feda6b 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-465e452f-8593-47c5-b6ba-60e981feda6b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-465e452f-8593-47c5-b6ba-60e981feda6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-465e452f-8593-47c5-b6ba-60e981feda6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-465e452f-8593-47c5-b6ba-60e981feda6b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-465e452f-8593-47c5-b6ba-60e981feda6b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-465e452f-8593-47c5-b6ba-60e981feda6b-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-465e452f-8593-47c5-b6ba-60e981feda6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-465e452f-8593-47c5-b6ba-60e981feda6b .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-465e452f-8593-47c5-b6ba-60e981feda6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-465e452f-8593-47c5-b6ba-60e981feda6b 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-465e452f-8593-47c5-b6ba-60e981feda6b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-465e452f-8593-47c5-b6ba-60e981feda6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-465e452f-8593-47c5-b6ba-60e981feda6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-465e452f-8593-47c5-b6ba-60e981feda6b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-465e452f-8593-47c5-b6ba-60e981feda6b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-465e452f-8593-47c5-b6ba-60e981feda6b-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-465e452f-8593-47c5-b6ba-60e981feda6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-465e452f-8593-47c5-b6ba-60e981feda6b .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-465e452f-8593-47c5-b6ba-60e981feda6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-465e452f-8593-47c5-b6ba-60e981feda6b 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-465e452f-8593-47c5-b6ba-60e981feda6b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-465e452f-8593-47c5-b6ba-60e981feda6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-465e452f-8593-47c5-b6ba-60e981feda6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-465e452f-8593-47c5-b6ba-60e981feda6b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-465e452f-8593-47c5-b6ba-60e981feda6b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-465e452f-8593-47c5-b6ba-60e981feda6b-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-465e452f-8593-47c5-b6ba-60e981feda6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-465e452f-8593-47c5-b6ba-60e981feda6b .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-465e452f-8593-47c5-b6ba-60e981feda6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-465e452f-8593-47c5-b6ba-60e981feda6b 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-465e452f-8593-47c5-b6ba-60e981feda6b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-465e452f-8593-47c5-b6ba-60e981feda6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-465e452f-8593-47c5-b6ba-60e981feda6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-465e452f-8593-47c5-b6ba-60e981feda6b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 {
  margin-left: auto;
margin-right: auto;
max-width: 30px;
text-align: center;
}
@media (min-width: 1200px){#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 {
  display: none;
}
#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93, #wrap-s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93, #wrap-content-s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 {
  display: none;
}
#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93, #wrap-s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93, #wrap-content-s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 {
  display: none;
}
#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93, #wrap-s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93, #wrap-content-s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 { display: none !important; }}
#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93-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-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  padding-top: 0px;
  padding-bottom: 0px;
}


.shg-image-content-margin-container-s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 img.shogun-image {
  width: 100%;
  
  
  max-width: 30px;

  /* 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-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93-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-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 .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-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 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-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93-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-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 .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-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 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-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93-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-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 .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-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 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-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93-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-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 .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-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 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-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a65cb17-5c52-475e-ad08-e0b0e5bc3c93.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-aeb4efd2-450e-4a88-817b-3ea31ef15001 {
  margin-left: auto;
margin-right: auto;
}

#s-aeb4efd2-450e-4a88-817b-3ea31ef15001 .shg-proportional-font-size,
#s-aeb4efd2-450e-4a88-817b-3ea31ef15001 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-425c436e-469e-40d8-b365-8fb7e00c1e30 {
  margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 15px;
min-height: 50px;
background-color: rgba(246, 247, 249, 1);
}








#s-425c436e-469e-40d8-b365-8fb7e00c1e30 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-425c436e-469e-40d8-b365-8fb7e00c1e30.shg-box.shg-c {
  justify-content: center;
}

#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 {
  margin-left: auto;
margin-right: auto;
max-width: 30px;
text-align: center;
}

#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01-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-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 .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-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 img.shogun-image {
  width: 100%;
  
  
  max-width: 30px;

  /* 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-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01-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-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 .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-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 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-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01-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-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 .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-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 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-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01-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-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 .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-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 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-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01-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-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 .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-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 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-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5abcd2e6-a48f-49f4-b19b-4f1158cf6f01.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-b7333fe8-3808-43e7-9775-6335e6537e44 {
  margin-left: 3%;
margin-right: 3%;
}

#s-b7333fe8-3808-43e7-9775-6335e6537e44 .shg-proportional-font-size,
#s-b7333fe8-3808-43e7-9775-6335e6537e44 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-fbe91cd0-460f-4201-b48c-460bb67ca35e {
  margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 15px;
min-height: 50px;
background-color: rgba(246, 247, 249, 1);
}
@media (max-width: 767px){#s-fbe91cd0-460f-4201-b48c-460bb67ca35e {
  margin-top: 10px;
margin-bottom: 0px;
}
}







#s-fbe91cd0-460f-4201-b48c-460bb67ca35e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fbe91cd0-460f-4201-b48c-460bb67ca35e.shg-box.shg-c {
  justify-content: center;
}

#s-6daacbf2-de18-433a-b9af-e25208dcb85e {
  margin-left: auto;
margin-right: auto;
max-width: 30px;
text-align: center;
}

#s-6daacbf2-de18-433a-b9af-e25208dcb85e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6daacbf2-de18-433a-b9af-e25208dcb85e-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-6daacbf2-de18-433a-b9af-e25208dcb85e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6daacbf2-de18-433a-b9af-e25208dcb85e .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-6daacbf2-de18-433a-b9af-e25208dcb85e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6daacbf2-de18-433a-b9af-e25208dcb85e img.shogun-image {
  width: 100%;
  
  
  max-width: 30px;

  /* 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-6daacbf2-de18-433a-b9af-e25208dcb85e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6daacbf2-de18-433a-b9af-e25208dcb85e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6daacbf2-de18-433a-b9af-e25208dcb85e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6daacbf2-de18-433a-b9af-e25208dcb85e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-6daacbf2-de18-433a-b9af-e25208dcb85e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6daacbf2-de18-433a-b9af-e25208dcb85e-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-6daacbf2-de18-433a-b9af-e25208dcb85e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6daacbf2-de18-433a-b9af-e25208dcb85e .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-6daacbf2-de18-433a-b9af-e25208dcb85e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6daacbf2-de18-433a-b9af-e25208dcb85e 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-6daacbf2-de18-433a-b9af-e25208dcb85e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6daacbf2-de18-433a-b9af-e25208dcb85e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6daacbf2-de18-433a-b9af-e25208dcb85e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6daacbf2-de18-433a-b9af-e25208dcb85e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-6daacbf2-de18-433a-b9af-e25208dcb85e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6daacbf2-de18-433a-b9af-e25208dcb85e-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-6daacbf2-de18-433a-b9af-e25208dcb85e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6daacbf2-de18-433a-b9af-e25208dcb85e .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-6daacbf2-de18-433a-b9af-e25208dcb85e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6daacbf2-de18-433a-b9af-e25208dcb85e 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-6daacbf2-de18-433a-b9af-e25208dcb85e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6daacbf2-de18-433a-b9af-e25208dcb85e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6daacbf2-de18-433a-b9af-e25208dcb85e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6daacbf2-de18-433a-b9af-e25208dcb85e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-6daacbf2-de18-433a-b9af-e25208dcb85e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6daacbf2-de18-433a-b9af-e25208dcb85e-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-6daacbf2-de18-433a-b9af-e25208dcb85e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6daacbf2-de18-433a-b9af-e25208dcb85e .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-6daacbf2-de18-433a-b9af-e25208dcb85e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6daacbf2-de18-433a-b9af-e25208dcb85e 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-6daacbf2-de18-433a-b9af-e25208dcb85e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6daacbf2-de18-433a-b9af-e25208dcb85e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6daacbf2-de18-433a-b9af-e25208dcb85e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6daacbf2-de18-433a-b9af-e25208dcb85e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-6daacbf2-de18-433a-b9af-e25208dcb85e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6daacbf2-de18-433a-b9af-e25208dcb85e-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-6daacbf2-de18-433a-b9af-e25208dcb85e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6daacbf2-de18-433a-b9af-e25208dcb85e .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-6daacbf2-de18-433a-b9af-e25208dcb85e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6daacbf2-de18-433a-b9af-e25208dcb85e 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-6daacbf2-de18-433a-b9af-e25208dcb85e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6daacbf2-de18-433a-b9af-e25208dcb85e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6daacbf2-de18-433a-b9af-e25208dcb85e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6daacbf2-de18-433a-b9af-e25208dcb85e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-a39b9fb5-7ac6-4cdd-90a8-14bdc037ce84 {
  margin-left: 3%;
margin-right: 3%;
}

#s-a39b9fb5-7ac6-4cdd-90a8-14bdc037ce84 .shg-proportional-font-size,
#s-a39b9fb5-7ac6-4cdd-90a8-14bdc037ce84 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-f2a33a66-f635-49f4-b0b2-5036f1fdbb6f {
  margin-left: 1%;
margin-right: 1%;
padding-left: 0%;
padding-right: 0%;
}

#s-f2a33a66-f635-49f4-b0b2-5036f1fdbb6f .shg-proportional-font-size,
#s-f2a33a66-f635-49f4-b0b2-5036f1fdbb6f .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-30c5c95e-5cc4-4ff2-a926-9aa01f7ce1ed {
  margin-top: -19px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 0%;
}

#s-30c5c95e-5cc4-4ff2-a926-9aa01f7ce1ed .shg-proportional-font-size,
#s-30c5c95e-5cc4-4ff2-a926-9aa01f7ce1ed .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-fb16119b-68da-4d70-a59b-5429797d2c44 {
  margin-left: auto;
margin-right: auto;
}

#s-34914f81-622c-46c0-84f3-62c1ecdd07f4 {
  margin-left: auto;
margin-right: auto;
}

#s-af32686e-66a0-4825-bf98-11440f5d41dd {
  margin-left: 5%;
margin-right: 5%;
}
@media (max-width: 767px){#s-af32686e-66a0-4825-bf98-11440f5d41dd {
  display: none;
}
#s-af32686e-66a0-4825-bf98-11440f5d41dd, #wrap-s-af32686e-66a0-4825-bf98-11440f5d41dd, #wrap-content-s-af32686e-66a0-4825-bf98-11440f5d41dd { display: none !important; }}
@media (min-width: 0px) {
[id="s-af32686e-66a0-4825-bf98-11440f5d41dd"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-af32686e-66a0-4825-bf98-11440f5d41dd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-af32686e-66a0-4825-bf98-11440f5d41dd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-af32686e-66a0-4825-bf98-11440f5d41dd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-ce6219e3-a351-499e-9c8c-0f9915c76202 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-ce6219e3-a351-499e-9c8c-0f9915c76202 .shogun-heading-component h1 {
  
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-816f599d-0e04-4c26-a388-f8393323a743 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-816f599d-0e04-4c26-a388-f8393323a743:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-816f599d-0e04-4c26-a388-f8393323a743:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMjkxMmY2MWYtMzg1My00MTQ3LWJkZTEtNTcwZGU2Y2FjNTAwIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCMyOTEyZjYxZi0zODUzLTQxNDctYmRlMS01NzBkZTZjYWM1MDApIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-816f599d-0e04-4c26-a388-f8393323a743-atc-btn-wrapper {
    text-align: center;
  }


#s-816f599d-0e04-4c26-a388-f8393323a743 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-816f599d-0e04-4c26-a388-f8393323a743.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-816f599d-0e04-4c26-a388-f8393323a743.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-816f599d-0e04-4c26-a388-f8393323a743.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-816f599d-0e04-4c26-a388-f8393323a743-atc-btn-wrapper {
    text-align: center;
  }


#s-816f599d-0e04-4c26-a388-f8393323a743 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-816f599d-0e04-4c26-a388-f8393323a743.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-816f599d-0e04-4c26-a388-f8393323a743.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-816f599d-0e04-4c26-a388-f8393323a743.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-816f599d-0e04-4c26-a388-f8393323a743-atc-btn-wrapper {
    text-align: center;
  }


#s-816f599d-0e04-4c26-a388-f8393323a743 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-816f599d-0e04-4c26-a388-f8393323a743.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-816f599d-0e04-4c26-a388-f8393323a743.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-816f599d-0e04-4c26-a388-f8393323a743.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-816f599d-0e04-4c26-a388-f8393323a743-atc-btn-wrapper {
    text-align: center;
  }


#s-816f599d-0e04-4c26-a388-f8393323a743 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-816f599d-0e04-4c26-a388-f8393323a743.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-816f599d-0e04-4c26-a388-f8393323a743.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-816f599d-0e04-4c26-a388-f8393323a743.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-816f599d-0e04-4c26-a388-f8393323a743-atc-btn-wrapper {
    text-align: center;
  }


#s-816f599d-0e04-4c26-a388-f8393323a743 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-816f599d-0e04-4c26-a388-f8393323a743.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-816f599d-0e04-4c26-a388-f8393323a743.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-816f599d-0e04-4c26-a388-f8393323a743.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-4aa98be4-6124-4af6-8f1c-e614cd853c05 {
  margin-left: 5%;
margin-right: 5%;
}
@media (min-width: 1200px){#s-4aa98be4-6124-4af6-8f1c-e614cd853c05 {
  display: none;
}
#s-4aa98be4-6124-4af6-8f1c-e614cd853c05, #wrap-s-4aa98be4-6124-4af6-8f1c-e614cd853c05, #wrap-content-s-4aa98be4-6124-4af6-8f1c-e614cd853c05 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4aa98be4-6124-4af6-8f1c-e614cd853c05 {
  display: none;
}
#s-4aa98be4-6124-4af6-8f1c-e614cd853c05, #wrap-s-4aa98be4-6124-4af6-8f1c-e614cd853c05, #wrap-content-s-4aa98be4-6124-4af6-8f1c-e614cd853c05 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4aa98be4-6124-4af6-8f1c-e614cd853c05 {
  display: none;
}
#s-4aa98be4-6124-4af6-8f1c-e614cd853c05, #wrap-s-4aa98be4-6124-4af6-8f1c-e614cd853c05, #wrap-content-s-4aa98be4-6124-4af6-8f1c-e614cd853c05 { display: none !important; }}
@media (min-width: 0px) {
[id="s-4aa98be4-6124-4af6-8f1c-e614cd853c05"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-4aa98be4-6124-4af6-8f1c-e614cd853c05"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4aa98be4-6124-4af6-8f1c-e614cd853c05"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4aa98be4-6124-4af6-8f1c-e614cd853c05"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-ed310f49-0cd8-46f5-9ec2-ae026a28644d {
  margin-left: 0%;
margin-right: 20%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-ed310f49-0cd8-46f5-9ec2-ae026a28644d .shogun-heading-component h1 {
  
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-7c43698f-1478-410c-bfcc-65d7345d7725 {
  margin-left: -27%;
margin-right: 0%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-7c43698f-1478-410c-bfcc-65d7345d7725:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-7c43698f-1478-410c-bfcc-65d7345d7725:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iOTI4ZmM1ZmEtZjFkYS00YzYwLWI0MmEtOTlkOTYxY2NjN2JiIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM5MjhmYzVmYS1mMWRhLTRjNjAtYjQyYS05OWQ5NjFjY2M3YmIpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-7c43698f-1478-410c-bfcc-65d7345d7725-atc-btn-wrapper {
    text-align: center;
  }


#s-7c43698f-1478-410c-bfcc-65d7345d7725 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-7c43698f-1478-410c-bfcc-65d7345d7725.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7c43698f-1478-410c-bfcc-65d7345d7725.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-7c43698f-1478-410c-bfcc-65d7345d7725.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-7c43698f-1478-410c-bfcc-65d7345d7725-atc-btn-wrapper {
    text-align: center;
  }


#s-7c43698f-1478-410c-bfcc-65d7345d7725 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-7c43698f-1478-410c-bfcc-65d7345d7725.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7c43698f-1478-410c-bfcc-65d7345d7725.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-7c43698f-1478-410c-bfcc-65d7345d7725.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-7c43698f-1478-410c-bfcc-65d7345d7725-atc-btn-wrapper {
    text-align: center;
  }


#s-7c43698f-1478-410c-bfcc-65d7345d7725 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-7c43698f-1478-410c-bfcc-65d7345d7725.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7c43698f-1478-410c-bfcc-65d7345d7725.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-7c43698f-1478-410c-bfcc-65d7345d7725.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-7c43698f-1478-410c-bfcc-65d7345d7725-atc-btn-wrapper {
    text-align: center;
  }


#s-7c43698f-1478-410c-bfcc-65d7345d7725 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-7c43698f-1478-410c-bfcc-65d7345d7725.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7c43698f-1478-410c-bfcc-65d7345d7725.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-7c43698f-1478-410c-bfcc-65d7345d7725.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-7c43698f-1478-410c-bfcc-65d7345d7725-atc-btn-wrapper {
    text-align: center;
  }


#s-7c43698f-1478-410c-bfcc-65d7345d7725 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-7c43698f-1478-410c-bfcc-65d7345d7725.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7c43698f-1478-410c-bfcc-65d7345d7725.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-7c43698f-1478-410c-bfcc-65d7345d7725.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-7e3c3269-310c-4b29-9981-f27e02c88697 {
  margin-left: 5%;
margin-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: none;
border-radius: 15px;
min-height: 50px;
background-color: rgba(233, 249, 239, 1);
}








#s-7e3c3269-310c-4b29-9981-f27e02c88697 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7e3c3269-310c-4b29-9981-f27e02c88697.shg-box.shg-c {
  justify-content: center;
}

#s-13d8bb45-ca17-49c8-9bc6-74e926b2d58a {
  margin-left: 7%;
margin-right: 4%;
padding-left: 1%;
}

#s-13d8bb45-ca17-49c8-9bc6-74e926b2d58a .shg-proportional-font-size,
#s-13d8bb45-ca17-49c8-9bc6-74e926b2d58a .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-68274fdc-d22f-48ba-838d-8e6ff6aabee6 {
  margin-left: 5%;
margin-right: 5%;
}

#s-68274fdc-d22f-48ba-838d-8e6ff6aabee6 .shg-proportional-font-size,
#s-68274fdc-d22f-48ba-838d-8e6ff6aabee6 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-3d7c504c-cdc3-4c1c-8860-c63804c66fcb {
  margin-top: 40px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
text-align: left;
}
@media (min-width: 1200px){#s-3d7c504c-cdc3-4c1c-8860-c63804c66fcb {
  display: none;
}
#s-3d7c504c-cdc3-4c1c-8860-c63804c66fcb, #wrap-s-3d7c504c-cdc3-4c1c-8860-c63804c66fcb, #wrap-content-s-3d7c504c-cdc3-4c1c-8860-c63804c66fcb { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3d7c504c-cdc3-4c1c-8860-c63804c66fcb {
  display: none;
}
#s-3d7c504c-cdc3-4c1c-8860-c63804c66fcb, #wrap-s-3d7c504c-cdc3-4c1c-8860-c63804c66fcb, #wrap-content-s-3d7c504c-cdc3-4c1c-8860-c63804c66fcb { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3d7c504c-cdc3-4c1c-8860-c63804c66fcb {
  display: none;
}
#s-3d7c504c-cdc3-4c1c-8860-c63804c66fcb, #wrap-s-3d7c504c-cdc3-4c1c-8860-c63804c66fcb, #wrap-content-s-3d7c504c-cdc3-4c1c-8860-c63804c66fcb { display: none !important; }}@media (max-width: 767px){#s-3d7c504c-cdc3-4c1c-8860-c63804c66fcb {
  margin-left: 5%;
margin-right: 5%;
display: none;
}
#s-3d7c504c-cdc3-4c1c-8860-c63804c66fcb, #wrap-s-3d7c504c-cdc3-4c1c-8860-c63804c66fcb, #wrap-content-s-3d7c504c-cdc3-4c1c-8860-c63804c66fcb { display: none !important; }}
#s-0e749018-5166-4f70-b10c-a9851a219afb {
  margin-top: 25px;
margin-left: 16%;
margin-bottom: 0px;
margin-right: 16%;
}
@media (max-width: 767px){#s-0e749018-5166-4f70-b10c-a9851a219afb {
  margin-left: 6%;
margin-right: 6%;
}
}
#s-0e749018-5166-4f70-b10c-a9851a219afb > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-0e749018-5166-4f70-b10c-a9851a219afb > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgb(255, 255, 255);
  padding: 10px;
}

#s-0e749018-5166-4f70-b10c-a9851a219afb > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgb(57, 57, 57);
}

#s-0e749018-5166-4f70-b10c-a9851a219afb > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-0e749018-5166-4f70-b10c-a9851a219afb > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgb(57, 57, 57);
  text-align: center;
  font-family: Open Sans;
  font-weight: 700;
  
  font-size: 14px;
}

#s-0e749018-5166-4f70-b10c-a9851a219afb > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-category-root {
  display: grid;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 20px;
}

.shg-default-column-count-2 {
  grid-template-columns: repeat(2, 1fr);
}

.shg-default-column-count-3 {
  grid-template-columns: repeat(3, 1fr);
}

.shg-default-column-count-4 {
  grid-template-columns: repeat(4, 1fr);
}

.shg-default-column-count-5 {
  grid-template-columns: repeat(5, 1fr);
}

.shg-default-column-count-6 {
  grid-template-columns: repeat(6, 1fr);
}

.shg-category-grid .shg-product-image-wrapper img.shogun-image {
  width: 100%;
}

@media (max-width: 767px) {
  .shg-category-root.stacked {
    display: block;
  }
}

/* Swiper CSS - Duplicated from SliderV3 base.css */

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

/* Keep nav aligned to the slider frame; Swiper 12 adds sibling rules with top:50%. */
.shg-swiper-container > .shg-swiper.swiper-horizontal ~ .swiper-button-prev,
.shg-swiper-container > .shg-swiper.swiper-horizontal ~ .swiper-button-next {
  top: 0;
  margin-top: 0;
  height: calc(100% - var(--pagination-height));
}

.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-f944a237-7884-4ac0-8ad1-fd12597238fa {
  margin-left: 9%;
margin-right: 9%;
}

#s-f944a237-7884-4ac0-8ad1-fd12597238fa .shg-dynamic-column-count {
  grid-template-columns: repeat(4, 1fr);
}


#slider-v3-s-f944a237-7884-4ac0-8ad1-fd12597238fa {
  --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-f944a237-7884-4ac0-8ad1-fd12597238fa > .swiper-button-prev,
#slider-v3-s-f944a237-7884-4ac0-8ad1-fd12597238fa > .swiper-button-next {
  
}

#slider-v3-s-f944a237-7884-4ac0-8ad1-fd12597238fa > .swiper-button-prev svg,
#slider-v3-s-f944a237-7884-4ac0-8ad1-fd12597238fa > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-f944a237-7884-4ac0-8ad1-fd12597238fa > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-f944a237-7884-4ac0-8ad1-fd12597238fa > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-f944a237-7884-4ac0-8ad1-fd12597238fa > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-f944a237-7884-4ac0-8ad1-fd12597238fa .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-f944a237-7884-4ac0-8ad1-fd12597238fa .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-f944a237-7884-4ac0-8ad1-fd12597238fa .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-fba65203-8efb-4352-bc5d-cc7a4639bc4f {
  margin-left: auto;
margin-right: auto;
}

.shg-product-image-wrapper a.shogun-product-image-url {
  display: inline-block;
}

.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

.shg-product-img-placeholder img {
  padding: 3rem;
  background: rgba(0, 0, 0, 0.1);
  max-width: -moz-max-content;
  max-width: max-content;
}

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

.shg-product-image-wrapper.visible {
  display: inline-block;
}

.shg-product-image-wrapper .shg-product-image-wrapper a {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.shg-product-image-wrapper .shg-image-zoom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  max-width: 100%;
  min-height: 100%;
}

.shg-c.shg-align-center .shg-image-zoom {
  margin: 0 auto;
}

.shg-c.shg-align-right .shg-image-zoom {
  margin-left: auto;
}

.shg-image-zoom .shg-image-zoom-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease-out;
  transform: scale(1);
}

/**
  Fix for IE11, as min-width does not works there.
**/
@media screen\0 {
  .shg-product-image-wrapper > .shogun-image {
    width: 100%;
  }
}

#s-ef0ba294-e63a-4148-b147-811b22914887 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-ef0ba294-e63a-4148-b147-811b22914887 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ef0ba294-e63a-4148-b147-811b22914887 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-ef0ba294-e63a-4148-b147-811b22914887 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ef0ba294-e63a-4148-b147-811b22914887 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-ef0ba294-e63a-4148-b147-811b22914887 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ef0ba294-e63a-4148-b147-811b22914887 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-ef0ba294-e63a-4148-b147-811b22914887 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ef0ba294-e63a-4148-b147-811b22914887 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-ef0ba294-e63a-4148-b147-811b22914887 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ef0ba294-e63a-4148-b147-811b22914887 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
.shg-product-title-component h1 span,
.shg-product-title-component h2 span,
.shg-product-title-component h3 span,
.shg-product-title-component h4 span,
.shg-product-title-component h5 span,
.shg-product-title-component h6 span {
  margin: 0;
  padding: 0;
  display: block;
  
  
  text-transform: none;
  
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

.shg-product-title-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-2cde7283-4f70-411c-b05f-97dbdb2a3a6e {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2cde7283-4f70-411c-b05f-97dbdb2a3a6e .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-22929e8e-eed4-43a1-b4a2-16ed8a2fe69c {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-22929e8e-eed4-43a1-b4a2-16ed8a2fe69c .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-22929e8e-eed4-43a1-b4a2-16ed8a2fe69c .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-22929e8e-eed4-43a1-b4a2-16ed8a2fe69c .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-4c95562d-361a-45d3-b780-5ef35f746806 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-4c95562d-361a-45d3-b780-5ef35f746806:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-4c95562d-361a-45d3-b780-5ef35f746806:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWZmYWFkNGQtZDAxZC00YWY4LThmMzktZjBlODZlODY5ZDU0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1ZmZhYWQ0ZC1kMDFkLTRhZjgtOGYzOS1mMGU4NmU4NjlkNTQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-4c95562d-361a-45d3-b780-5ef35f746806-atc-btn-wrapper {
    text-align: center;
  }


#s-4c95562d-361a-45d3-b780-5ef35f746806 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-4c95562d-361a-45d3-b780-5ef35f746806.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4c95562d-361a-45d3-b780-5ef35f746806.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-4c95562d-361a-45d3-b780-5ef35f746806.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-4c95562d-361a-45d3-b780-5ef35f746806-atc-btn-wrapper {
    text-align: center;
  }


#s-4c95562d-361a-45d3-b780-5ef35f746806 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-4c95562d-361a-45d3-b780-5ef35f746806.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4c95562d-361a-45d3-b780-5ef35f746806.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-4c95562d-361a-45d3-b780-5ef35f746806.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-4c95562d-361a-45d3-b780-5ef35f746806-atc-btn-wrapper {
    text-align: center;
  }


#s-4c95562d-361a-45d3-b780-5ef35f746806 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-4c95562d-361a-45d3-b780-5ef35f746806.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4c95562d-361a-45d3-b780-5ef35f746806.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-4c95562d-361a-45d3-b780-5ef35f746806.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-4c95562d-361a-45d3-b780-5ef35f746806-atc-btn-wrapper {
    text-align: center;
  }


#s-4c95562d-361a-45d3-b780-5ef35f746806 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-4c95562d-361a-45d3-b780-5ef35f746806.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4c95562d-361a-45d3-b780-5ef35f746806.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-4c95562d-361a-45d3-b780-5ef35f746806.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-4c95562d-361a-45d3-b780-5ef35f746806-atc-btn-wrapper {
    text-align: center;
  }


#s-4c95562d-361a-45d3-b780-5ef35f746806 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-4c95562d-361a-45d3-b780-5ef35f746806.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4c95562d-361a-45d3-b780-5ef35f746806.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-4c95562d-361a-45d3-b780-5ef35f746806.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-197c0103-c46b-457b-9505-d68416d18e4e {
  margin-left: auto;
margin-right: auto;
}

#s-65088a67-3b11-47b3-8693-276587ac5529 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-65088a67-3b11-47b3-8693-276587ac5529 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-65088a67-3b11-47b3-8693-276587ac5529 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-65088a67-3b11-47b3-8693-276587ac5529 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-65088a67-3b11-47b3-8693-276587ac5529 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-65088a67-3b11-47b3-8693-276587ac5529 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-65088a67-3b11-47b3-8693-276587ac5529 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-65088a67-3b11-47b3-8693-276587ac5529 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-65088a67-3b11-47b3-8693-276587ac5529 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-65088a67-3b11-47b3-8693-276587ac5529 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-65088a67-3b11-47b3-8693-276587ac5529 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-51960745-7cf5-4e24-959f-a3e43420c96e {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-51960745-7cf5-4e24-959f-a3e43420c96e .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-c6525300-76e7-448f-8763-d9882f486d3c {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-c6525300-76e7-448f-8763-d9882f486d3c .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-c6525300-76e7-448f-8763-d9882f486d3c .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-c6525300-76e7-448f-8763-d9882f486d3c .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-157382cf-c3b0-4c0e-a97e-ff4c4a457609 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-157382cf-c3b0-4c0e-a97e-ff4c4a457609:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-157382cf-c3b0-4c0e-a97e-ff4c4a457609:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWZmYWFkNGQtZDAxZC00YWY4LThmMzktZjBlODZlODY5ZDU0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1ZmZhYWQ0ZC1kMDFkLTRhZjgtOGYzOS1mMGU4NmU4NjlkNTQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-157382cf-c3b0-4c0e-a97e-ff4c4a457609-atc-btn-wrapper {
    text-align: center;
  }


#s-157382cf-c3b0-4c0e-a97e-ff4c4a457609 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-157382cf-c3b0-4c0e-a97e-ff4c4a457609.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-157382cf-c3b0-4c0e-a97e-ff4c4a457609.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-157382cf-c3b0-4c0e-a97e-ff4c4a457609.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-157382cf-c3b0-4c0e-a97e-ff4c4a457609-atc-btn-wrapper {
    text-align: center;
  }


#s-157382cf-c3b0-4c0e-a97e-ff4c4a457609 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-157382cf-c3b0-4c0e-a97e-ff4c4a457609.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-157382cf-c3b0-4c0e-a97e-ff4c4a457609.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-157382cf-c3b0-4c0e-a97e-ff4c4a457609.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-157382cf-c3b0-4c0e-a97e-ff4c4a457609-atc-btn-wrapper {
    text-align: center;
  }


#s-157382cf-c3b0-4c0e-a97e-ff4c4a457609 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-157382cf-c3b0-4c0e-a97e-ff4c4a457609.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-157382cf-c3b0-4c0e-a97e-ff4c4a457609.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-157382cf-c3b0-4c0e-a97e-ff4c4a457609.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-157382cf-c3b0-4c0e-a97e-ff4c4a457609-atc-btn-wrapper {
    text-align: center;
  }


#s-157382cf-c3b0-4c0e-a97e-ff4c4a457609 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-157382cf-c3b0-4c0e-a97e-ff4c4a457609.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-157382cf-c3b0-4c0e-a97e-ff4c4a457609.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-157382cf-c3b0-4c0e-a97e-ff4c4a457609.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-157382cf-c3b0-4c0e-a97e-ff4c4a457609-atc-btn-wrapper {
    text-align: center;
  }


#s-157382cf-c3b0-4c0e-a97e-ff4c4a457609 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-157382cf-c3b0-4c0e-a97e-ff4c4a457609.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-157382cf-c3b0-4c0e-a97e-ff4c4a457609.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-157382cf-c3b0-4c0e-a97e-ff4c4a457609.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-682ea22d-3b9d-4210-9329-98130b2a9c83 {
  margin-left: auto;
margin-right: auto;
}

#s-1276a102-f7e3-4805-a112-a74907f85b45 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-1276a102-f7e3-4805-a112-a74907f85b45 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1276a102-f7e3-4805-a112-a74907f85b45 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-1276a102-f7e3-4805-a112-a74907f85b45 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1276a102-f7e3-4805-a112-a74907f85b45 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-1276a102-f7e3-4805-a112-a74907f85b45 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1276a102-f7e3-4805-a112-a74907f85b45 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-1276a102-f7e3-4805-a112-a74907f85b45 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1276a102-f7e3-4805-a112-a74907f85b45 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-1276a102-f7e3-4805-a112-a74907f85b45 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1276a102-f7e3-4805-a112-a74907f85b45 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-fa72f5dc-dbec-445a-83a2-4514d8aac517 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-fa72f5dc-dbec-445a-83a2-4514d8aac517 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-74c2edc5-397d-4d88-9a9a-e215227c120f {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-74c2edc5-397d-4d88-9a9a-e215227c120f .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-74c2edc5-397d-4d88-9a9a-e215227c120f .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-74c2edc5-397d-4d88-9a9a-e215227c120f .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-4c4327ca-d8d1-4221-bf42-8e2535d92a83 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-4c4327ca-d8d1-4221-bf42-8e2535d92a83:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-4c4327ca-d8d1-4221-bf42-8e2535d92a83:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWZmYWFkNGQtZDAxZC00YWY4LThmMzktZjBlODZlODY5ZDU0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1ZmZhYWQ0ZC1kMDFkLTRhZjgtOGYzOS1mMGU4NmU4NjlkNTQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-4c4327ca-d8d1-4221-bf42-8e2535d92a83-atc-btn-wrapper {
    text-align: center;
  }


#s-4c4327ca-d8d1-4221-bf42-8e2535d92a83 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-4c4327ca-d8d1-4221-bf42-8e2535d92a83.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4c4327ca-d8d1-4221-bf42-8e2535d92a83.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-4c4327ca-d8d1-4221-bf42-8e2535d92a83.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-4c4327ca-d8d1-4221-bf42-8e2535d92a83-atc-btn-wrapper {
    text-align: center;
  }


#s-4c4327ca-d8d1-4221-bf42-8e2535d92a83 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-4c4327ca-d8d1-4221-bf42-8e2535d92a83.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4c4327ca-d8d1-4221-bf42-8e2535d92a83.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-4c4327ca-d8d1-4221-bf42-8e2535d92a83.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-4c4327ca-d8d1-4221-bf42-8e2535d92a83-atc-btn-wrapper {
    text-align: center;
  }


#s-4c4327ca-d8d1-4221-bf42-8e2535d92a83 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-4c4327ca-d8d1-4221-bf42-8e2535d92a83.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4c4327ca-d8d1-4221-bf42-8e2535d92a83.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-4c4327ca-d8d1-4221-bf42-8e2535d92a83.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-4c4327ca-d8d1-4221-bf42-8e2535d92a83-atc-btn-wrapper {
    text-align: center;
  }


#s-4c4327ca-d8d1-4221-bf42-8e2535d92a83 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-4c4327ca-d8d1-4221-bf42-8e2535d92a83.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4c4327ca-d8d1-4221-bf42-8e2535d92a83.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-4c4327ca-d8d1-4221-bf42-8e2535d92a83.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-4c4327ca-d8d1-4221-bf42-8e2535d92a83-atc-btn-wrapper {
    text-align: center;
  }


#s-4c4327ca-d8d1-4221-bf42-8e2535d92a83 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-4c4327ca-d8d1-4221-bf42-8e2535d92a83.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4c4327ca-d8d1-4221-bf42-8e2535d92a83.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-4c4327ca-d8d1-4221-bf42-8e2535d92a83.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-bce8ee9d-e112-4a7a-9fd9-c76e159387bc {
  margin-left: auto;
margin-right: auto;
}

#s-41bb6e2c-715d-4d27-9e40-39b2c21f2a00 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-41bb6e2c-715d-4d27-9e40-39b2c21f2a00 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-41bb6e2c-715d-4d27-9e40-39b2c21f2a00 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-41bb6e2c-715d-4d27-9e40-39b2c21f2a00 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-41bb6e2c-715d-4d27-9e40-39b2c21f2a00 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-41bb6e2c-715d-4d27-9e40-39b2c21f2a00 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-41bb6e2c-715d-4d27-9e40-39b2c21f2a00 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-41bb6e2c-715d-4d27-9e40-39b2c21f2a00 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-41bb6e2c-715d-4d27-9e40-39b2c21f2a00 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-41bb6e2c-715d-4d27-9e40-39b2c21f2a00 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-41bb6e2c-715d-4d27-9e40-39b2c21f2a00 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-4c17f0dd-924e-42b2-9d33-7d4ad4d2a060 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4c17f0dd-924e-42b2-9d33-7d4ad4d2a060 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-1f5bfbbd-aaf8-4bf0-933e-50250c5495f7 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-1f5bfbbd-aaf8-4bf0-933e-50250c5495f7 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-1f5bfbbd-aaf8-4bf0-933e-50250c5495f7 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-1f5bfbbd-aaf8-4bf0-933e-50250c5495f7 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-e51b207d-ec0e-4929-aa22-e1880f6c2303 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-e51b207d-ec0e-4929-aa22-e1880f6c2303:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-e51b207d-ec0e-4929-aa22-e1880f6c2303:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWZmYWFkNGQtZDAxZC00YWY4LThmMzktZjBlODZlODY5ZDU0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1ZmZhYWQ0ZC1kMDFkLTRhZjgtOGYzOS1mMGU4NmU4NjlkNTQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-e51b207d-ec0e-4929-aa22-e1880f6c2303-atc-btn-wrapper {
    text-align: center;
  }


#s-e51b207d-ec0e-4929-aa22-e1880f6c2303 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-e51b207d-ec0e-4929-aa22-e1880f6c2303.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e51b207d-ec0e-4929-aa22-e1880f6c2303.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-e51b207d-ec0e-4929-aa22-e1880f6c2303.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-e51b207d-ec0e-4929-aa22-e1880f6c2303-atc-btn-wrapper {
    text-align: center;
  }


#s-e51b207d-ec0e-4929-aa22-e1880f6c2303 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-e51b207d-ec0e-4929-aa22-e1880f6c2303.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e51b207d-ec0e-4929-aa22-e1880f6c2303.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-e51b207d-ec0e-4929-aa22-e1880f6c2303.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-e51b207d-ec0e-4929-aa22-e1880f6c2303-atc-btn-wrapper {
    text-align: center;
  }


#s-e51b207d-ec0e-4929-aa22-e1880f6c2303 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-e51b207d-ec0e-4929-aa22-e1880f6c2303.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e51b207d-ec0e-4929-aa22-e1880f6c2303.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-e51b207d-ec0e-4929-aa22-e1880f6c2303.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-e51b207d-ec0e-4929-aa22-e1880f6c2303-atc-btn-wrapper {
    text-align: center;
  }


#s-e51b207d-ec0e-4929-aa22-e1880f6c2303 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-e51b207d-ec0e-4929-aa22-e1880f6c2303.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e51b207d-ec0e-4929-aa22-e1880f6c2303.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-e51b207d-ec0e-4929-aa22-e1880f6c2303.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-e51b207d-ec0e-4929-aa22-e1880f6c2303-atc-btn-wrapper {
    text-align: center;
  }


#s-e51b207d-ec0e-4929-aa22-e1880f6c2303 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-e51b207d-ec0e-4929-aa22-e1880f6c2303.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e51b207d-ec0e-4929-aa22-e1880f6c2303.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-e51b207d-ec0e-4929-aa22-e1880f6c2303.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-21a5f7cf-1764-4049-8064-6c4a0bf16cc7 {
  margin-left: auto;
margin-right: auto;
}

#s-22866624-3bc5-48be-8684-7b653d1e3cdb {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-22866624-3bc5-48be-8684-7b653d1e3cdb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-22866624-3bc5-48be-8684-7b653d1e3cdb img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-22866624-3bc5-48be-8684-7b653d1e3cdb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-22866624-3bc5-48be-8684-7b653d1e3cdb img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-22866624-3bc5-48be-8684-7b653d1e3cdb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-22866624-3bc5-48be-8684-7b653d1e3cdb img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-22866624-3bc5-48be-8684-7b653d1e3cdb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-22866624-3bc5-48be-8684-7b653d1e3cdb img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-22866624-3bc5-48be-8684-7b653d1e3cdb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-22866624-3bc5-48be-8684-7b653d1e3cdb img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-2d7529ca-636c-479c-85f2-d883b58c7e17 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2d7529ca-636c-479c-85f2-d883b58c7e17 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-155c4a31-78ab-432e-afc4-f5e021090ef0 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-155c4a31-78ab-432e-afc4-f5e021090ef0 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-155c4a31-78ab-432e-afc4-f5e021090ef0 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-155c4a31-78ab-432e-afc4-f5e021090ef0 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWZmYWFkNGQtZDAxZC00YWY4LThmMzktZjBlODZlODY5ZDU0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1ZmZhYWQ0ZC1kMDFkLTRhZjgtOGYzOS1mMGU4NmU4NjlkNTQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557-atc-btn-wrapper {
    text-align: center;
  }


#s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557-atc-btn-wrapper {
    text-align: center;
  }


#s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557-atc-btn-wrapper {
    text-align: center;
  }


#s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557-atc-btn-wrapper {
    text-align: center;
  }


#s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557-atc-btn-wrapper {
    text-align: center;
  }


#s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-8b233bc6-ee05-4cc0-baf7-6ceb5a22e557.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-7ec1e1f3-2edf-47bd-8de9-e00468e2b5d2 {
  margin-left: auto;
margin-right: auto;
}

#s-ed951e89-eafc-47a5-8a9c-c95915333bf0 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-ed951e89-eafc-47a5-8a9c-c95915333bf0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ed951e89-eafc-47a5-8a9c-c95915333bf0 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-ed951e89-eafc-47a5-8a9c-c95915333bf0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ed951e89-eafc-47a5-8a9c-c95915333bf0 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-ed951e89-eafc-47a5-8a9c-c95915333bf0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ed951e89-eafc-47a5-8a9c-c95915333bf0 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-ed951e89-eafc-47a5-8a9c-c95915333bf0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ed951e89-eafc-47a5-8a9c-c95915333bf0 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-ed951e89-eafc-47a5-8a9c-c95915333bf0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ed951e89-eafc-47a5-8a9c-c95915333bf0 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-56d4f2bf-3cb3-4d03-b20f-0381ff2d177d {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-56d4f2bf-3cb3-4d03-b20f-0381ff2d177d .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-8f1918d9-5f92-4ce7-b343-c116eb54ef2c {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-8f1918d9-5f92-4ce7-b343-c116eb54ef2c .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-8f1918d9-5f92-4ce7-b343-c116eb54ef2c .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-8f1918d9-5f92-4ce7-b343-c116eb54ef2c .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-3094111c-73db-408b-a74c-b666d64f3fa0 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-3094111c-73db-408b-a74c-b666d64f3fa0:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-3094111c-73db-408b-a74c-b666d64f3fa0:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWZmYWFkNGQtZDAxZC00YWY4LThmMzktZjBlODZlODY5ZDU0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1ZmZhYWQ0ZC1kMDFkLTRhZjgtOGYzOS1mMGU4NmU4NjlkNTQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-3094111c-73db-408b-a74c-b666d64f3fa0-atc-btn-wrapper {
    text-align: center;
  }


#s-3094111c-73db-408b-a74c-b666d64f3fa0 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3094111c-73db-408b-a74c-b666d64f3fa0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3094111c-73db-408b-a74c-b666d64f3fa0.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-3094111c-73db-408b-a74c-b666d64f3fa0.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-3094111c-73db-408b-a74c-b666d64f3fa0-atc-btn-wrapper {
    text-align: center;
  }


#s-3094111c-73db-408b-a74c-b666d64f3fa0 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3094111c-73db-408b-a74c-b666d64f3fa0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3094111c-73db-408b-a74c-b666d64f3fa0.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-3094111c-73db-408b-a74c-b666d64f3fa0.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-3094111c-73db-408b-a74c-b666d64f3fa0-atc-btn-wrapper {
    text-align: center;
  }


#s-3094111c-73db-408b-a74c-b666d64f3fa0 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3094111c-73db-408b-a74c-b666d64f3fa0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3094111c-73db-408b-a74c-b666d64f3fa0.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-3094111c-73db-408b-a74c-b666d64f3fa0.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-3094111c-73db-408b-a74c-b666d64f3fa0-atc-btn-wrapper {
    text-align: center;
  }


#s-3094111c-73db-408b-a74c-b666d64f3fa0 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3094111c-73db-408b-a74c-b666d64f3fa0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3094111c-73db-408b-a74c-b666d64f3fa0.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-3094111c-73db-408b-a74c-b666d64f3fa0.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-3094111c-73db-408b-a74c-b666d64f3fa0-atc-btn-wrapper {
    text-align: center;
  }


#s-3094111c-73db-408b-a74c-b666d64f3fa0 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3094111c-73db-408b-a74c-b666d64f3fa0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3094111c-73db-408b-a74c-b666d64f3fa0.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-3094111c-73db-408b-a74c-b666d64f3fa0.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-e8257240-a5b3-4d20-ad47-53c2523a23f7 {
  margin-left: auto;
margin-right: auto;
}

#s-05ba136e-cd48-4ff3-b9bb-8064b6ee1895 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-05ba136e-cd48-4ff3-b9bb-8064b6ee1895 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05ba136e-cd48-4ff3-b9bb-8064b6ee1895 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-05ba136e-cd48-4ff3-b9bb-8064b6ee1895 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05ba136e-cd48-4ff3-b9bb-8064b6ee1895 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-05ba136e-cd48-4ff3-b9bb-8064b6ee1895 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05ba136e-cd48-4ff3-b9bb-8064b6ee1895 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-05ba136e-cd48-4ff3-b9bb-8064b6ee1895 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05ba136e-cd48-4ff3-b9bb-8064b6ee1895 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-05ba136e-cd48-4ff3-b9bb-8064b6ee1895 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05ba136e-cd48-4ff3-b9bb-8064b6ee1895 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-1aefeddb-3ed0-447a-bbdf-39954aaf4625 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1aefeddb-3ed0-447a-bbdf-39954aaf4625 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-1c276415-a842-48ab-bea3-89471bb44ac2 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-1c276415-a842-48ab-bea3-89471bb44ac2 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-1c276415-a842-48ab-bea3-89471bb44ac2 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-1c276415-a842-48ab-bea3-89471bb44ac2 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWZmYWFkNGQtZDAxZC00YWY4LThmMzktZjBlODZlODY5ZDU0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1ZmZhYWQ0ZC1kMDFkLTRhZjgtOGYzOS1mMGU4NmU4NjlkNTQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b-atc-btn-wrapper {
    text-align: center;
  }


#s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b-atc-btn-wrapper {
    text-align: center;
  }


#s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b-atc-btn-wrapper {
    text-align: center;
  }


#s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b-atc-btn-wrapper {
    text-align: center;
  }


#s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b-atc-btn-wrapper {
    text-align: center;
  }


#s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-d5f21f34-ba9e-4c1b-a43c-ab57150ffe3b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-81125554-b55a-4072-8b1b-622f983ea8dd {
  margin-left: auto;
margin-right: auto;
}

#s-b50ada3f-baa6-4651-9e51-f8f30174f48e {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-b50ada3f-baa6-4651-9e51-f8f30174f48e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b50ada3f-baa6-4651-9e51-f8f30174f48e img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-b50ada3f-baa6-4651-9e51-f8f30174f48e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b50ada3f-baa6-4651-9e51-f8f30174f48e img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-b50ada3f-baa6-4651-9e51-f8f30174f48e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b50ada3f-baa6-4651-9e51-f8f30174f48e img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-b50ada3f-baa6-4651-9e51-f8f30174f48e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b50ada3f-baa6-4651-9e51-f8f30174f48e img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-b50ada3f-baa6-4651-9e51-f8f30174f48e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b50ada3f-baa6-4651-9e51-f8f30174f48e img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-e3f5ee1e-dd93-4985-91a9-106f348b607a {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e3f5ee1e-dd93-4985-91a9-106f348b607a .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-9925e8e5-d03a-42e4-bbaf-a892178e644b {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-9925e8e5-d03a-42e4-bbaf-a892178e644b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-9925e8e5-d03a-42e4-bbaf-a892178e644b .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-9925e8e5-d03a-42e4-bbaf-a892178e644b .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-07cc756b-724a-4898-a692-2ba65a97e982 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-07cc756b-724a-4898-a692-2ba65a97e982:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-07cc756b-724a-4898-a692-2ba65a97e982:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWZmYWFkNGQtZDAxZC00YWY4LThmMzktZjBlODZlODY5ZDU0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1ZmZhYWQ0ZC1kMDFkLTRhZjgtOGYzOS1mMGU4NmU4NjlkNTQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-07cc756b-724a-4898-a692-2ba65a97e982-atc-btn-wrapper {
    text-align: center;
  }


#s-07cc756b-724a-4898-a692-2ba65a97e982 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-07cc756b-724a-4898-a692-2ba65a97e982.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-07cc756b-724a-4898-a692-2ba65a97e982.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-07cc756b-724a-4898-a692-2ba65a97e982.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-07cc756b-724a-4898-a692-2ba65a97e982-atc-btn-wrapper {
    text-align: center;
  }


#s-07cc756b-724a-4898-a692-2ba65a97e982 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-07cc756b-724a-4898-a692-2ba65a97e982.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-07cc756b-724a-4898-a692-2ba65a97e982.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-07cc756b-724a-4898-a692-2ba65a97e982.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-07cc756b-724a-4898-a692-2ba65a97e982-atc-btn-wrapper {
    text-align: center;
  }


#s-07cc756b-724a-4898-a692-2ba65a97e982 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-07cc756b-724a-4898-a692-2ba65a97e982.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-07cc756b-724a-4898-a692-2ba65a97e982.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-07cc756b-724a-4898-a692-2ba65a97e982.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-07cc756b-724a-4898-a692-2ba65a97e982-atc-btn-wrapper {
    text-align: center;
  }


#s-07cc756b-724a-4898-a692-2ba65a97e982 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-07cc756b-724a-4898-a692-2ba65a97e982.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-07cc756b-724a-4898-a692-2ba65a97e982.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-07cc756b-724a-4898-a692-2ba65a97e982.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-07cc756b-724a-4898-a692-2ba65a97e982-atc-btn-wrapper {
    text-align: center;
  }


#s-07cc756b-724a-4898-a692-2ba65a97e982 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-07cc756b-724a-4898-a692-2ba65a97e982.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-07cc756b-724a-4898-a692-2ba65a97e982.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-07cc756b-724a-4898-a692-2ba65a97e982.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-99254c41-f63c-4549-be50-8211dd4f72bf {
  margin-left: auto;
margin-right: auto;
}

#s-d23875ca-3218-45b3-baa7-eec1b213d44d {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-d23875ca-3218-45b3-baa7-eec1b213d44d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d23875ca-3218-45b3-baa7-eec1b213d44d img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-d23875ca-3218-45b3-baa7-eec1b213d44d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d23875ca-3218-45b3-baa7-eec1b213d44d img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-d23875ca-3218-45b3-baa7-eec1b213d44d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d23875ca-3218-45b3-baa7-eec1b213d44d img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-d23875ca-3218-45b3-baa7-eec1b213d44d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d23875ca-3218-45b3-baa7-eec1b213d44d img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-d23875ca-3218-45b3-baa7-eec1b213d44d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d23875ca-3218-45b3-baa7-eec1b213d44d img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-3759f04a-67a9-44c7-b2bc-249372f1e61c {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3759f04a-67a9-44c7-b2bc-249372f1e61c .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-4a7bceb4-e9c0-4ea9-b50d-bb8e2f7e6ae5 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-4a7bceb4-e9c0-4ea9-b50d-bb8e2f7e6ae5 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-4a7bceb4-e9c0-4ea9-b50d-bb8e2f7e6ae5 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-4a7bceb4-e9c0-4ea9-b50d-bb8e2f7e6ae5 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWZmYWFkNGQtZDAxZC00YWY4LThmMzktZjBlODZlODY5ZDU0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1ZmZhYWQ0ZC1kMDFkLTRhZjgtOGYzOS1mMGU4NmU4NjlkNTQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b-atc-btn-wrapper {
    text-align: center;
  }


#s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b-atc-btn-wrapper {
    text-align: center;
  }


#s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b-atc-btn-wrapper {
    text-align: center;
  }


#s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b-atc-btn-wrapper {
    text-align: center;
  }


#s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b-atc-btn-wrapper {
    text-align: center;
  }


#s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-6a45a4b4-b4cf-44c5-a8b2-78699f281c9b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-dd6ffbdf-c0f9-4ca7-95f8-2e935f670239 {
  margin-left: auto;
margin-right: auto;
}

#s-d904ec3b-9f31-41b0-9e04-3bee9231161b {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-d904ec3b-9f31-41b0-9e04-3bee9231161b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d904ec3b-9f31-41b0-9e04-3bee9231161b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-d904ec3b-9f31-41b0-9e04-3bee9231161b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d904ec3b-9f31-41b0-9e04-3bee9231161b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-d904ec3b-9f31-41b0-9e04-3bee9231161b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d904ec3b-9f31-41b0-9e04-3bee9231161b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-d904ec3b-9f31-41b0-9e04-3bee9231161b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d904ec3b-9f31-41b0-9e04-3bee9231161b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-d904ec3b-9f31-41b0-9e04-3bee9231161b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d904ec3b-9f31-41b0-9e04-3bee9231161b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-205bee41-9c47-48fc-a7bc-959c21ff5247 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-205bee41-9c47-48fc-a7bc-959c21ff5247 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-5e2b6381-0afe-4e77-b671-8459bdfa4f5b {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-5e2b6381-0afe-4e77-b671-8459bdfa4f5b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-5e2b6381-0afe-4e77-b671-8459bdfa4f5b .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-5e2b6381-0afe-4e77-b671-8459bdfa4f5b .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-2c7f46b6-4eae-4a9d-863f-10c779c0a111 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-2c7f46b6-4eae-4a9d-863f-10c779c0a111:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-2c7f46b6-4eae-4a9d-863f-10c779c0a111:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWZmYWFkNGQtZDAxZC00YWY4LThmMzktZjBlODZlODY5ZDU0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1ZmZhYWQ0ZC1kMDFkLTRhZjgtOGYzOS1mMGU4NmU4NjlkNTQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-2c7f46b6-4eae-4a9d-863f-10c779c0a111-atc-btn-wrapper {
    text-align: center;
  }


#s-2c7f46b6-4eae-4a9d-863f-10c779c0a111 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2c7f46b6-4eae-4a9d-863f-10c779c0a111.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2c7f46b6-4eae-4a9d-863f-10c779c0a111.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-2c7f46b6-4eae-4a9d-863f-10c779c0a111.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-2c7f46b6-4eae-4a9d-863f-10c779c0a111-atc-btn-wrapper {
    text-align: center;
  }


#s-2c7f46b6-4eae-4a9d-863f-10c779c0a111 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2c7f46b6-4eae-4a9d-863f-10c779c0a111.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2c7f46b6-4eae-4a9d-863f-10c779c0a111.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-2c7f46b6-4eae-4a9d-863f-10c779c0a111.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-2c7f46b6-4eae-4a9d-863f-10c779c0a111-atc-btn-wrapper {
    text-align: center;
  }


#s-2c7f46b6-4eae-4a9d-863f-10c779c0a111 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2c7f46b6-4eae-4a9d-863f-10c779c0a111.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2c7f46b6-4eae-4a9d-863f-10c779c0a111.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-2c7f46b6-4eae-4a9d-863f-10c779c0a111.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-2c7f46b6-4eae-4a9d-863f-10c779c0a111-atc-btn-wrapper {
    text-align: center;
  }


#s-2c7f46b6-4eae-4a9d-863f-10c779c0a111 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2c7f46b6-4eae-4a9d-863f-10c779c0a111.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2c7f46b6-4eae-4a9d-863f-10c779c0a111.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-2c7f46b6-4eae-4a9d-863f-10c779c0a111.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-2c7f46b6-4eae-4a9d-863f-10c779c0a111-atc-btn-wrapper {
    text-align: center;
  }


#s-2c7f46b6-4eae-4a9d-863f-10c779c0a111 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2c7f46b6-4eae-4a9d-863f-10c779c0a111.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2c7f46b6-4eae-4a9d-863f-10c779c0a111.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-2c7f46b6-4eae-4a9d-863f-10c779c0a111.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-b2a5796e-0d52-4e96-91c2-5f54205342da {
  margin-left: auto;
margin-right: auto;
}

#s-32db7590-e1c3-4560-8a3f-027ebbe07705 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-32db7590-e1c3-4560-8a3f-027ebbe07705 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32db7590-e1c3-4560-8a3f-027ebbe07705 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-32db7590-e1c3-4560-8a3f-027ebbe07705 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32db7590-e1c3-4560-8a3f-027ebbe07705 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-32db7590-e1c3-4560-8a3f-027ebbe07705 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32db7590-e1c3-4560-8a3f-027ebbe07705 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-32db7590-e1c3-4560-8a3f-027ebbe07705 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32db7590-e1c3-4560-8a3f-027ebbe07705 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-32db7590-e1c3-4560-8a3f-027ebbe07705 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32db7590-e1c3-4560-8a3f-027ebbe07705 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-956d5985-0bda-412e-8875-aa9407da5147 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-956d5985-0bda-412e-8875-aa9407da5147 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-656d84e2-f4b6-4d33-b1d3-6a767f8e2170 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-656d84e2-f4b6-4d33-b1d3-6a767f8e2170 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-656d84e2-f4b6-4d33-b1d3-6a767f8e2170 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-656d84e2-f4b6-4d33-b1d3-6a767f8e2170 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-0fc54037-dcd6-4bd9-8398-f9c5306a4704 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-0fc54037-dcd6-4bd9-8398-f9c5306a4704:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-0fc54037-dcd6-4bd9-8398-f9c5306a4704:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWZmYWFkNGQtZDAxZC00YWY4LThmMzktZjBlODZlODY5ZDU0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1ZmZhYWQ0ZC1kMDFkLTRhZjgtOGYzOS1mMGU4NmU4NjlkNTQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-0fc54037-dcd6-4bd9-8398-f9c5306a4704-atc-btn-wrapper {
    text-align: center;
  }


#s-0fc54037-dcd6-4bd9-8398-f9c5306a4704 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0fc54037-dcd6-4bd9-8398-f9c5306a4704.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0fc54037-dcd6-4bd9-8398-f9c5306a4704.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-0fc54037-dcd6-4bd9-8398-f9c5306a4704.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-0fc54037-dcd6-4bd9-8398-f9c5306a4704-atc-btn-wrapper {
    text-align: center;
  }


#s-0fc54037-dcd6-4bd9-8398-f9c5306a4704 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0fc54037-dcd6-4bd9-8398-f9c5306a4704.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0fc54037-dcd6-4bd9-8398-f9c5306a4704.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-0fc54037-dcd6-4bd9-8398-f9c5306a4704.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-0fc54037-dcd6-4bd9-8398-f9c5306a4704-atc-btn-wrapper {
    text-align: center;
  }


#s-0fc54037-dcd6-4bd9-8398-f9c5306a4704 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0fc54037-dcd6-4bd9-8398-f9c5306a4704.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0fc54037-dcd6-4bd9-8398-f9c5306a4704.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-0fc54037-dcd6-4bd9-8398-f9c5306a4704.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-0fc54037-dcd6-4bd9-8398-f9c5306a4704-atc-btn-wrapper {
    text-align: center;
  }


#s-0fc54037-dcd6-4bd9-8398-f9c5306a4704 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0fc54037-dcd6-4bd9-8398-f9c5306a4704.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0fc54037-dcd6-4bd9-8398-f9c5306a4704.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-0fc54037-dcd6-4bd9-8398-f9c5306a4704.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-0fc54037-dcd6-4bd9-8398-f9c5306a4704-atc-btn-wrapper {
    text-align: center;
  }


#s-0fc54037-dcd6-4bd9-8398-f9c5306a4704 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0fc54037-dcd6-4bd9-8398-f9c5306a4704.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0fc54037-dcd6-4bd9-8398-f9c5306a4704.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-0fc54037-dcd6-4bd9-8398-f9c5306a4704.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-b92cc137-424f-4064-b0e7-4241c62912ca {
  margin-left: auto;
margin-right: auto;
}

#s-4cbfc7f9-e295-4d2b-bc20-c8afcddc5ac3 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-4cbfc7f9-e295-4d2b-bc20-c8afcddc5ac3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4cbfc7f9-e295-4d2b-bc20-c8afcddc5ac3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-4cbfc7f9-e295-4d2b-bc20-c8afcddc5ac3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4cbfc7f9-e295-4d2b-bc20-c8afcddc5ac3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-4cbfc7f9-e295-4d2b-bc20-c8afcddc5ac3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4cbfc7f9-e295-4d2b-bc20-c8afcddc5ac3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-4cbfc7f9-e295-4d2b-bc20-c8afcddc5ac3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4cbfc7f9-e295-4d2b-bc20-c8afcddc5ac3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-4cbfc7f9-e295-4d2b-bc20-c8afcddc5ac3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4cbfc7f9-e295-4d2b-bc20-c8afcddc5ac3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-eeb3ca4b-0dac-405e-9e03-966aa7813281 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-eeb3ca4b-0dac-405e-9e03-966aa7813281 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-bf3ad113-a722-4def-b878-7c59bdc1e545 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-bf3ad113-a722-4def-b878-7c59bdc1e545 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-bf3ad113-a722-4def-b878-7c59bdc1e545 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-bf3ad113-a722-4def-b878-7c59bdc1e545 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-a16722a8-4723-4b93-a468-94156500ca4d {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-a16722a8-4723-4b93-a468-94156500ca4d:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-a16722a8-4723-4b93-a468-94156500ca4d:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWZmYWFkNGQtZDAxZC00YWY4LThmMzktZjBlODZlODY5ZDU0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1ZmZhYWQ0ZC1kMDFkLTRhZjgtOGYzOS1mMGU4NmU4NjlkNTQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-a16722a8-4723-4b93-a468-94156500ca4d-atc-btn-wrapper {
    text-align: center;
  }


#s-a16722a8-4723-4b93-a468-94156500ca4d {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a16722a8-4723-4b93-a468-94156500ca4d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a16722a8-4723-4b93-a468-94156500ca4d.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-a16722a8-4723-4b93-a468-94156500ca4d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-a16722a8-4723-4b93-a468-94156500ca4d-atc-btn-wrapper {
    text-align: center;
  }


#s-a16722a8-4723-4b93-a468-94156500ca4d {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a16722a8-4723-4b93-a468-94156500ca4d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a16722a8-4723-4b93-a468-94156500ca4d.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-a16722a8-4723-4b93-a468-94156500ca4d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-a16722a8-4723-4b93-a468-94156500ca4d-atc-btn-wrapper {
    text-align: center;
  }


#s-a16722a8-4723-4b93-a468-94156500ca4d {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a16722a8-4723-4b93-a468-94156500ca4d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a16722a8-4723-4b93-a468-94156500ca4d.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-a16722a8-4723-4b93-a468-94156500ca4d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-a16722a8-4723-4b93-a468-94156500ca4d-atc-btn-wrapper {
    text-align: center;
  }


#s-a16722a8-4723-4b93-a468-94156500ca4d {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a16722a8-4723-4b93-a468-94156500ca4d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a16722a8-4723-4b93-a468-94156500ca4d.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-a16722a8-4723-4b93-a468-94156500ca4d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-a16722a8-4723-4b93-a468-94156500ca4d-atc-btn-wrapper {
    text-align: center;
  }


#s-a16722a8-4723-4b93-a468-94156500ca4d {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a16722a8-4723-4b93-a468-94156500ca4d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a16722a8-4723-4b93-a468-94156500ca4d.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-a16722a8-4723-4b93-a468-94156500ca4d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-c6f084c5-0453-4bd5-8a44-1b26654e4889 {
  margin-left: auto;
margin-right: auto;
}

#s-e5c0821a-d9f6-40af-9585-aa7eb4901831 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-e5c0821a-d9f6-40af-9585-aa7eb4901831 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e5c0821a-d9f6-40af-9585-aa7eb4901831 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-e5c0821a-d9f6-40af-9585-aa7eb4901831 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e5c0821a-d9f6-40af-9585-aa7eb4901831 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-e5c0821a-d9f6-40af-9585-aa7eb4901831 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e5c0821a-d9f6-40af-9585-aa7eb4901831 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-e5c0821a-d9f6-40af-9585-aa7eb4901831 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e5c0821a-d9f6-40af-9585-aa7eb4901831 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-e5c0821a-d9f6-40af-9585-aa7eb4901831 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e5c0821a-d9f6-40af-9585-aa7eb4901831 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-86862b6f-ccd1-434d-9e8e-a6d79acd6851 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-86862b6f-ccd1-434d-9e8e-a6d79acd6851 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-94fe6021-5c38-4d56-8559-09677a7eff5f {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-94fe6021-5c38-4d56-8559-09677a7eff5f .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-94fe6021-5c38-4d56-8559-09677a7eff5f .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-94fe6021-5c38-4d56-8559-09677a7eff5f .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-f51e08e5-d286-457d-86b6-d81df187a2ee {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-f51e08e5-d286-457d-86b6-d81df187a2ee:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-f51e08e5-d286-457d-86b6-d81df187a2ee:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWZmYWFkNGQtZDAxZC00YWY4LThmMzktZjBlODZlODY5ZDU0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1ZmZhYWQ0ZC1kMDFkLTRhZjgtOGYzOS1mMGU4NmU4NjlkNTQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-f51e08e5-d286-457d-86b6-d81df187a2ee-atc-btn-wrapper {
    text-align: center;
  }


#s-f51e08e5-d286-457d-86b6-d81df187a2ee {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f51e08e5-d286-457d-86b6-d81df187a2ee.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f51e08e5-d286-457d-86b6-d81df187a2ee.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-f51e08e5-d286-457d-86b6-d81df187a2ee.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-f51e08e5-d286-457d-86b6-d81df187a2ee-atc-btn-wrapper {
    text-align: center;
  }


#s-f51e08e5-d286-457d-86b6-d81df187a2ee {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f51e08e5-d286-457d-86b6-d81df187a2ee.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f51e08e5-d286-457d-86b6-d81df187a2ee.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-f51e08e5-d286-457d-86b6-d81df187a2ee.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-f51e08e5-d286-457d-86b6-d81df187a2ee-atc-btn-wrapper {
    text-align: center;
  }


#s-f51e08e5-d286-457d-86b6-d81df187a2ee {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f51e08e5-d286-457d-86b6-d81df187a2ee.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f51e08e5-d286-457d-86b6-d81df187a2ee.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-f51e08e5-d286-457d-86b6-d81df187a2ee.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-f51e08e5-d286-457d-86b6-d81df187a2ee-atc-btn-wrapper {
    text-align: center;
  }


#s-f51e08e5-d286-457d-86b6-d81df187a2ee {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f51e08e5-d286-457d-86b6-d81df187a2ee.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f51e08e5-d286-457d-86b6-d81df187a2ee.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-f51e08e5-d286-457d-86b6-d81df187a2ee.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-f51e08e5-d286-457d-86b6-d81df187a2ee-atc-btn-wrapper {
    text-align: center;
  }


#s-f51e08e5-d286-457d-86b6-d81df187a2ee {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f51e08e5-d286-457d-86b6-d81df187a2ee.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f51e08e5-d286-457d-86b6-d81df187a2ee.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-f51e08e5-d286-457d-86b6-d81df187a2ee.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-219f71d6-d99a-474f-930a-1cdb6680a9b2 {
  margin-left: auto;
margin-right: auto;
}

#s-360fc745-c002-40d2-b933-95a6b6457b4c {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-360fc745-c002-40d2-b933-95a6b6457b4c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-360fc745-c002-40d2-b933-95a6b6457b4c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-360fc745-c002-40d2-b933-95a6b6457b4c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-360fc745-c002-40d2-b933-95a6b6457b4c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-360fc745-c002-40d2-b933-95a6b6457b4c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-360fc745-c002-40d2-b933-95a6b6457b4c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-360fc745-c002-40d2-b933-95a6b6457b4c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-360fc745-c002-40d2-b933-95a6b6457b4c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-360fc745-c002-40d2-b933-95a6b6457b4c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-360fc745-c002-40d2-b933-95a6b6457b4c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-0c81af6d-0bae-47d5-8d39-82eabbd371c1 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0c81af6d-0bae-47d5-8d39-82eabbd371c1 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-00d8ec07-c6b0-4de0-b632-2e7d78e49958 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-00d8ec07-c6b0-4de0-b632-2e7d78e49958 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-00d8ec07-c6b0-4de0-b632-2e7d78e49958 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-00d8ec07-c6b0-4de0-b632-2e7d78e49958 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWZmYWFkNGQtZDAxZC00YWY4LThmMzktZjBlODZlODY5ZDU0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1ZmZhYWQ0ZC1kMDFkLTRhZjgtOGYzOS1mMGU4NmU4NjlkNTQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca-atc-btn-wrapper {
    text-align: center;
  }


#s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca-atc-btn-wrapper {
    text-align: center;
  }


#s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca-atc-btn-wrapper {
    text-align: center;
  }


#s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca-atc-btn-wrapper {
    text-align: center;
  }


#s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca-atc-btn-wrapper {
    text-align: center;
  }


#s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-db485cfc-f3ba-4d3c-a91d-f9452f65e2ca.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-d36fe20a-f730-4e2b-a50f-61ce879f5b83 {
  margin-left: auto;
margin-right: auto;
}

#s-c0e6dd90-3ee9-4e85-867b-9b758b96b354 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-c0e6dd90-3ee9-4e85-867b-9b758b96b354 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c0e6dd90-3ee9-4e85-867b-9b758b96b354 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-c0e6dd90-3ee9-4e85-867b-9b758b96b354 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c0e6dd90-3ee9-4e85-867b-9b758b96b354 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-c0e6dd90-3ee9-4e85-867b-9b758b96b354 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c0e6dd90-3ee9-4e85-867b-9b758b96b354 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-c0e6dd90-3ee9-4e85-867b-9b758b96b354 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c0e6dd90-3ee9-4e85-867b-9b758b96b354 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-c0e6dd90-3ee9-4e85-867b-9b758b96b354 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c0e6dd90-3ee9-4e85-867b-9b758b96b354 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-5a983312-a532-4f88-9155-ecb65120c087 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5a983312-a532-4f88-9155-ecb65120c087 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-b90049ca-b03c-4c2f-97e7-1e8f3271ccb3 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-b90049ca-b03c-4c2f-97e7-1e8f3271ccb3 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-b90049ca-b03c-4c2f-97e7-1e8f3271ccb3 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-b90049ca-b03c-4c2f-97e7-1e8f3271ccb3 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-b76548f3-b09a-4489-ae6a-213618208824 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-b76548f3-b09a-4489-ae6a-213618208824:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-b76548f3-b09a-4489-ae6a-213618208824:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWZmYWFkNGQtZDAxZC00YWY4LThmMzktZjBlODZlODY5ZDU0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1ZmZhYWQ0ZC1kMDFkLTRhZjgtOGYzOS1mMGU4NmU4NjlkNTQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-b76548f3-b09a-4489-ae6a-213618208824-atc-btn-wrapper {
    text-align: center;
  }


#s-b76548f3-b09a-4489-ae6a-213618208824 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b76548f3-b09a-4489-ae6a-213618208824.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b76548f3-b09a-4489-ae6a-213618208824.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-b76548f3-b09a-4489-ae6a-213618208824.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-b76548f3-b09a-4489-ae6a-213618208824-atc-btn-wrapper {
    text-align: center;
  }


#s-b76548f3-b09a-4489-ae6a-213618208824 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b76548f3-b09a-4489-ae6a-213618208824.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b76548f3-b09a-4489-ae6a-213618208824.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-b76548f3-b09a-4489-ae6a-213618208824.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-b76548f3-b09a-4489-ae6a-213618208824-atc-btn-wrapper {
    text-align: center;
  }


#s-b76548f3-b09a-4489-ae6a-213618208824 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b76548f3-b09a-4489-ae6a-213618208824.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b76548f3-b09a-4489-ae6a-213618208824.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-b76548f3-b09a-4489-ae6a-213618208824.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-b76548f3-b09a-4489-ae6a-213618208824-atc-btn-wrapper {
    text-align: center;
  }


#s-b76548f3-b09a-4489-ae6a-213618208824 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b76548f3-b09a-4489-ae6a-213618208824.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b76548f3-b09a-4489-ae6a-213618208824.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-b76548f3-b09a-4489-ae6a-213618208824.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-b76548f3-b09a-4489-ae6a-213618208824-atc-btn-wrapper {
    text-align: center;
  }


#s-b76548f3-b09a-4489-ae6a-213618208824 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b76548f3-b09a-4489-ae6a-213618208824.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b76548f3-b09a-4489-ae6a-213618208824.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-b76548f3-b09a-4489-ae6a-213618208824.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-68b5b897-edae-4f1a-9ea3-1502a0dd03b9 {
  margin-left: auto;
margin-right: auto;
}

#s-bb1893b7-88ca-4876-b076-1299f8fc3831 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-bb1893b7-88ca-4876-b076-1299f8fc3831 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bb1893b7-88ca-4876-b076-1299f8fc3831 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-bb1893b7-88ca-4876-b076-1299f8fc3831 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bb1893b7-88ca-4876-b076-1299f8fc3831 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-bb1893b7-88ca-4876-b076-1299f8fc3831 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bb1893b7-88ca-4876-b076-1299f8fc3831 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-bb1893b7-88ca-4876-b076-1299f8fc3831 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bb1893b7-88ca-4876-b076-1299f8fc3831 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-bb1893b7-88ca-4876-b076-1299f8fc3831 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bb1893b7-88ca-4876-b076-1299f8fc3831 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-7d3eb7dd-175d-4170-b74a-3ad9d0aa4d68 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7d3eb7dd-175d-4170-b74a-3ad9d0aa4d68 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-39434f35-7477-471e-8d5d-499d2c3c2fd9 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-39434f35-7477-471e-8d5d-499d2c3c2fd9 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-39434f35-7477-471e-8d5d-499d2c3c2fd9 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-39434f35-7477-471e-8d5d-499d2c3c2fd9 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWZmYWFkNGQtZDAxZC00YWY4LThmMzktZjBlODZlODY5ZDU0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1ZmZhYWQ0ZC1kMDFkLTRhZjgtOGYzOS1mMGU4NmU4NjlkNTQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a-atc-btn-wrapper {
    text-align: center;
  }


#s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a-atc-btn-wrapper {
    text-align: center;
  }


#s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a-atc-btn-wrapper {
    text-align: center;
  }


#s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a-atc-btn-wrapper {
    text-align: center;
  }


#s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a-atc-btn-wrapper {
    text-align: center;
  }


#s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-28ee48b6-96bd-40e1-bc80-ebf312ec4c6a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-a5989404-12f6-4a34-848b-aa3e93a0888a {
  margin-left: auto;
margin-right: auto;
}

#s-4b003b89-419b-4c46-aa8c-8db5a04fc98b {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-4b003b89-419b-4c46-aa8c-8db5a04fc98b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4b003b89-419b-4c46-aa8c-8db5a04fc98b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-4b003b89-419b-4c46-aa8c-8db5a04fc98b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4b003b89-419b-4c46-aa8c-8db5a04fc98b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-4b003b89-419b-4c46-aa8c-8db5a04fc98b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4b003b89-419b-4c46-aa8c-8db5a04fc98b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-4b003b89-419b-4c46-aa8c-8db5a04fc98b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4b003b89-419b-4c46-aa8c-8db5a04fc98b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-4b003b89-419b-4c46-aa8c-8db5a04fc98b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4b003b89-419b-4c46-aa8c-8db5a04fc98b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-bcd31811-7613-481b-84a1-3cd5f9961446 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bcd31811-7613-481b-84a1-3cd5f9961446 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-f3b0a0b7-8643-4ccb-966c-de4ba3718e8a {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-f3b0a0b7-8643-4ccb-966c-de4ba3718e8a .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-f3b0a0b7-8643-4ccb-966c-de4ba3718e8a .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-f3b0a0b7-8643-4ccb-966c-de4ba3718e8a .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-799082a7-5aef-417b-a5e0-759afe8a73d0 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-799082a7-5aef-417b-a5e0-759afe8a73d0:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-799082a7-5aef-417b-a5e0-759afe8a73d0:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWZmYWFkNGQtZDAxZC00YWY4LThmMzktZjBlODZlODY5ZDU0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1ZmZhYWQ0ZC1kMDFkLTRhZjgtOGYzOS1mMGU4NmU4NjlkNTQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-799082a7-5aef-417b-a5e0-759afe8a73d0-atc-btn-wrapper {
    text-align: center;
  }


#s-799082a7-5aef-417b-a5e0-759afe8a73d0 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-799082a7-5aef-417b-a5e0-759afe8a73d0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-799082a7-5aef-417b-a5e0-759afe8a73d0.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-799082a7-5aef-417b-a5e0-759afe8a73d0.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-799082a7-5aef-417b-a5e0-759afe8a73d0-atc-btn-wrapper {
    text-align: center;
  }


#s-799082a7-5aef-417b-a5e0-759afe8a73d0 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-799082a7-5aef-417b-a5e0-759afe8a73d0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-799082a7-5aef-417b-a5e0-759afe8a73d0.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-799082a7-5aef-417b-a5e0-759afe8a73d0.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-799082a7-5aef-417b-a5e0-759afe8a73d0-atc-btn-wrapper {
    text-align: center;
  }


#s-799082a7-5aef-417b-a5e0-759afe8a73d0 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-799082a7-5aef-417b-a5e0-759afe8a73d0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-799082a7-5aef-417b-a5e0-759afe8a73d0.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-799082a7-5aef-417b-a5e0-759afe8a73d0.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-799082a7-5aef-417b-a5e0-759afe8a73d0-atc-btn-wrapper {
    text-align: center;
  }


#s-799082a7-5aef-417b-a5e0-759afe8a73d0 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-799082a7-5aef-417b-a5e0-759afe8a73d0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-799082a7-5aef-417b-a5e0-759afe8a73d0.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-799082a7-5aef-417b-a5e0-759afe8a73d0.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-799082a7-5aef-417b-a5e0-759afe8a73d0-atc-btn-wrapper {
    text-align: center;
  }


#s-799082a7-5aef-417b-a5e0-759afe8a73d0 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-799082a7-5aef-417b-a5e0-759afe8a73d0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-799082a7-5aef-417b-a5e0-759afe8a73d0.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-799082a7-5aef-417b-a5e0-759afe8a73d0.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-6a77e301-3502-419a-8c80-2cea9d87ec50 {
  margin-left: auto;
margin-right: auto;
}

#s-a310e89c-44b2-4103-b4c4-b69518918a56 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-a310e89c-44b2-4103-b4c4-b69518918a56 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a310e89c-44b2-4103-b4c4-b69518918a56 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-a310e89c-44b2-4103-b4c4-b69518918a56 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a310e89c-44b2-4103-b4c4-b69518918a56 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-a310e89c-44b2-4103-b4c4-b69518918a56 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a310e89c-44b2-4103-b4c4-b69518918a56 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-a310e89c-44b2-4103-b4c4-b69518918a56 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a310e89c-44b2-4103-b4c4-b69518918a56 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-a310e89c-44b2-4103-b4c4-b69518918a56 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a310e89c-44b2-4103-b4c4-b69518918a56 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-6adf0ab1-ed05-4ca1-94f5-ece752380868 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6adf0ab1-ed05-4ca1-94f5-ece752380868 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-b0423f29-6f85-42ff-930c-9d24fb7846b7 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-b0423f29-6f85-42ff-930c-9d24fb7846b7 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-b0423f29-6f85-42ff-930c-9d24fb7846b7 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-b0423f29-6f85-42ff-930c-9d24fb7846b7 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWZmYWFkNGQtZDAxZC00YWY4LThmMzktZjBlODZlODY5ZDU0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1ZmZhYWQ0ZC1kMDFkLTRhZjgtOGYzOS1mMGU4NmU4NjlkNTQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf-atc-btn-wrapper {
    text-align: center;
  }


#s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf-atc-btn-wrapper {
    text-align: center;
  }


#s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf-atc-btn-wrapper {
    text-align: center;
  }


#s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf-atc-btn-wrapper {
    text-align: center;
  }


#s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf-atc-btn-wrapper {
    text-align: center;
  }


#s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-b357a5ac-94c0-46ae-a4ec-f3c51698b5cf.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-c65520d3-fcd2-41e4-91ca-8289890a86f3 {
  margin-left: auto;
margin-right: auto;
}

#s-c22f8951-85b8-4404-acd9-c4159f6ed763 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-c22f8951-85b8-4404-acd9-c4159f6ed763 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c22f8951-85b8-4404-acd9-c4159f6ed763 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-c22f8951-85b8-4404-acd9-c4159f6ed763 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c22f8951-85b8-4404-acd9-c4159f6ed763 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-c22f8951-85b8-4404-acd9-c4159f6ed763 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c22f8951-85b8-4404-acd9-c4159f6ed763 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-c22f8951-85b8-4404-acd9-c4159f6ed763 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c22f8951-85b8-4404-acd9-c4159f6ed763 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-c22f8951-85b8-4404-acd9-c4159f6ed763 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c22f8951-85b8-4404-acd9-c4159f6ed763 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-c6202bcb-8ef4-42b3-9e38-ab70c0a1cf6c {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c6202bcb-8ef4-42b3-9e38-ab70c0a1cf6c .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-8c3e1ce9-2ae0-4fdc-a19b-fb038d0db75a {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-8c3e1ce9-2ae0-4fdc-a19b-fb038d0db75a .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-8c3e1ce9-2ae0-4fdc-a19b-fb038d0db75a .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-8c3e1ce9-2ae0-4fdc-a19b-fb038d0db75a .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-08a4092c-e452-42b0-bf67-51851a335192 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-08a4092c-e452-42b0-bf67-51851a335192:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-08a4092c-e452-42b0-bf67-51851a335192:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWZmYWFkNGQtZDAxZC00YWY4LThmMzktZjBlODZlODY5ZDU0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1ZmZhYWQ0ZC1kMDFkLTRhZjgtOGYzOS1mMGU4NmU4NjlkNTQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-08a4092c-e452-42b0-bf67-51851a335192-atc-btn-wrapper {
    text-align: center;
  }


#s-08a4092c-e452-42b0-bf67-51851a335192 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-08a4092c-e452-42b0-bf67-51851a335192.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-08a4092c-e452-42b0-bf67-51851a335192.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-08a4092c-e452-42b0-bf67-51851a335192.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-08a4092c-e452-42b0-bf67-51851a335192-atc-btn-wrapper {
    text-align: center;
  }


#s-08a4092c-e452-42b0-bf67-51851a335192 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-08a4092c-e452-42b0-bf67-51851a335192.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-08a4092c-e452-42b0-bf67-51851a335192.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-08a4092c-e452-42b0-bf67-51851a335192.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-08a4092c-e452-42b0-bf67-51851a335192-atc-btn-wrapper {
    text-align: center;
  }


#s-08a4092c-e452-42b0-bf67-51851a335192 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-08a4092c-e452-42b0-bf67-51851a335192.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-08a4092c-e452-42b0-bf67-51851a335192.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-08a4092c-e452-42b0-bf67-51851a335192.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-08a4092c-e452-42b0-bf67-51851a335192-atc-btn-wrapper {
    text-align: center;
  }


#s-08a4092c-e452-42b0-bf67-51851a335192 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-08a4092c-e452-42b0-bf67-51851a335192.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-08a4092c-e452-42b0-bf67-51851a335192.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-08a4092c-e452-42b0-bf67-51851a335192.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-08a4092c-e452-42b0-bf67-51851a335192-atc-btn-wrapper {
    text-align: center;
  }


#s-08a4092c-e452-42b0-bf67-51851a335192 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-08a4092c-e452-42b0-bf67-51851a335192.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-08a4092c-e452-42b0-bf67-51851a335192.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-08a4092c-e452-42b0-bf67-51851a335192.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-355428f9-e020-4b59-8957-f4cca192329a {
  margin-left: auto;
margin-right: auto;
}

#s-e1e4454d-11db-4508-9c8b-ae75ab9579e3 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-e1e4454d-11db-4508-9c8b-ae75ab9579e3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e1e4454d-11db-4508-9c8b-ae75ab9579e3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-e1e4454d-11db-4508-9c8b-ae75ab9579e3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e1e4454d-11db-4508-9c8b-ae75ab9579e3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-e1e4454d-11db-4508-9c8b-ae75ab9579e3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e1e4454d-11db-4508-9c8b-ae75ab9579e3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-e1e4454d-11db-4508-9c8b-ae75ab9579e3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e1e4454d-11db-4508-9c8b-ae75ab9579e3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-e1e4454d-11db-4508-9c8b-ae75ab9579e3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e1e4454d-11db-4508-9c8b-ae75ab9579e3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-2824f7aa-cb3d-4be6-93c9-02a8fa110a0f {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2824f7aa-cb3d-4be6-93c9-02a8fa110a0f .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-f1167954-f3b7-43ec-af23-7bc7a089663d {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-f1167954-f3b7-43ec-af23-7bc7a089663d .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-f1167954-f3b7-43ec-af23-7bc7a089663d .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-f1167954-f3b7-43ec-af23-7bc7a089663d .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-740d105d-d392-42df-8461-b6cb785f5e7c {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-740d105d-d392-42df-8461-b6cb785f5e7c:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-740d105d-d392-42df-8461-b6cb785f5e7c:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWZmYWFkNGQtZDAxZC00YWY4LThmMzktZjBlODZlODY5ZDU0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1ZmZhYWQ0ZC1kMDFkLTRhZjgtOGYzOS1mMGU4NmU4NjlkNTQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-740d105d-d392-42df-8461-b6cb785f5e7c-atc-btn-wrapper {
    text-align: center;
  }


#s-740d105d-d392-42df-8461-b6cb785f5e7c {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-740d105d-d392-42df-8461-b6cb785f5e7c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-740d105d-d392-42df-8461-b6cb785f5e7c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-740d105d-d392-42df-8461-b6cb785f5e7c.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-740d105d-d392-42df-8461-b6cb785f5e7c-atc-btn-wrapper {
    text-align: center;
  }


#s-740d105d-d392-42df-8461-b6cb785f5e7c {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-740d105d-d392-42df-8461-b6cb785f5e7c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-740d105d-d392-42df-8461-b6cb785f5e7c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-740d105d-d392-42df-8461-b6cb785f5e7c.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-740d105d-d392-42df-8461-b6cb785f5e7c-atc-btn-wrapper {
    text-align: center;
  }


#s-740d105d-d392-42df-8461-b6cb785f5e7c {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-740d105d-d392-42df-8461-b6cb785f5e7c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-740d105d-d392-42df-8461-b6cb785f5e7c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-740d105d-d392-42df-8461-b6cb785f5e7c.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-740d105d-d392-42df-8461-b6cb785f5e7c-atc-btn-wrapper {
    text-align: center;
  }


#s-740d105d-d392-42df-8461-b6cb785f5e7c {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-740d105d-d392-42df-8461-b6cb785f5e7c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-740d105d-d392-42df-8461-b6cb785f5e7c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-740d105d-d392-42df-8461-b6cb785f5e7c.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-740d105d-d392-42df-8461-b6cb785f5e7c-atc-btn-wrapper {
    text-align: center;
  }


#s-740d105d-d392-42df-8461-b6cb785f5e7c {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-740d105d-d392-42df-8461-b6cb785f5e7c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-740d105d-d392-42df-8461-b6cb785f5e7c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-740d105d-d392-42df-8461-b6cb785f5e7c.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-2fa97557-af11-4c7f-ab30-3c4bd37259e3 {
  margin-left: auto;
margin-right: auto;
}

#s-e6438d11-90d5-4560-a50c-3353213b68a5 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-e6438d11-90d5-4560-a50c-3353213b68a5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e6438d11-90d5-4560-a50c-3353213b68a5 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-e6438d11-90d5-4560-a50c-3353213b68a5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e6438d11-90d5-4560-a50c-3353213b68a5 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-e6438d11-90d5-4560-a50c-3353213b68a5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e6438d11-90d5-4560-a50c-3353213b68a5 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-e6438d11-90d5-4560-a50c-3353213b68a5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e6438d11-90d5-4560-a50c-3353213b68a5 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-e6438d11-90d5-4560-a50c-3353213b68a5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e6438d11-90d5-4560-a50c-3353213b68a5 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-c1c08f49-552a-44a3-bcfd-45b00a9f2441 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c1c08f49-552a-44a3-bcfd-45b00a9f2441 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-c88cece5-c97a-4a1d-a3aa-f40c2d9984b9 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-c88cece5-c97a-4a1d-a3aa-f40c2d9984b9 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-c88cece5-c97a-4a1d-a3aa-f40c2d9984b9 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-c88cece5-c97a-4a1d-a3aa-f40c2d9984b9 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-4f6216ae-258e-4e95-95e3-7fa25ee9090d {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-4f6216ae-258e-4e95-95e3-7fa25ee9090d:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-4f6216ae-258e-4e95-95e3-7fa25ee9090d:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWZmYWFkNGQtZDAxZC00YWY4LThmMzktZjBlODZlODY5ZDU0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1ZmZhYWQ0ZC1kMDFkLTRhZjgtOGYzOS1mMGU4NmU4NjlkNTQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-4f6216ae-258e-4e95-95e3-7fa25ee9090d-atc-btn-wrapper {
    text-align: center;
  }


#s-4f6216ae-258e-4e95-95e3-7fa25ee9090d {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-4f6216ae-258e-4e95-95e3-7fa25ee9090d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4f6216ae-258e-4e95-95e3-7fa25ee9090d.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-4f6216ae-258e-4e95-95e3-7fa25ee9090d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-4f6216ae-258e-4e95-95e3-7fa25ee9090d-atc-btn-wrapper {
    text-align: center;
  }


#s-4f6216ae-258e-4e95-95e3-7fa25ee9090d {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-4f6216ae-258e-4e95-95e3-7fa25ee9090d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4f6216ae-258e-4e95-95e3-7fa25ee9090d.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-4f6216ae-258e-4e95-95e3-7fa25ee9090d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-4f6216ae-258e-4e95-95e3-7fa25ee9090d-atc-btn-wrapper {
    text-align: center;
  }


#s-4f6216ae-258e-4e95-95e3-7fa25ee9090d {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-4f6216ae-258e-4e95-95e3-7fa25ee9090d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4f6216ae-258e-4e95-95e3-7fa25ee9090d.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-4f6216ae-258e-4e95-95e3-7fa25ee9090d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-4f6216ae-258e-4e95-95e3-7fa25ee9090d-atc-btn-wrapper {
    text-align: center;
  }


#s-4f6216ae-258e-4e95-95e3-7fa25ee9090d {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-4f6216ae-258e-4e95-95e3-7fa25ee9090d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4f6216ae-258e-4e95-95e3-7fa25ee9090d.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-4f6216ae-258e-4e95-95e3-7fa25ee9090d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-4f6216ae-258e-4e95-95e3-7fa25ee9090d-atc-btn-wrapper {
    text-align: center;
  }


#s-4f6216ae-258e-4e95-95e3-7fa25ee9090d {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-4f6216ae-258e-4e95-95e3-7fa25ee9090d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4f6216ae-258e-4e95-95e3-7fa25ee9090d.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-4f6216ae-258e-4e95-95e3-7fa25ee9090d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-be1d3a81-4133-4257-a693-d29e8c0cb785 {
  margin-left: auto;
margin-right: auto;
}

#s-0edf13b4-30ef-4ee9-91ae-38871c44f5ae {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-0edf13b4-30ef-4ee9-91ae-38871c44f5ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0edf13b4-30ef-4ee9-91ae-38871c44f5ae img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-0edf13b4-30ef-4ee9-91ae-38871c44f5ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0edf13b4-30ef-4ee9-91ae-38871c44f5ae img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-0edf13b4-30ef-4ee9-91ae-38871c44f5ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0edf13b4-30ef-4ee9-91ae-38871c44f5ae img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-0edf13b4-30ef-4ee9-91ae-38871c44f5ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0edf13b4-30ef-4ee9-91ae-38871c44f5ae img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-0edf13b4-30ef-4ee9-91ae-38871c44f5ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0edf13b4-30ef-4ee9-91ae-38871c44f5ae img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-b11bdb67-5a37-4d91-9cf4-b00f0d5e1bf4 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b11bdb67-5a37-4d91-9cf4-b00f0d5e1bf4 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-907af01b-476e-4e14-b3f3-187fe3b4bf0c {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-907af01b-476e-4e14-b3f3-187fe3b4bf0c .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-907af01b-476e-4e14-b3f3-187fe3b4bf0c .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-907af01b-476e-4e14-b3f3-187fe3b4bf0c .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-1546b518-95c4-451b-bd00-bce3bd81c9d7 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-1546b518-95c4-451b-bd00-bce3bd81c9d7:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-1546b518-95c4-451b-bd00-bce3bd81c9d7:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWZmYWFkNGQtZDAxZC00YWY4LThmMzktZjBlODZlODY5ZDU0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1ZmZhYWQ0ZC1kMDFkLTRhZjgtOGYzOS1mMGU4NmU4NjlkNTQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-1546b518-95c4-451b-bd00-bce3bd81c9d7-atc-btn-wrapper {
    text-align: center;
  }


#s-1546b518-95c4-451b-bd00-bce3bd81c9d7 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-1546b518-95c4-451b-bd00-bce3bd81c9d7.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-1546b518-95c4-451b-bd00-bce3bd81c9d7.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-1546b518-95c4-451b-bd00-bce3bd81c9d7.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-1546b518-95c4-451b-bd00-bce3bd81c9d7-atc-btn-wrapper {
    text-align: center;
  }


#s-1546b518-95c4-451b-bd00-bce3bd81c9d7 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-1546b518-95c4-451b-bd00-bce3bd81c9d7.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-1546b518-95c4-451b-bd00-bce3bd81c9d7.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-1546b518-95c4-451b-bd00-bce3bd81c9d7.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-1546b518-95c4-451b-bd00-bce3bd81c9d7-atc-btn-wrapper {
    text-align: center;
  }


#s-1546b518-95c4-451b-bd00-bce3bd81c9d7 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-1546b518-95c4-451b-bd00-bce3bd81c9d7.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-1546b518-95c4-451b-bd00-bce3bd81c9d7.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-1546b518-95c4-451b-bd00-bce3bd81c9d7.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-1546b518-95c4-451b-bd00-bce3bd81c9d7-atc-btn-wrapper {
    text-align: center;
  }


#s-1546b518-95c4-451b-bd00-bce3bd81c9d7 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-1546b518-95c4-451b-bd00-bce3bd81c9d7.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-1546b518-95c4-451b-bd00-bce3bd81c9d7.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-1546b518-95c4-451b-bd00-bce3bd81c9d7.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-1546b518-95c4-451b-bd00-bce3bd81c9d7-atc-btn-wrapper {
    text-align: center;
  }


#s-1546b518-95c4-451b-bd00-bce3bd81c9d7 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-1546b518-95c4-451b-bd00-bce3bd81c9d7.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-1546b518-95c4-451b-bd00-bce3bd81c9d7.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-1546b518-95c4-451b-bd00-bce3bd81c9d7.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-624c42bb-fab7-48ce-9be3-09b068fdd4c3 {
  margin-left: auto;
margin-right: auto;
}

#s-335e08c9-0e4a-4435-a1ab-d090ab4f9ce6 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-335e08c9-0e4a-4435-a1ab-d090ab4f9ce6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-335e08c9-0e4a-4435-a1ab-d090ab4f9ce6 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-335e08c9-0e4a-4435-a1ab-d090ab4f9ce6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-335e08c9-0e4a-4435-a1ab-d090ab4f9ce6 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-335e08c9-0e4a-4435-a1ab-d090ab4f9ce6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-335e08c9-0e4a-4435-a1ab-d090ab4f9ce6 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-335e08c9-0e4a-4435-a1ab-d090ab4f9ce6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-335e08c9-0e4a-4435-a1ab-d090ab4f9ce6 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-335e08c9-0e4a-4435-a1ab-d090ab4f9ce6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-335e08c9-0e4a-4435-a1ab-d090ab4f9ce6 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-c6f3c98d-c3dd-40d8-98cc-95613ca0e6b5 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c6f3c98d-c3dd-40d8-98cc-95613ca0e6b5 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-ba8a30b6-4bea-4f79-9c47-fddf3c8050ad {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-ba8a30b6-4bea-4f79-9c47-fddf3c8050ad .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-ba8a30b6-4bea-4f79-9c47-fddf3c8050ad .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-ba8a30b6-4bea-4f79-9c47-fddf3c8050ad .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNWZmYWFkNGQtZDAxZC00YWY4LThmMzktZjBlODZlODY5ZDU0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM1ZmZhYWQ0ZC1kMDFkLTRhZjgtOGYzOS1mMGU4NmU4NjlkNTQpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#bcd85f"}, {"id"=>2, "pos"=>1, "color"=>"#52b955"}] !important;}

  #s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a-atc-btn-wrapper {
    text-align: center;
  }


#s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a-atc-btn-wrapper {
    text-align: center;
  }


#s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a-atc-btn-wrapper {
    text-align: center;
  }


#s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a-atc-btn-wrapper {
    text-align: center;
  }


#s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a-atc-btn-wrapper {
    text-align: center;
  }


#s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-211f6d75-ad3e-403c-b9a5-abccaacd3f0a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-00498173-0e6c-4c25-9cac-9bfda0be0e6a {
  margin-top: -13px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 3%;
text-align: left;
}
@media (min-width: 1200px){#s-00498173-0e6c-4c25-9cac-9bfda0be0e6a {
  display: none;
}
#s-00498173-0e6c-4c25-9cac-9bfda0be0e6a, #wrap-s-00498173-0e6c-4c25-9cac-9bfda0be0e6a, #wrap-content-s-00498173-0e6c-4c25-9cac-9bfda0be0e6a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-00498173-0e6c-4c25-9cac-9bfda0be0e6a {
  display: none;
}
#s-00498173-0e6c-4c25-9cac-9bfda0be0e6a, #wrap-s-00498173-0e6c-4c25-9cac-9bfda0be0e6a, #wrap-content-s-00498173-0e6c-4c25-9cac-9bfda0be0e6a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-00498173-0e6c-4c25-9cac-9bfda0be0e6a {
  display: none;
}
#s-00498173-0e6c-4c25-9cac-9bfda0be0e6a, #wrap-s-00498173-0e6c-4c25-9cac-9bfda0be0e6a, #wrap-content-s-00498173-0e6c-4c25-9cac-9bfda0be0e6a { display: none !important; }}@media (max-width: 767px){#s-00498173-0e6c-4c25-9cac-9bfda0be0e6a {
  display: none;
}
#s-00498173-0e6c-4c25-9cac-9bfda0be0e6a, #wrap-s-00498173-0e6c-4c25-9cac-9bfda0be0e6a, #wrap-content-s-00498173-0e6c-4c25-9cac-9bfda0be0e6a { display: none !important; }}
#s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc {
  background-repeat: no-repeat;
background-size: cover;
margin-left: auto;
margin-right: auto;
min-height: 50px;
background-position: center center;
}
@media (max-width: 767px){#s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc {
  display: none;
}
#s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc, #wrap-s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc, #wrap-content-s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc { display: none !important; }}
#s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc {
  background-image: url(https://i.shgcdn.com/7803f949-3ba6-4b2f-80bd-110725fe7c2f/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc {
  background-image: url(https://i.shgcdn.com/7803f949-3ba6-4b2f-80bd-110725fe7c2f/-/resize/480x/);
}
#s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc {
  background-image: url(https://i.shgcdn.com/7803f949-3ba6-4b2f-80bd-110725fe7c2f/-/resize/960x/);
}
#s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc {
  background-image: url(https://i.shgcdn.com/7803f949-3ba6-4b2f-80bd-110725fe7c2f/-/resize/768x/);
}
#s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc {
  background-image: url(https://i.shgcdn.com/7803f949-3ba6-4b2f-80bd-110725fe7c2f/-/resize/1536x/);
}
#s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc {
  background-image: url(https://i.shgcdn.com/7803f949-3ba6-4b2f-80bd-110725fe7c2f/-/resize/1024x/);
}
#s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc {
  background-image: url(https://i.shgcdn.com/7803f949-3ba6-4b2f-80bd-110725fe7c2f/-/resize/2048x/);
}
#s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc {
  background-image: url(https://i.shgcdn.com/7803f949-3ba6-4b2f-80bd-110725fe7c2f/-/resize/1200x/);
}
#s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc {
  background-image: url(https://i.shgcdn.com/7803f949-3ba6-4b2f-80bd-110725fe7c2f/-/resize/2048x/);
}
#s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c9a7cc9c-f671-403f-8ddd-eb7749031cbc.shg-box.shg-c {
  justify-content: center;
}

#s-085f8ead-c69c-4562-b949-02f15064eadd {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
padding-left: 1%;
}

#s-085f8ead-c69c-4562-b949-02f15064eadd .shg-proportional-font-size,
#s-085f8ead-c69c-4562-b949-02f15064eadd .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-8c5e8c1b-e477-4084-af0e-cd7fcc213820 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8c5e8c1b-e477-4084-af0e-cd7fcc213820 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


@media (max-width: 767px){#s-8c5e8c1b-e477-4084-af0e-cd7fcc213820 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
#s-5b32289d-633a-4623-93f3-ce18b0d3616d {
  margin-left: 20%;
margin-right: 20%;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(205, 205, 205, 1);
border-style: none;
border-radius: 15px;
}
@media (max-width: 767px){#s-5b32289d-633a-4623-93f3-ce18b0d3616d {
  margin-left: 5%;
margin-right: 5%;
}
}
/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-5b32289d-633a-4623-93f3-ce18b0d3616d {
  --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-5b32289d-633a-4623-93f3-ce18b0d3616d > .swiper-button-prev,
#slider-v3-s-5b32289d-633a-4623-93f3-ce18b0d3616d > .swiper-button-next {
  
}

#slider-v3-s-5b32289d-633a-4623-93f3-ce18b0d3616d > .swiper-button-prev svg,
#slider-v3-s-5b32289d-633a-4623-93f3-ce18b0d3616d > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-5b32289d-633a-4623-93f3-ce18b0d3616d > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-5b32289d-633a-4623-93f3-ce18b0d3616d > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-5b32289d-633a-4623-93f3-ce18b0d3616d > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-5b32289d-633a-4623-93f3-ce18b0d3616d .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-5b32289d-633a-4623-93f3-ce18b0d3616d .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-5b32289d-633a-4623-93f3-ce18b0d3616d .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-3ed310dc-a4bd-4bf2-87ac-73a5dd1eb8d4 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 50px;
padding-left: 6%;
padding-bottom: 50px;
padding-right: 6%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(180, 180, 180, 1);
border-style: none;
border-radius: 15px;
min-height: 50px;
}








#s-3ed310dc-a4bd-4bf2-87ac-73a5dd1eb8d4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3ed310dc-a4bd-4bf2-87ac-73a5dd1eb8d4.shg-box.shg-c {
  justify-content: center;
}

#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef-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-57c6ed98-1716-4756-bda3-ae4d8b1d66ef {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef .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-57c6ed98-1716-4756-bda3-ae4d8b1d66ef {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef img.shogun-image {
  width: 100%;
  
  
  max-width: 100px;

  /* 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-57c6ed98-1716-4756-bda3-ae4d8b1d66ef .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef-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-57c6ed98-1716-4756-bda3-ae4d8b1d66ef {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef .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-57c6ed98-1716-4756-bda3-ae4d8b1d66ef {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef 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-57c6ed98-1716-4756-bda3-ae4d8b1d66ef .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef-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-57c6ed98-1716-4756-bda3-ae4d8b1d66ef {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef .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-57c6ed98-1716-4756-bda3-ae4d8b1d66ef {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef 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-57c6ed98-1716-4756-bda3-ae4d8b1d66ef .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef-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-57c6ed98-1716-4756-bda3-ae4d8b1d66ef {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef .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-57c6ed98-1716-4756-bda3-ae4d8b1d66ef {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef 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-57c6ed98-1716-4756-bda3-ae4d8b1d66ef .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef-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-57c6ed98-1716-4756-bda3-ae4d8b1d66ef {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef .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-57c6ed98-1716-4756-bda3-ae4d8b1d66ef {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef 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-57c6ed98-1716-4756-bda3-ae4d8b1d66ef .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57c6ed98-1716-4756-bda3-ae4d8b1d66ef.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-8dcf08b8-7d91-43a0-a417-4847c567bf56 {
  margin-left: auto;
margin-right: auto;
}

#s-8dcf08b8-7d91-43a0-a417-4847c567bf56 .shg-proportional-font-size,
#s-8dcf08b8-7d91-43a0-a417-4847c567bf56 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-788246e6-7082-4415-bfd9-04bc365c38c4 {
  margin-left: auto;
margin-right: auto;
}

#s-788246e6-7082-4415-bfd9-04bc365c38c4 .shg-proportional-font-size,
#s-788246e6-7082-4415-bfd9-04bc365c38c4 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-52948208-2f8a-4b37-b0a9-0d2e56f5d544 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 50px;
padding-left: 6%;
padding-bottom: 50px;
padding-right: 6%;
border-color: rgba(180, 180, 180, 1);
border-style: none;
border-radius: 15px;
min-height: 50px;
}








#s-52948208-2f8a-4b37-b0a9-0d2e56f5d544 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-52948208-2f8a-4b37-b0a9-0d2e56f5d544.shg-box.shg-c {
  justify-content: center;
}

#s-615dcca6-637c-4944-8896-17c6097c2fd5 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-615dcca6-637c-4944-8896-17c6097c2fd5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-615dcca6-637c-4944-8896-17c6097c2fd5-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-615dcca6-637c-4944-8896-17c6097c2fd5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-615dcca6-637c-4944-8896-17c6097c2fd5 .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-615dcca6-637c-4944-8896-17c6097c2fd5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-615dcca6-637c-4944-8896-17c6097c2fd5 img.shogun-image {
  width: 100%;
  
  
  max-width: 100px;

  /* 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-615dcca6-637c-4944-8896-17c6097c2fd5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-615dcca6-637c-4944-8896-17c6097c2fd5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-615dcca6-637c-4944-8896-17c6097c2fd5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-615dcca6-637c-4944-8896-17c6097c2fd5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-615dcca6-637c-4944-8896-17c6097c2fd5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-615dcca6-637c-4944-8896-17c6097c2fd5-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-615dcca6-637c-4944-8896-17c6097c2fd5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-615dcca6-637c-4944-8896-17c6097c2fd5 .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-615dcca6-637c-4944-8896-17c6097c2fd5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-615dcca6-637c-4944-8896-17c6097c2fd5 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-615dcca6-637c-4944-8896-17c6097c2fd5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-615dcca6-637c-4944-8896-17c6097c2fd5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-615dcca6-637c-4944-8896-17c6097c2fd5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-615dcca6-637c-4944-8896-17c6097c2fd5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-615dcca6-637c-4944-8896-17c6097c2fd5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-615dcca6-637c-4944-8896-17c6097c2fd5-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-615dcca6-637c-4944-8896-17c6097c2fd5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-615dcca6-637c-4944-8896-17c6097c2fd5 .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-615dcca6-637c-4944-8896-17c6097c2fd5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-615dcca6-637c-4944-8896-17c6097c2fd5 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-615dcca6-637c-4944-8896-17c6097c2fd5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-615dcca6-637c-4944-8896-17c6097c2fd5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-615dcca6-637c-4944-8896-17c6097c2fd5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-615dcca6-637c-4944-8896-17c6097c2fd5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-615dcca6-637c-4944-8896-17c6097c2fd5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-615dcca6-637c-4944-8896-17c6097c2fd5-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-615dcca6-637c-4944-8896-17c6097c2fd5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-615dcca6-637c-4944-8896-17c6097c2fd5 .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-615dcca6-637c-4944-8896-17c6097c2fd5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-615dcca6-637c-4944-8896-17c6097c2fd5 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-615dcca6-637c-4944-8896-17c6097c2fd5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-615dcca6-637c-4944-8896-17c6097c2fd5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-615dcca6-637c-4944-8896-17c6097c2fd5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-615dcca6-637c-4944-8896-17c6097c2fd5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-615dcca6-637c-4944-8896-17c6097c2fd5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-615dcca6-637c-4944-8896-17c6097c2fd5-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-615dcca6-637c-4944-8896-17c6097c2fd5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-615dcca6-637c-4944-8896-17c6097c2fd5 .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-615dcca6-637c-4944-8896-17c6097c2fd5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-615dcca6-637c-4944-8896-17c6097c2fd5 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-615dcca6-637c-4944-8896-17c6097c2fd5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-615dcca6-637c-4944-8896-17c6097c2fd5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-615dcca6-637c-4944-8896-17c6097c2fd5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-615dcca6-637c-4944-8896-17c6097c2fd5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-df769b4b-2ccb-48ff-a1ee-2bcd7dc16250 {
  margin-left: auto;
margin-right: auto;
}

#s-df769b4b-2ccb-48ff-a1ee-2bcd7dc16250 .shg-proportional-font-size,
#s-df769b4b-2ccb-48ff-a1ee-2bcd7dc16250 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-dfe69ad1-0ed6-4b08-a7f4-04e9e91cf55f {
  margin-left: auto;
margin-right: auto;
}

#s-dfe69ad1-0ed6-4b08-a7f4-04e9e91cf55f .shg-proportional-font-size,
#s-dfe69ad1-0ed6-4b08-a7f4-04e9e91cf55f .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-d60ca91d-fa3b-4623-bd85-fdff18768c97 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 50px;
padding-left: 6%;
padding-bottom: 50px;
padding-right: 6%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(180, 180, 180, 1);
border-style: none;
border-radius: 15px;
min-height: 100px;
}








#s-d60ca91d-fa3b-4623-bd85-fdff18768c97 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d60ca91d-fa3b-4623-bd85-fdff18768c97.shg-box.shg-c {
  justify-content: center;
}

#s-6f1f21e6-9450-45db-a833-1f76173f47ab {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-6f1f21e6-9450-45db-a833-1f76173f47ab {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6f1f21e6-9450-45db-a833-1f76173f47ab-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-6f1f21e6-9450-45db-a833-1f76173f47ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6f1f21e6-9450-45db-a833-1f76173f47ab .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-6f1f21e6-9450-45db-a833-1f76173f47ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6f1f21e6-9450-45db-a833-1f76173f47ab img.shogun-image {
  width: 100%;
  
  
  max-width: 100px;

  /* 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-6f1f21e6-9450-45db-a833-1f76173f47ab .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6f1f21e6-9450-45db-a833-1f76173f47ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f1f21e6-9450-45db-a833-1f76173f47ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f1f21e6-9450-45db-a833-1f76173f47ab.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-6f1f21e6-9450-45db-a833-1f76173f47ab {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6f1f21e6-9450-45db-a833-1f76173f47ab-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-6f1f21e6-9450-45db-a833-1f76173f47ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6f1f21e6-9450-45db-a833-1f76173f47ab .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-6f1f21e6-9450-45db-a833-1f76173f47ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6f1f21e6-9450-45db-a833-1f76173f47ab 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-6f1f21e6-9450-45db-a833-1f76173f47ab .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6f1f21e6-9450-45db-a833-1f76173f47ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f1f21e6-9450-45db-a833-1f76173f47ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f1f21e6-9450-45db-a833-1f76173f47ab.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-6f1f21e6-9450-45db-a833-1f76173f47ab {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6f1f21e6-9450-45db-a833-1f76173f47ab-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-6f1f21e6-9450-45db-a833-1f76173f47ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6f1f21e6-9450-45db-a833-1f76173f47ab .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-6f1f21e6-9450-45db-a833-1f76173f47ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6f1f21e6-9450-45db-a833-1f76173f47ab 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-6f1f21e6-9450-45db-a833-1f76173f47ab .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6f1f21e6-9450-45db-a833-1f76173f47ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f1f21e6-9450-45db-a833-1f76173f47ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f1f21e6-9450-45db-a833-1f76173f47ab.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-6f1f21e6-9450-45db-a833-1f76173f47ab {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6f1f21e6-9450-45db-a833-1f76173f47ab-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-6f1f21e6-9450-45db-a833-1f76173f47ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6f1f21e6-9450-45db-a833-1f76173f47ab .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-6f1f21e6-9450-45db-a833-1f76173f47ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6f1f21e6-9450-45db-a833-1f76173f47ab 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-6f1f21e6-9450-45db-a833-1f76173f47ab .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6f1f21e6-9450-45db-a833-1f76173f47ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f1f21e6-9450-45db-a833-1f76173f47ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f1f21e6-9450-45db-a833-1f76173f47ab.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-6f1f21e6-9450-45db-a833-1f76173f47ab {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6f1f21e6-9450-45db-a833-1f76173f47ab-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-6f1f21e6-9450-45db-a833-1f76173f47ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6f1f21e6-9450-45db-a833-1f76173f47ab .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-6f1f21e6-9450-45db-a833-1f76173f47ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6f1f21e6-9450-45db-a833-1f76173f47ab 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-6f1f21e6-9450-45db-a833-1f76173f47ab .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6f1f21e6-9450-45db-a833-1f76173f47ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f1f21e6-9450-45db-a833-1f76173f47ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f1f21e6-9450-45db-a833-1f76173f47ab.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-ff57298b-c27b-4f3e-8b6d-7e307e3c3aa2 {
  margin-left: auto;
margin-right: auto;
}

#s-ff57298b-c27b-4f3e-8b6d-7e307e3c3aa2 .shg-proportional-font-size,
#s-ff57298b-c27b-4f3e-8b6d-7e307e3c3aa2 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-0e143ead-6f77-451f-9f8e-3f5f3b00164d {
  margin-left: auto;
margin-right: auto;
}

#s-0e143ead-6f77-451f-9f8e-3f5f3b00164d .shg-proportional-font-size,
#s-0e143ead-6f77-451f-9f8e-3f5f3b00164d .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-df715850-874f-4385-ac44-2359b4c2e2b5 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-df715850-874f-4385-ac44-2359b4c2e2b5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-df715850-874f-4385-ac44-2359b4c2e2b5-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-df715850-874f-4385-ac44-2359b4c2e2b5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 10px;
  
}

#s-df715850-874f-4385-ac44-2359b4c2e2b5 .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-df715850-874f-4385-ac44-2359b4c2e2b5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-df715850-874f-4385-ac44-2359b4c2e2b5 img.shogun-image {
  width: 100%;
  
  
  max-width: 100px;

  /* 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-df715850-874f-4385-ac44-2359b4c2e2b5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-df715850-874f-4385-ac44-2359b4c2e2b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df715850-874f-4385-ac44-2359b4c2e2b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df715850-874f-4385-ac44-2359b4c2e2b5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-df715850-874f-4385-ac44-2359b4c2e2b5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-df715850-874f-4385-ac44-2359b4c2e2b5-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-df715850-874f-4385-ac44-2359b4c2e2b5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-df715850-874f-4385-ac44-2359b4c2e2b5 .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-df715850-874f-4385-ac44-2359b4c2e2b5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-df715850-874f-4385-ac44-2359b4c2e2b5 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-df715850-874f-4385-ac44-2359b4c2e2b5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-df715850-874f-4385-ac44-2359b4c2e2b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df715850-874f-4385-ac44-2359b4c2e2b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df715850-874f-4385-ac44-2359b4c2e2b5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-df715850-874f-4385-ac44-2359b4c2e2b5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-df715850-874f-4385-ac44-2359b4c2e2b5-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-df715850-874f-4385-ac44-2359b4c2e2b5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-df715850-874f-4385-ac44-2359b4c2e2b5 .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-df715850-874f-4385-ac44-2359b4c2e2b5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-df715850-874f-4385-ac44-2359b4c2e2b5 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-df715850-874f-4385-ac44-2359b4c2e2b5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-df715850-874f-4385-ac44-2359b4c2e2b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df715850-874f-4385-ac44-2359b4c2e2b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df715850-874f-4385-ac44-2359b4c2e2b5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-df715850-874f-4385-ac44-2359b4c2e2b5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-df715850-874f-4385-ac44-2359b4c2e2b5-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-df715850-874f-4385-ac44-2359b4c2e2b5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-df715850-874f-4385-ac44-2359b4c2e2b5 .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-df715850-874f-4385-ac44-2359b4c2e2b5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-df715850-874f-4385-ac44-2359b4c2e2b5 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-df715850-874f-4385-ac44-2359b4c2e2b5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-df715850-874f-4385-ac44-2359b4c2e2b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df715850-874f-4385-ac44-2359b4c2e2b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df715850-874f-4385-ac44-2359b4c2e2b5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-df715850-874f-4385-ac44-2359b4c2e2b5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-df715850-874f-4385-ac44-2359b4c2e2b5-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-df715850-874f-4385-ac44-2359b4c2e2b5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-df715850-874f-4385-ac44-2359b4c2e2b5 .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-df715850-874f-4385-ac44-2359b4c2e2b5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-df715850-874f-4385-ac44-2359b4c2e2b5 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-df715850-874f-4385-ac44-2359b4c2e2b5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-df715850-874f-4385-ac44-2359b4c2e2b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df715850-874f-4385-ac44-2359b4c2e2b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df715850-874f-4385-ac44-2359b4c2e2b5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-ac4ebc4c-9762-446c-b290-9261385c169c {
  margin-left: 0%;
margin-right: 0%;
padding-top: 50px;
padding-left: 6%;
padding-bottom: 50px;
padding-right: 6%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(180, 180, 180, 1);
border-style: none;
border-radius: 15px;
min-height: 50px;
}








#s-ac4ebc4c-9762-446c-b290-9261385c169c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ac4ebc4c-9762-446c-b290-9261385c169c.shg-box.shg-c {
  justify-content: center;
}

#s-b49386a3-9ec5-48ef-affd-6af415271df4 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-b49386a3-9ec5-48ef-affd-6af415271df4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b49386a3-9ec5-48ef-affd-6af415271df4-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-b49386a3-9ec5-48ef-affd-6af415271df4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b49386a3-9ec5-48ef-affd-6af415271df4 .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-b49386a3-9ec5-48ef-affd-6af415271df4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b49386a3-9ec5-48ef-affd-6af415271df4 img.shogun-image {
  width: 100%;
  
  
  max-width: 100px;

  /* 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-b49386a3-9ec5-48ef-affd-6af415271df4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b49386a3-9ec5-48ef-affd-6af415271df4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b49386a3-9ec5-48ef-affd-6af415271df4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b49386a3-9ec5-48ef-affd-6af415271df4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-b49386a3-9ec5-48ef-affd-6af415271df4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b49386a3-9ec5-48ef-affd-6af415271df4-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-b49386a3-9ec5-48ef-affd-6af415271df4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b49386a3-9ec5-48ef-affd-6af415271df4 .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-b49386a3-9ec5-48ef-affd-6af415271df4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b49386a3-9ec5-48ef-affd-6af415271df4 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-b49386a3-9ec5-48ef-affd-6af415271df4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b49386a3-9ec5-48ef-affd-6af415271df4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b49386a3-9ec5-48ef-affd-6af415271df4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b49386a3-9ec5-48ef-affd-6af415271df4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-b49386a3-9ec5-48ef-affd-6af415271df4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b49386a3-9ec5-48ef-affd-6af415271df4-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-b49386a3-9ec5-48ef-affd-6af415271df4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b49386a3-9ec5-48ef-affd-6af415271df4 .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-b49386a3-9ec5-48ef-affd-6af415271df4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b49386a3-9ec5-48ef-affd-6af415271df4 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-b49386a3-9ec5-48ef-affd-6af415271df4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b49386a3-9ec5-48ef-affd-6af415271df4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b49386a3-9ec5-48ef-affd-6af415271df4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b49386a3-9ec5-48ef-affd-6af415271df4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-b49386a3-9ec5-48ef-affd-6af415271df4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b49386a3-9ec5-48ef-affd-6af415271df4-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-b49386a3-9ec5-48ef-affd-6af415271df4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b49386a3-9ec5-48ef-affd-6af415271df4 .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-b49386a3-9ec5-48ef-affd-6af415271df4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b49386a3-9ec5-48ef-affd-6af415271df4 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-b49386a3-9ec5-48ef-affd-6af415271df4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b49386a3-9ec5-48ef-affd-6af415271df4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b49386a3-9ec5-48ef-affd-6af415271df4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b49386a3-9ec5-48ef-affd-6af415271df4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-b49386a3-9ec5-48ef-affd-6af415271df4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b49386a3-9ec5-48ef-affd-6af415271df4-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-b49386a3-9ec5-48ef-affd-6af415271df4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b49386a3-9ec5-48ef-affd-6af415271df4 .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-b49386a3-9ec5-48ef-affd-6af415271df4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b49386a3-9ec5-48ef-affd-6af415271df4 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-b49386a3-9ec5-48ef-affd-6af415271df4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b49386a3-9ec5-48ef-affd-6af415271df4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b49386a3-9ec5-48ef-affd-6af415271df4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b49386a3-9ec5-48ef-affd-6af415271df4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-2bbe8385-6dbc-4af4-999f-6625f1313d23 {
  margin-left: auto;
margin-right: auto;
}

#s-2bbe8385-6dbc-4af4-999f-6625f1313d23 .shg-proportional-font-size,
#s-2bbe8385-6dbc-4af4-999f-6625f1313d23 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-4e69bd4e-59bc-4f0a-b438-450dd44e9654 {
  margin-left: auto;
margin-right: auto;
}

#s-4e69bd4e-59bc-4f0a-b438-450dd44e9654 .shg-proportional-font-size,
#s-4e69bd4e-59bc-4f0a-b438-450dd44e9654 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-61310169-ad93-4e91-ac18-e78df5a96010 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-61310169-ad93-4e91-ac18-e78df5a96010 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-61310169-ad93-4e91-ac18-e78df5a96010-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-61310169-ad93-4e91-ac18-e78df5a96010 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 10px;
  
}

#s-61310169-ad93-4e91-ac18-e78df5a96010 .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-61310169-ad93-4e91-ac18-e78df5a96010 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-61310169-ad93-4e91-ac18-e78df5a96010 img.shogun-image {
  width: 100%;
  
  
  max-width: 100px;

  /* 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-61310169-ad93-4e91-ac18-e78df5a96010 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-61310169-ad93-4e91-ac18-e78df5a96010.shg-align-container {
  display: flex;
  justify-content: center
}

.s-61310169-ad93-4e91-ac18-e78df5a96010.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-61310169-ad93-4e91-ac18-e78df5a96010.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-61310169-ad93-4e91-ac18-e78df5a96010 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-61310169-ad93-4e91-ac18-e78df5a96010-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-61310169-ad93-4e91-ac18-e78df5a96010 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-61310169-ad93-4e91-ac18-e78df5a96010 .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-61310169-ad93-4e91-ac18-e78df5a96010 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-61310169-ad93-4e91-ac18-e78df5a96010 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-61310169-ad93-4e91-ac18-e78df5a96010 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-61310169-ad93-4e91-ac18-e78df5a96010.shg-align-container {
  display: flex;
  justify-content: center
}

.s-61310169-ad93-4e91-ac18-e78df5a96010.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-61310169-ad93-4e91-ac18-e78df5a96010.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-61310169-ad93-4e91-ac18-e78df5a96010 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-61310169-ad93-4e91-ac18-e78df5a96010-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-61310169-ad93-4e91-ac18-e78df5a96010 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-61310169-ad93-4e91-ac18-e78df5a96010 .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-61310169-ad93-4e91-ac18-e78df5a96010 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-61310169-ad93-4e91-ac18-e78df5a96010 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-61310169-ad93-4e91-ac18-e78df5a96010 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-61310169-ad93-4e91-ac18-e78df5a96010.shg-align-container {
  display: flex;
  justify-content: center
}

.s-61310169-ad93-4e91-ac18-e78df5a96010.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-61310169-ad93-4e91-ac18-e78df5a96010.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-61310169-ad93-4e91-ac18-e78df5a96010 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-61310169-ad93-4e91-ac18-e78df5a96010-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-61310169-ad93-4e91-ac18-e78df5a96010 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-61310169-ad93-4e91-ac18-e78df5a96010 .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-61310169-ad93-4e91-ac18-e78df5a96010 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-61310169-ad93-4e91-ac18-e78df5a96010 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-61310169-ad93-4e91-ac18-e78df5a96010 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-61310169-ad93-4e91-ac18-e78df5a96010.shg-align-container {
  display: flex;
  justify-content: center
}

.s-61310169-ad93-4e91-ac18-e78df5a96010.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-61310169-ad93-4e91-ac18-e78df5a96010.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-61310169-ad93-4e91-ac18-e78df5a96010 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-61310169-ad93-4e91-ac18-e78df5a96010-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-61310169-ad93-4e91-ac18-e78df5a96010 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-61310169-ad93-4e91-ac18-e78df5a96010 .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-61310169-ad93-4e91-ac18-e78df5a96010 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-61310169-ad93-4e91-ac18-e78df5a96010 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-61310169-ad93-4e91-ac18-e78df5a96010 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-61310169-ad93-4e91-ac18-e78df5a96010.shg-align-container {
  display: flex;
  justify-content: center
}

.s-61310169-ad93-4e91-ac18-e78df5a96010.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-61310169-ad93-4e91-ac18-e78df5a96010.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-7c6bda6d-0a4d-4f7e-84ba-a24392dcc004 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 50px;
padding-left: 6%;
padding-bottom: 50px;
padding-right: 6%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(180, 180, 180, 1);
border-style: none;
border-radius: 15px;
min-height: 50px;
}








#s-7c6bda6d-0a4d-4f7e-84ba-a24392dcc004 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7c6bda6d-0a4d-4f7e-84ba-a24392dcc004.shg-box.shg-c {
  justify-content: center;
}

#s-852f79da-7e82-4c31-b929-f628b8eebfe8 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-852f79da-7e82-4c31-b929-f628b8eebfe8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-852f79da-7e82-4c31-b929-f628b8eebfe8-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-852f79da-7e82-4c31-b929-f628b8eebfe8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-852f79da-7e82-4c31-b929-f628b8eebfe8 .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-852f79da-7e82-4c31-b929-f628b8eebfe8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-852f79da-7e82-4c31-b929-f628b8eebfe8 img.shogun-image {
  width: 100%;
  
  
  max-width: 100px;

  /* 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-852f79da-7e82-4c31-b929-f628b8eebfe8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-852f79da-7e82-4c31-b929-f628b8eebfe8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-852f79da-7e82-4c31-b929-f628b8eebfe8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-852f79da-7e82-4c31-b929-f628b8eebfe8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-852f79da-7e82-4c31-b929-f628b8eebfe8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-852f79da-7e82-4c31-b929-f628b8eebfe8-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-852f79da-7e82-4c31-b929-f628b8eebfe8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-852f79da-7e82-4c31-b929-f628b8eebfe8 .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-852f79da-7e82-4c31-b929-f628b8eebfe8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-852f79da-7e82-4c31-b929-f628b8eebfe8 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-852f79da-7e82-4c31-b929-f628b8eebfe8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-852f79da-7e82-4c31-b929-f628b8eebfe8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-852f79da-7e82-4c31-b929-f628b8eebfe8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-852f79da-7e82-4c31-b929-f628b8eebfe8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-852f79da-7e82-4c31-b929-f628b8eebfe8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-852f79da-7e82-4c31-b929-f628b8eebfe8-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-852f79da-7e82-4c31-b929-f628b8eebfe8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-852f79da-7e82-4c31-b929-f628b8eebfe8 .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-852f79da-7e82-4c31-b929-f628b8eebfe8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-852f79da-7e82-4c31-b929-f628b8eebfe8 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-852f79da-7e82-4c31-b929-f628b8eebfe8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-852f79da-7e82-4c31-b929-f628b8eebfe8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-852f79da-7e82-4c31-b929-f628b8eebfe8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-852f79da-7e82-4c31-b929-f628b8eebfe8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-852f79da-7e82-4c31-b929-f628b8eebfe8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-852f79da-7e82-4c31-b929-f628b8eebfe8-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-852f79da-7e82-4c31-b929-f628b8eebfe8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-852f79da-7e82-4c31-b929-f628b8eebfe8 .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-852f79da-7e82-4c31-b929-f628b8eebfe8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-852f79da-7e82-4c31-b929-f628b8eebfe8 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-852f79da-7e82-4c31-b929-f628b8eebfe8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-852f79da-7e82-4c31-b929-f628b8eebfe8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-852f79da-7e82-4c31-b929-f628b8eebfe8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-852f79da-7e82-4c31-b929-f628b8eebfe8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-852f79da-7e82-4c31-b929-f628b8eebfe8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-852f79da-7e82-4c31-b929-f628b8eebfe8-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-852f79da-7e82-4c31-b929-f628b8eebfe8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-852f79da-7e82-4c31-b929-f628b8eebfe8 .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-852f79da-7e82-4c31-b929-f628b8eebfe8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-852f79da-7e82-4c31-b929-f628b8eebfe8 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-852f79da-7e82-4c31-b929-f628b8eebfe8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-852f79da-7e82-4c31-b929-f628b8eebfe8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-852f79da-7e82-4c31-b929-f628b8eebfe8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-852f79da-7e82-4c31-b929-f628b8eebfe8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-8030ffdd-51a8-4849-8002-28ac1959d2da {
  margin-left: auto;
margin-right: auto;
}

#s-8030ffdd-51a8-4849-8002-28ac1959d2da .shg-proportional-font-size,
#s-8030ffdd-51a8-4849-8002-28ac1959d2da .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-68da0d8a-ac6c-430c-af19-7c21b539e301 {
  margin-left: auto;
margin-right: auto;
}

#s-68da0d8a-ac6c-430c-af19-7c21b539e301 .shg-proportional-font-size,
#s-68da0d8a-ac6c-430c-af19-7c21b539e301 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c-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-71c7bdab-cdb0-4afa-94b3-e959c990a90c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 10px;
  
}

#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c .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-71c7bdab-cdb0-4afa-94b3-e959c990a90c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c img.shogun-image {
  width: 100%;
  
  
  max-width: 100px;

  /* 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-71c7bdab-cdb0-4afa-94b3-e959c990a90c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-71c7bdab-cdb0-4afa-94b3-e959c990a90c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71c7bdab-cdb0-4afa-94b3-e959c990a90c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c-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-71c7bdab-cdb0-4afa-94b3-e959c990a90c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c .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-71c7bdab-cdb0-4afa-94b3-e959c990a90c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c 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-71c7bdab-cdb0-4afa-94b3-e959c990a90c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-71c7bdab-cdb0-4afa-94b3-e959c990a90c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71c7bdab-cdb0-4afa-94b3-e959c990a90c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c-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-71c7bdab-cdb0-4afa-94b3-e959c990a90c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c .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-71c7bdab-cdb0-4afa-94b3-e959c990a90c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c 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-71c7bdab-cdb0-4afa-94b3-e959c990a90c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-71c7bdab-cdb0-4afa-94b3-e959c990a90c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71c7bdab-cdb0-4afa-94b3-e959c990a90c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c-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-71c7bdab-cdb0-4afa-94b3-e959c990a90c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c .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-71c7bdab-cdb0-4afa-94b3-e959c990a90c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c 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-71c7bdab-cdb0-4afa-94b3-e959c990a90c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-71c7bdab-cdb0-4afa-94b3-e959c990a90c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71c7bdab-cdb0-4afa-94b3-e959c990a90c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c-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-71c7bdab-cdb0-4afa-94b3-e959c990a90c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c .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-71c7bdab-cdb0-4afa-94b3-e959c990a90c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c 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-71c7bdab-cdb0-4afa-94b3-e959c990a90c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-71c7bdab-cdb0-4afa-94b3-e959c990a90c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-71c7bdab-cdb0-4afa-94b3-e959c990a90c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-71c7bdab-cdb0-4afa-94b3-e959c990a90c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-b768a9bb-fc81-4a72-8162-e141076af742 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 50px;
padding-left: 6%;
padding-bottom: 50px;
padding-right: 6%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(180, 180, 180, 1);
border-style: none;
border-radius: 15px;
min-height: 50px;
}








#s-b768a9bb-fc81-4a72-8162-e141076af742 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b768a9bb-fc81-4a72-8162-e141076af742.shg-box.shg-c {
  justify-content: center;
}

#s-1853487c-9e62-4ace-9366-a844c0c3dd8e {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-1853487c-9e62-4ace-9366-a844c0c3dd8e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1853487c-9e62-4ace-9366-a844c0c3dd8e-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-1853487c-9e62-4ace-9366-a844c0c3dd8e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1853487c-9e62-4ace-9366-a844c0c3dd8e .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-1853487c-9e62-4ace-9366-a844c0c3dd8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-1853487c-9e62-4ace-9366-a844c0c3dd8e img.shogun-image {
  width: 100%;
  
  
  max-width: 100px;

  /* 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-1853487c-9e62-4ace-9366-a844c0c3dd8e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1853487c-9e62-4ace-9366-a844c0c3dd8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1853487c-9e62-4ace-9366-a844c0c3dd8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1853487c-9e62-4ace-9366-a844c0c3dd8e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-1853487c-9e62-4ace-9366-a844c0c3dd8e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1853487c-9e62-4ace-9366-a844c0c3dd8e-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-1853487c-9e62-4ace-9366-a844c0c3dd8e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1853487c-9e62-4ace-9366-a844c0c3dd8e .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-1853487c-9e62-4ace-9366-a844c0c3dd8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-1853487c-9e62-4ace-9366-a844c0c3dd8e 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-1853487c-9e62-4ace-9366-a844c0c3dd8e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1853487c-9e62-4ace-9366-a844c0c3dd8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1853487c-9e62-4ace-9366-a844c0c3dd8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1853487c-9e62-4ace-9366-a844c0c3dd8e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-1853487c-9e62-4ace-9366-a844c0c3dd8e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1853487c-9e62-4ace-9366-a844c0c3dd8e-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-1853487c-9e62-4ace-9366-a844c0c3dd8e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1853487c-9e62-4ace-9366-a844c0c3dd8e .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-1853487c-9e62-4ace-9366-a844c0c3dd8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-1853487c-9e62-4ace-9366-a844c0c3dd8e 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-1853487c-9e62-4ace-9366-a844c0c3dd8e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1853487c-9e62-4ace-9366-a844c0c3dd8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1853487c-9e62-4ace-9366-a844c0c3dd8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1853487c-9e62-4ace-9366-a844c0c3dd8e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-1853487c-9e62-4ace-9366-a844c0c3dd8e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1853487c-9e62-4ace-9366-a844c0c3dd8e-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-1853487c-9e62-4ace-9366-a844c0c3dd8e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1853487c-9e62-4ace-9366-a844c0c3dd8e .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-1853487c-9e62-4ace-9366-a844c0c3dd8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-1853487c-9e62-4ace-9366-a844c0c3dd8e 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-1853487c-9e62-4ace-9366-a844c0c3dd8e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1853487c-9e62-4ace-9366-a844c0c3dd8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1853487c-9e62-4ace-9366-a844c0c3dd8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1853487c-9e62-4ace-9366-a844c0c3dd8e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-1853487c-9e62-4ace-9366-a844c0c3dd8e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1853487c-9e62-4ace-9366-a844c0c3dd8e-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-1853487c-9e62-4ace-9366-a844c0c3dd8e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1853487c-9e62-4ace-9366-a844c0c3dd8e .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-1853487c-9e62-4ace-9366-a844c0c3dd8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-1853487c-9e62-4ace-9366-a844c0c3dd8e 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-1853487c-9e62-4ace-9366-a844c0c3dd8e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1853487c-9e62-4ace-9366-a844c0c3dd8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1853487c-9e62-4ace-9366-a844c0c3dd8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1853487c-9e62-4ace-9366-a844c0c3dd8e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-d0cf1c8d-4e3d-4e13-bc38-9621b60e97ca {
  margin-left: auto;
margin-right: auto;
}

#s-d0cf1c8d-4e3d-4e13-bc38-9621b60e97ca .shg-proportional-font-size,
#s-d0cf1c8d-4e3d-4e13-bc38-9621b60e97ca .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-e352131d-de72-4a12-8468-4ebc353f0b60 {
  margin-left: auto;
margin-right: auto;
}

#s-e352131d-de72-4a12-8468-4ebc353f0b60 .shg-proportional-font-size,
#s-e352131d-de72-4a12-8468-4ebc353f0b60 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-f57d4f2a-44d0-4422-8961-75208e797957 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-f57d4f2a-44d0-4422-8961-75208e797957 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f57d4f2a-44d0-4422-8961-75208e797957-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-f57d4f2a-44d0-4422-8961-75208e797957 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 10px;
  
}

#s-f57d4f2a-44d0-4422-8961-75208e797957 .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-f57d4f2a-44d0-4422-8961-75208e797957 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f57d4f2a-44d0-4422-8961-75208e797957 img.shogun-image {
  width: 100%;
  
  
  max-width: 100px;

  /* 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-f57d4f2a-44d0-4422-8961-75208e797957 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f57d4f2a-44d0-4422-8961-75208e797957.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f57d4f2a-44d0-4422-8961-75208e797957.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f57d4f2a-44d0-4422-8961-75208e797957.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-f57d4f2a-44d0-4422-8961-75208e797957 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f57d4f2a-44d0-4422-8961-75208e797957-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-f57d4f2a-44d0-4422-8961-75208e797957 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f57d4f2a-44d0-4422-8961-75208e797957 .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-f57d4f2a-44d0-4422-8961-75208e797957 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f57d4f2a-44d0-4422-8961-75208e797957 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-f57d4f2a-44d0-4422-8961-75208e797957 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f57d4f2a-44d0-4422-8961-75208e797957.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f57d4f2a-44d0-4422-8961-75208e797957.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f57d4f2a-44d0-4422-8961-75208e797957.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-f57d4f2a-44d0-4422-8961-75208e797957 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f57d4f2a-44d0-4422-8961-75208e797957-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-f57d4f2a-44d0-4422-8961-75208e797957 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f57d4f2a-44d0-4422-8961-75208e797957 .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-f57d4f2a-44d0-4422-8961-75208e797957 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f57d4f2a-44d0-4422-8961-75208e797957 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-f57d4f2a-44d0-4422-8961-75208e797957 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f57d4f2a-44d0-4422-8961-75208e797957.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f57d4f2a-44d0-4422-8961-75208e797957.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f57d4f2a-44d0-4422-8961-75208e797957.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-f57d4f2a-44d0-4422-8961-75208e797957 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f57d4f2a-44d0-4422-8961-75208e797957-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-f57d4f2a-44d0-4422-8961-75208e797957 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f57d4f2a-44d0-4422-8961-75208e797957 .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-f57d4f2a-44d0-4422-8961-75208e797957 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f57d4f2a-44d0-4422-8961-75208e797957 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-f57d4f2a-44d0-4422-8961-75208e797957 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f57d4f2a-44d0-4422-8961-75208e797957.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f57d4f2a-44d0-4422-8961-75208e797957.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f57d4f2a-44d0-4422-8961-75208e797957.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-f57d4f2a-44d0-4422-8961-75208e797957 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f57d4f2a-44d0-4422-8961-75208e797957-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-f57d4f2a-44d0-4422-8961-75208e797957 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f57d4f2a-44d0-4422-8961-75208e797957 .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-f57d4f2a-44d0-4422-8961-75208e797957 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f57d4f2a-44d0-4422-8961-75208e797957 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-f57d4f2a-44d0-4422-8961-75208e797957 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f57d4f2a-44d0-4422-8961-75208e797957.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f57d4f2a-44d0-4422-8961-75208e797957.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f57d4f2a-44d0-4422-8961-75208e797957.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-3ba0a1aa-6830-45dd-93bc-9eaa9370e212 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-c211e889-4f07-4483-bb3c-5c753dffb310 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-609b355d-f08e-4488-b759-053d00edc883 {
  margin-left: 15%;
margin-bottom: 25px;
margin-right: 15%;
min-height: 50px;
}
@media (max-width: 767px){#s-609b355d-f08e-4488-b759-053d00edc883 {
  display: none;
}
#s-609b355d-f08e-4488-b759-053d00edc883, #wrap-s-609b355d-f08e-4488-b759-053d00edc883, #wrap-content-s-609b355d-f08e-4488-b759-053d00edc883 { display: none !important; }}







#s-609b355d-f08e-4488-b759-053d00edc883 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-609b355d-f08e-4488-b759-053d00edc883.shg-box.shg-c {
  justify-content: center;
}

#s-600b4369-203a-48d5-9508-b5230bb7d5d5 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-129de04b-f069-4cc7-b82f-b6c20ee406c5 {
  margin-top: 4px;
margin-left: auto;
margin-right: auto;
padding-left: 1%;
}

#s-129de04b-f069-4cc7-b82f-b6c20ee406c5 .shg-proportional-font-size,
#s-129de04b-f069-4cc7-b82f-b6c20ee406c5 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-6ab9bd8b-cf3d-4e30-af02-c11372d8460f {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-6ab9bd8b-cf3d-4e30-af02-c11372d8460f .shogun-heading-component h1 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


@media (max-width: 767px){#s-6ab9bd8b-cf3d-4e30-af02-c11372d8460f .shogun-heading-component h1 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
#s-ce34e461-9cb0-49ae-8099-43757c96e6dc {
  margin-top: -20px;
margin-left: 0%;
margin-right: 0%;
}

#s-ce34e461-9cb0-49ae-8099-43757c96e6dc .shg-proportional-font-size,
#s-ce34e461-9cb0-49ae-8099-43757c96e6dc .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-db0da427-5789-4840-a375-415e555c47f6 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-db0da427-5789-4840-a375-415e555c47f6 {
  display: none;
}
#s-db0da427-5789-4840-a375-415e555c47f6, #wrap-s-db0da427-5789-4840-a375-415e555c47f6, #wrap-content-s-db0da427-5789-4840-a375-415e555c47f6 { display: none !important; }}
@media (min-width: 0px) {
[id="s-db0da427-5789-4840-a375-415e555c47f6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-db0da427-5789-4840-a375-415e555c47f6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-db0da427-5789-4840-a375-415e555c47f6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-db0da427-5789-4840-a375-415e555c47f6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-db0da427-5789-4840-a375-415e555c47f6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-db0da427-5789-4840-a375-415e555c47f6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-db0da427-5789-4840-a375-415e555c47f6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

#s-92c46f0c-f85c-4846-a13e-d9fae48289f3 {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-92c46f0c-f85c-4846-a13e-d9fae48289f3 {
  display: none;
}
#s-92c46f0c-f85c-4846-a13e-d9fae48289f3, #wrap-s-92c46f0c-f85c-4846-a13e-d9fae48289f3, #wrap-content-s-92c46f0c-f85c-4846-a13e-d9fae48289f3 { display: none !important; }}
@media (min-width: 0px) {
[id="s-92c46f0c-f85c-4846-a13e-d9fae48289f3"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-92c46f0c-f85c-4846-a13e-d9fae48289f3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-92c46f0c-f85c-4846-a13e-d9fae48289f3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-92c46f0c-f85c-4846-a13e-d9fae48289f3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-775cbeef-b225-4f84-968c-76355d704b7b {
  box-shadow:1px 1px 1px 1px rgba(144, 150, 160, 1);
margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 25px;
min-height: 50px;
}








#s-775cbeef-b225-4f84-968c-76355d704b7b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-775cbeef-b225-4f84-968c-76355d704b7b.shg-box.shg-c {
  justify-content: center;
}

#s-3e2151fd-5417-4f96-bab7-2ed557543d2b {
  margin-top: 15px;
margin-left: 6%;
margin-right: 6%;
max-width: 50px;
text-align: left;
}

#s-3e2151fd-5417-4f96-bab7-2ed557543d2b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3e2151fd-5417-4f96-bab7-2ed557543d2b-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-3e2151fd-5417-4f96-bab7-2ed557543d2b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 6%;
  margin-right: 6%;
  margin-top: 15px;
  
}

#s-3e2151fd-5417-4f96-bab7-2ed557543d2b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 10px;
  /* Add background color handling */
  background: rgba(233, 249, 239, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-3e2151fd-5417-4f96-bab7-2ed557543d2b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3e2151fd-5417-4f96-bab7-2ed557543d2b img.shogun-image {
  width: 100%;
  
  
  max-width: 50px;

  /* 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-3e2151fd-5417-4f96-bab7-2ed557543d2b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3e2151fd-5417-4f96-bab7-2ed557543d2b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3e2151fd-5417-4f96-bab7-2ed557543d2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e2151fd-5417-4f96-bab7-2ed557543d2b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-3e2151fd-5417-4f96-bab7-2ed557543d2b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3e2151fd-5417-4f96-bab7-2ed557543d2b-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-3e2151fd-5417-4f96-bab7-2ed557543d2b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3e2151fd-5417-4f96-bab7-2ed557543d2b .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-3e2151fd-5417-4f96-bab7-2ed557543d2b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3e2151fd-5417-4f96-bab7-2ed557543d2b 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-3e2151fd-5417-4f96-bab7-2ed557543d2b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3e2151fd-5417-4f96-bab7-2ed557543d2b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3e2151fd-5417-4f96-bab7-2ed557543d2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e2151fd-5417-4f96-bab7-2ed557543d2b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-3e2151fd-5417-4f96-bab7-2ed557543d2b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3e2151fd-5417-4f96-bab7-2ed557543d2b-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-3e2151fd-5417-4f96-bab7-2ed557543d2b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3e2151fd-5417-4f96-bab7-2ed557543d2b .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-3e2151fd-5417-4f96-bab7-2ed557543d2b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3e2151fd-5417-4f96-bab7-2ed557543d2b 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-3e2151fd-5417-4f96-bab7-2ed557543d2b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3e2151fd-5417-4f96-bab7-2ed557543d2b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3e2151fd-5417-4f96-bab7-2ed557543d2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e2151fd-5417-4f96-bab7-2ed557543d2b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-3e2151fd-5417-4f96-bab7-2ed557543d2b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3e2151fd-5417-4f96-bab7-2ed557543d2b-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-3e2151fd-5417-4f96-bab7-2ed557543d2b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3e2151fd-5417-4f96-bab7-2ed557543d2b .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-3e2151fd-5417-4f96-bab7-2ed557543d2b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3e2151fd-5417-4f96-bab7-2ed557543d2b 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-3e2151fd-5417-4f96-bab7-2ed557543d2b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3e2151fd-5417-4f96-bab7-2ed557543d2b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3e2151fd-5417-4f96-bab7-2ed557543d2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e2151fd-5417-4f96-bab7-2ed557543d2b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-3e2151fd-5417-4f96-bab7-2ed557543d2b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3e2151fd-5417-4f96-bab7-2ed557543d2b-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-3e2151fd-5417-4f96-bab7-2ed557543d2b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3e2151fd-5417-4f96-bab7-2ed557543d2b .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-3e2151fd-5417-4f96-bab7-2ed557543d2b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3e2151fd-5417-4f96-bab7-2ed557543d2b 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-3e2151fd-5417-4f96-bab7-2ed557543d2b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3e2151fd-5417-4f96-bab7-2ed557543d2b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3e2151fd-5417-4f96-bab7-2ed557543d2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e2151fd-5417-4f96-bab7-2ed557543d2b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-7cc8eab0-c1d6-4d64-a5f6-5cf7bacdfe76 {
  margin-left: 6%;
margin-right: 6%;
}

#s-7cc8eab0-c1d6-4d64-a5f6-5cf7bacdfe76 .shg-proportional-font-size,
#s-7cc8eab0-c1d6-4d64-a5f6-5cf7bacdfe76 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-169e2580-a4d1-4b20-b30d-e53ebc109964 {
  box-shadow:1px 1px 1px 1px rgba(144, 150, 160, 1);
margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 25px;
min-height: 50px;
}








#s-169e2580-a4d1-4b20-b30d-e53ebc109964 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-169e2580-a4d1-4b20-b30d-e53ebc109964.shg-box.shg-c {
  justify-content: center;
}

#s-072c85aa-c365-485b-8838-7a1fb7b2fe45 {
  margin-top: 15px;
margin-left: 6%;
margin-right: 6%;
max-width: 50px;
text-align: left;
}

#s-072c85aa-c365-485b-8838-7a1fb7b2fe45 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-072c85aa-c365-485b-8838-7a1fb7b2fe45-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-072c85aa-c365-485b-8838-7a1fb7b2fe45 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 6%;
  margin-right: 6%;
  margin-top: 15px;
  
}

#s-072c85aa-c365-485b-8838-7a1fb7b2fe45 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 10px;
  /* Add background color handling */
  background: rgba(219, 227, 239, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-072c85aa-c365-485b-8838-7a1fb7b2fe45 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-072c85aa-c365-485b-8838-7a1fb7b2fe45 img.shogun-image {
  width: 100%;
  
  
  max-width: 50px;

  /* 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-072c85aa-c365-485b-8838-7a1fb7b2fe45 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-072c85aa-c365-485b-8838-7a1fb7b2fe45.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-072c85aa-c365-485b-8838-7a1fb7b2fe45.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-072c85aa-c365-485b-8838-7a1fb7b2fe45.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-072c85aa-c365-485b-8838-7a1fb7b2fe45 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-072c85aa-c365-485b-8838-7a1fb7b2fe45-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-072c85aa-c365-485b-8838-7a1fb7b2fe45 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-072c85aa-c365-485b-8838-7a1fb7b2fe45 .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-072c85aa-c365-485b-8838-7a1fb7b2fe45 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-072c85aa-c365-485b-8838-7a1fb7b2fe45 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-072c85aa-c365-485b-8838-7a1fb7b2fe45 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-072c85aa-c365-485b-8838-7a1fb7b2fe45.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-072c85aa-c365-485b-8838-7a1fb7b2fe45.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-072c85aa-c365-485b-8838-7a1fb7b2fe45.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-072c85aa-c365-485b-8838-7a1fb7b2fe45 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-072c85aa-c365-485b-8838-7a1fb7b2fe45-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-072c85aa-c365-485b-8838-7a1fb7b2fe45 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-072c85aa-c365-485b-8838-7a1fb7b2fe45 .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-072c85aa-c365-485b-8838-7a1fb7b2fe45 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-072c85aa-c365-485b-8838-7a1fb7b2fe45 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-072c85aa-c365-485b-8838-7a1fb7b2fe45 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-072c85aa-c365-485b-8838-7a1fb7b2fe45.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-072c85aa-c365-485b-8838-7a1fb7b2fe45.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-072c85aa-c365-485b-8838-7a1fb7b2fe45.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-072c85aa-c365-485b-8838-7a1fb7b2fe45 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-072c85aa-c365-485b-8838-7a1fb7b2fe45-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-072c85aa-c365-485b-8838-7a1fb7b2fe45 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-072c85aa-c365-485b-8838-7a1fb7b2fe45 .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-072c85aa-c365-485b-8838-7a1fb7b2fe45 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-072c85aa-c365-485b-8838-7a1fb7b2fe45 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-072c85aa-c365-485b-8838-7a1fb7b2fe45 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-072c85aa-c365-485b-8838-7a1fb7b2fe45.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-072c85aa-c365-485b-8838-7a1fb7b2fe45.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-072c85aa-c365-485b-8838-7a1fb7b2fe45.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-072c85aa-c365-485b-8838-7a1fb7b2fe45 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-072c85aa-c365-485b-8838-7a1fb7b2fe45-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-072c85aa-c365-485b-8838-7a1fb7b2fe45 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-072c85aa-c365-485b-8838-7a1fb7b2fe45 .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-072c85aa-c365-485b-8838-7a1fb7b2fe45 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-072c85aa-c365-485b-8838-7a1fb7b2fe45 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-072c85aa-c365-485b-8838-7a1fb7b2fe45 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-072c85aa-c365-485b-8838-7a1fb7b2fe45.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-072c85aa-c365-485b-8838-7a1fb7b2fe45.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-072c85aa-c365-485b-8838-7a1fb7b2fe45.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-0f02c71c-15e8-47ee-9211-8d8db58dfd6b {
  margin-left: 6%;
margin-right: 6%;
}

#s-0f02c71c-15e8-47ee-9211-8d8db58dfd6b .shg-proportional-font-size,
#s-0f02c71c-15e8-47ee-9211-8d8db58dfd6b .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-56cf3689-49ae-43c9-b569-e1b701ffe819 {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-56cf3689-49ae-43c9-b569-e1b701ffe819 {
  display: none;
}
#s-56cf3689-49ae-43c9-b569-e1b701ffe819, #wrap-s-56cf3689-49ae-43c9-b569-e1b701ffe819, #wrap-content-s-56cf3689-49ae-43c9-b569-e1b701ffe819 { display: none !important; }}
@media (min-width: 0px) {
[id="s-56cf3689-49ae-43c9-b569-e1b701ffe819"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-56cf3689-49ae-43c9-b569-e1b701ffe819"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-56cf3689-49ae-43c9-b569-e1b701ffe819"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-56cf3689-49ae-43c9-b569-e1b701ffe819"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-8c2912f8-574d-4e4d-b037-5dfc99c266d6 {
  box-shadow:1px 1px 1px 1px rgba(144, 150, 160, 1);
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 73px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 25px;
min-height: 50px;
}
@media (min-width: 1200px){#s-8c2912f8-574d-4e4d-b037-5dfc99c266d6 {
  padding-bottom: 25px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-8c2912f8-574d-4e4d-b037-5dfc99c266d6 {
  padding-bottom: 73px;
}
}







#s-8c2912f8-574d-4e4d-b037-5dfc99c266d6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8c2912f8-574d-4e4d-b037-5dfc99c266d6.shg-box.shg-c {
  justify-content: center;
}

#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8 {
  margin-top: 15px;
margin-left: 6%;
margin-right: 6%;
max-width: 50px;
text-align: left;
}

#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8-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-2584af73-3dc9-4540-b950-43e3fa3fe6c8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 6%;
  margin-right: 6%;
  margin-top: 15px;
  
}

#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 10px;
  /* Add background color handling */
  background: rgba(212, 247, 255, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-2584af73-3dc9-4540-b950-43e3fa3fe6c8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8 img.shogun-image {
  width: 100%;
  
  
  max-width: 50px;

  /* 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-2584af73-3dc9-4540-b950-43e3fa3fe6c8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2584af73-3dc9-4540-b950-43e3fa3fe6c8.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-2584af73-3dc9-4540-b950-43e3fa3fe6c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8-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-2584af73-3dc9-4540-b950-43e3fa3fe6c8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8 .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-2584af73-3dc9-4540-b950-43e3fa3fe6c8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8 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-2584af73-3dc9-4540-b950-43e3fa3fe6c8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2584af73-3dc9-4540-b950-43e3fa3fe6c8.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-2584af73-3dc9-4540-b950-43e3fa3fe6c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8-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-2584af73-3dc9-4540-b950-43e3fa3fe6c8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8 .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-2584af73-3dc9-4540-b950-43e3fa3fe6c8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8 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-2584af73-3dc9-4540-b950-43e3fa3fe6c8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2584af73-3dc9-4540-b950-43e3fa3fe6c8.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-2584af73-3dc9-4540-b950-43e3fa3fe6c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8-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-2584af73-3dc9-4540-b950-43e3fa3fe6c8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8 .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-2584af73-3dc9-4540-b950-43e3fa3fe6c8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8 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-2584af73-3dc9-4540-b950-43e3fa3fe6c8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2584af73-3dc9-4540-b950-43e3fa3fe6c8.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-2584af73-3dc9-4540-b950-43e3fa3fe6c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8-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-2584af73-3dc9-4540-b950-43e3fa3fe6c8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8 .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-2584af73-3dc9-4540-b950-43e3fa3fe6c8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8 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-2584af73-3dc9-4540-b950-43e3fa3fe6c8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2584af73-3dc9-4540-b950-43e3fa3fe6c8.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-2584af73-3dc9-4540-b950-43e3fa3fe6c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2584af73-3dc9-4540-b950-43e3fa3fe6c8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-36223934-b7e2-4948-87cc-1e46092edfb6 {
  margin-left: 6%;
margin-right: 6%;
}
@media (min-width: 1200px){#s-36223934-b7e2-4948-87cc-1e46092edfb6 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-36223934-b7e2-4948-87cc-1e46092edfb6 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-36223934-b7e2-4948-87cc-1e46092edfb6 {
  
}
}
#s-36223934-b7e2-4948-87cc-1e46092edfb6 .shg-proportional-font-size,
#s-36223934-b7e2-4948-87cc-1e46092edfb6 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-de4a7b31-e697-46e2-99d1-f601226303e5 {
  box-shadow:1px 1px 1px 1px rgba(144, 150, 160, 1);
margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 25px;
min-height: 50px;
}








#s-de4a7b31-e697-46e2-99d1-f601226303e5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-de4a7b31-e697-46e2-99d1-f601226303e5.shg-box.shg-c {
  justify-content: center;
}

#s-769f813c-a6c6-44ab-a65c-36d1f2145baa {
  margin-left: 6%;
margin-right: 6%;
max-width: 50px;
text-align: left;
}

#s-769f813c-a6c6-44ab-a65c-36d1f2145baa {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-769f813c-a6c6-44ab-a65c-36d1f2145baa-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-769f813c-a6c6-44ab-a65c-36d1f2145baa {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 6%;
  margin-right: 6%;
  
  
}

#s-769f813c-a6c6-44ab-a65c-36d1f2145baa .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 10px;
  /* Add background color handling */
  background: rgba(233, 249, 239, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-769f813c-a6c6-44ab-a65c-36d1f2145baa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-769f813c-a6c6-44ab-a65c-36d1f2145baa img.shogun-image {
  width: 100%;
  
  
  max-width: 50px;

  /* 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-769f813c-a6c6-44ab-a65c-36d1f2145baa .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-769f813c-a6c6-44ab-a65c-36d1f2145baa.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-769f813c-a6c6-44ab-a65c-36d1f2145baa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-769f813c-a6c6-44ab-a65c-36d1f2145baa.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-769f813c-a6c6-44ab-a65c-36d1f2145baa {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-769f813c-a6c6-44ab-a65c-36d1f2145baa-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-769f813c-a6c6-44ab-a65c-36d1f2145baa {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-769f813c-a6c6-44ab-a65c-36d1f2145baa .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-769f813c-a6c6-44ab-a65c-36d1f2145baa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-769f813c-a6c6-44ab-a65c-36d1f2145baa 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-769f813c-a6c6-44ab-a65c-36d1f2145baa .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-769f813c-a6c6-44ab-a65c-36d1f2145baa.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-769f813c-a6c6-44ab-a65c-36d1f2145baa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-769f813c-a6c6-44ab-a65c-36d1f2145baa.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-769f813c-a6c6-44ab-a65c-36d1f2145baa {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-769f813c-a6c6-44ab-a65c-36d1f2145baa-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-769f813c-a6c6-44ab-a65c-36d1f2145baa {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-769f813c-a6c6-44ab-a65c-36d1f2145baa .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-769f813c-a6c6-44ab-a65c-36d1f2145baa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-769f813c-a6c6-44ab-a65c-36d1f2145baa 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-769f813c-a6c6-44ab-a65c-36d1f2145baa .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-769f813c-a6c6-44ab-a65c-36d1f2145baa.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-769f813c-a6c6-44ab-a65c-36d1f2145baa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-769f813c-a6c6-44ab-a65c-36d1f2145baa.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-769f813c-a6c6-44ab-a65c-36d1f2145baa {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-769f813c-a6c6-44ab-a65c-36d1f2145baa-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-769f813c-a6c6-44ab-a65c-36d1f2145baa {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-769f813c-a6c6-44ab-a65c-36d1f2145baa .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-769f813c-a6c6-44ab-a65c-36d1f2145baa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-769f813c-a6c6-44ab-a65c-36d1f2145baa 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-769f813c-a6c6-44ab-a65c-36d1f2145baa .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-769f813c-a6c6-44ab-a65c-36d1f2145baa.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-769f813c-a6c6-44ab-a65c-36d1f2145baa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-769f813c-a6c6-44ab-a65c-36d1f2145baa.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-769f813c-a6c6-44ab-a65c-36d1f2145baa {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-769f813c-a6c6-44ab-a65c-36d1f2145baa-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-769f813c-a6c6-44ab-a65c-36d1f2145baa {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-769f813c-a6c6-44ab-a65c-36d1f2145baa .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-769f813c-a6c6-44ab-a65c-36d1f2145baa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-769f813c-a6c6-44ab-a65c-36d1f2145baa 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-769f813c-a6c6-44ab-a65c-36d1f2145baa .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-769f813c-a6c6-44ab-a65c-36d1f2145baa.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-769f813c-a6c6-44ab-a65c-36d1f2145baa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-769f813c-a6c6-44ab-a65c-36d1f2145baa.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-2d5a983a-f7b1-4e3b-b0c6-15caa4b0b579 {
  margin-left: 6%;
margin-right: 6%;
}
@media (min-width: 1200px){#s-2d5a983a-f7b1-4e3b-b0c6-15caa4b0b579 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2d5a983a-f7b1-4e3b-b0c6-15caa4b0b579 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-2d5a983a-f7b1-4e3b-b0c6-15caa4b0b579 {
  
}
}
#s-2d5a983a-f7b1-4e3b-b0c6-15caa4b0b579 .shg-proportional-font-size,
#s-2d5a983a-f7b1-4e3b-b0c6-15caa4b0b579 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
height: 550px;
max-width: 300px;
text-align: left;
}
@media (min-width: 1200px){#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 {
  height: 425px;
}
}@media (max-width: 767px){#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 {
  display: none;
}
#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8, #wrap-s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8, #wrap-content-s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 { display: none !important; }}
#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8-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-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 15px;
  
}

#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 15px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 img.shogun-image {
  width: 100%;
  height: 550px;
  
  max-width: 300px;

  /* 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-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8-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-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 .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-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 img.shogun-image {
  width: 100%;
  height: 425px;
  
  

  /* 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-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8-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-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 .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-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 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-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8-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-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 .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-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 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-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8-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-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 .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-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 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-4ac46b44-e736-45f0-85d1-ccd3de5a52a8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ac46b44-e736-45f0-85d1-ccd3de5a52a8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-e92a11d1-bd17-4172-abbd-85f17ce188c1 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px){#s-e92a11d1-bd17-4172-abbd-85f17ce188c1 {
  display: none;
}
#s-e92a11d1-bd17-4172-abbd-85f17ce188c1, #wrap-s-e92a11d1-bd17-4172-abbd-85f17ce188c1, #wrap-content-s-e92a11d1-bd17-4172-abbd-85f17ce188c1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e92a11d1-bd17-4172-abbd-85f17ce188c1 {
  display: none;
}
#s-e92a11d1-bd17-4172-abbd-85f17ce188c1, #wrap-s-e92a11d1-bd17-4172-abbd-85f17ce188c1, #wrap-content-s-e92a11d1-bd17-4172-abbd-85f17ce188c1 { display: none !important; }}@media (max-width: 767px){#s-e92a11d1-bd17-4172-abbd-85f17ce188c1 {
  display: none;
}
#s-e92a11d1-bd17-4172-abbd-85f17ce188c1, #wrap-s-e92a11d1-bd17-4172-abbd-85f17ce188c1, #wrap-content-s-e92a11d1-bd17-4172-abbd-85f17ce188c1 { display: none !important; }}
@media (min-width: 0px) {
[id="s-e92a11d1-bd17-4172-abbd-85f17ce188c1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e92a11d1-bd17-4172-abbd-85f17ce188c1"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-e92a11d1-bd17-4172-abbd-85f17ce188c1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e92a11d1-bd17-4172-abbd-85f17ce188c1"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-e92a11d1-bd17-4172-abbd-85f17ce188c1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e92a11d1-bd17-4172-abbd-85f17ce188c1"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-e92a11d1-bd17-4172-abbd-85f17ce188c1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

#s-9e38a022-a637-4740-a942-4872025e12aa {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-9e38a022-a637-4740-a942-4872025e12aa {
  display: none;
}
#s-9e38a022-a637-4740-a942-4872025e12aa, #wrap-s-9e38a022-a637-4740-a942-4872025e12aa, #wrap-content-s-9e38a022-a637-4740-a942-4872025e12aa { display: none !important; }}
@media (min-width: 0px) {
[id="s-9e38a022-a637-4740-a942-4872025e12aa"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-9e38a022-a637-4740-a942-4872025e12aa"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-9e38a022-a637-4740-a942-4872025e12aa"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-9e38a022-a637-4740-a942-4872025e12aa"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-99a3c84d-af85-4149-8af9-cb2b47dfadc5 {
  box-shadow:1px 1px 1px 1px rgba(144, 150, 160, 1);
margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 25px;
min-height: 50px;
}








#s-99a3c84d-af85-4149-8af9-cb2b47dfadc5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-99a3c84d-af85-4149-8af9-cb2b47dfadc5.shg-box.shg-c {
  justify-content: center;
}

#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 {
  margin-top: 15px;
margin-left: 6%;
margin-right: 6%;
max-width: 50px;
text-align: left;
}

#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7-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-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 6%;
  margin-right: 6%;
  margin-top: 15px;
  
}

#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 10px;
  /* Add background color handling */
  background: rgba(233, 249, 239, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 img.shogun-image {
  width: 100%;
  
  
  max-width: 50px;

  /* 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-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7-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-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 .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-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 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-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7-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-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 .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-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 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-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7-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-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 .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-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 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-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7-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-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 .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-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 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-bcd4099e-b643-47f6-8c42-4a7f12ba18b7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bcd4099e-b643-47f6-8c42-4a7f12ba18b7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-35766d07-fc50-4f45-aa7e-bc80d6d77612 {
  margin-left: 6%;
margin-right: 6%;
}

#s-35766d07-fc50-4f45-aa7e-bc80d6d77612 .shg-proportional-font-size,
#s-35766d07-fc50-4f45-aa7e-bc80d6d77612 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-3056eb3e-90bd-4508-a27b-d83aef7afdac {
  box-shadow:1px 1px 1px 1px rgba(144, 150, 160, 1);
margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 25px;
min-height: 50px;
}








#s-3056eb3e-90bd-4508-a27b-d83aef7afdac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3056eb3e-90bd-4508-a27b-d83aef7afdac.shg-box.shg-c {
  justify-content: center;
}

#s-ab6820cf-7212-451a-aff5-d2a8ae96694d {
  margin-top: 15px;
margin-left: 6%;
margin-right: 6%;
max-width: 50px;
text-align: left;
}

#s-ab6820cf-7212-451a-aff5-d2a8ae96694d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ab6820cf-7212-451a-aff5-d2a8ae96694d-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-ab6820cf-7212-451a-aff5-d2a8ae96694d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 6%;
  margin-right: 6%;
  margin-top: 15px;
  
}

#s-ab6820cf-7212-451a-aff5-d2a8ae96694d .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 10px;
  /* Add background color handling */
  background: rgba(219, 227, 239, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-ab6820cf-7212-451a-aff5-d2a8ae96694d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ab6820cf-7212-451a-aff5-d2a8ae96694d img.shogun-image {
  width: 100%;
  
  
  max-width: 50px;

  /* 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-ab6820cf-7212-451a-aff5-d2a8ae96694d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ab6820cf-7212-451a-aff5-d2a8ae96694d.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-ab6820cf-7212-451a-aff5-d2a8ae96694d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab6820cf-7212-451a-aff5-d2a8ae96694d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-ab6820cf-7212-451a-aff5-d2a8ae96694d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ab6820cf-7212-451a-aff5-d2a8ae96694d-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-ab6820cf-7212-451a-aff5-d2a8ae96694d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ab6820cf-7212-451a-aff5-d2a8ae96694d .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-ab6820cf-7212-451a-aff5-d2a8ae96694d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ab6820cf-7212-451a-aff5-d2a8ae96694d 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-ab6820cf-7212-451a-aff5-d2a8ae96694d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ab6820cf-7212-451a-aff5-d2a8ae96694d.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-ab6820cf-7212-451a-aff5-d2a8ae96694d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab6820cf-7212-451a-aff5-d2a8ae96694d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-ab6820cf-7212-451a-aff5-d2a8ae96694d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ab6820cf-7212-451a-aff5-d2a8ae96694d-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-ab6820cf-7212-451a-aff5-d2a8ae96694d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ab6820cf-7212-451a-aff5-d2a8ae96694d .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-ab6820cf-7212-451a-aff5-d2a8ae96694d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ab6820cf-7212-451a-aff5-d2a8ae96694d 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-ab6820cf-7212-451a-aff5-d2a8ae96694d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ab6820cf-7212-451a-aff5-d2a8ae96694d.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-ab6820cf-7212-451a-aff5-d2a8ae96694d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab6820cf-7212-451a-aff5-d2a8ae96694d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-ab6820cf-7212-451a-aff5-d2a8ae96694d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ab6820cf-7212-451a-aff5-d2a8ae96694d-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-ab6820cf-7212-451a-aff5-d2a8ae96694d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ab6820cf-7212-451a-aff5-d2a8ae96694d .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-ab6820cf-7212-451a-aff5-d2a8ae96694d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ab6820cf-7212-451a-aff5-d2a8ae96694d 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-ab6820cf-7212-451a-aff5-d2a8ae96694d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ab6820cf-7212-451a-aff5-d2a8ae96694d.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-ab6820cf-7212-451a-aff5-d2a8ae96694d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab6820cf-7212-451a-aff5-d2a8ae96694d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-ab6820cf-7212-451a-aff5-d2a8ae96694d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ab6820cf-7212-451a-aff5-d2a8ae96694d-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-ab6820cf-7212-451a-aff5-d2a8ae96694d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ab6820cf-7212-451a-aff5-d2a8ae96694d .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-ab6820cf-7212-451a-aff5-d2a8ae96694d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ab6820cf-7212-451a-aff5-d2a8ae96694d 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-ab6820cf-7212-451a-aff5-d2a8ae96694d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ab6820cf-7212-451a-aff5-d2a8ae96694d.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-ab6820cf-7212-451a-aff5-d2a8ae96694d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab6820cf-7212-451a-aff5-d2a8ae96694d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-cbd9e1d3-bec4-4de4-901b-dd2f4568f585 {
  margin-left: 6%;
margin-right: 6%;
}

#s-cbd9e1d3-bec4-4de4-901b-dd2f4568f585 .shg-proportional-font-size,
#s-cbd9e1d3-bec4-4de4-901b-dd2f4568f585 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-0ab486ea-536c-45cf-afc6-88fd5eba0325 {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-0ab486ea-536c-45cf-afc6-88fd5eba0325 {
  display: none;
}
#s-0ab486ea-536c-45cf-afc6-88fd5eba0325, #wrap-s-0ab486ea-536c-45cf-afc6-88fd5eba0325, #wrap-content-s-0ab486ea-536c-45cf-afc6-88fd5eba0325 { display: none !important; }}
@media (min-width: 0px) {
[id="s-0ab486ea-536c-45cf-afc6-88fd5eba0325"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-0ab486ea-536c-45cf-afc6-88fd5eba0325"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-0ab486ea-536c-45cf-afc6-88fd5eba0325"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-0ab486ea-536c-45cf-afc6-88fd5eba0325"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-850020de-d8d8-4cec-9170-6d85accf2cc0 {
  box-shadow:1px 1px 1px 1px rgba(144, 150, 160, 1);
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 73px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 25px;
min-height: 50px;
}
@media (min-width: 1200px){#s-850020de-d8d8-4cec-9170-6d85accf2cc0 {
  padding-bottom: 25px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-850020de-d8d8-4cec-9170-6d85accf2cc0 {
  padding-bottom: 73px;
}
}







#s-850020de-d8d8-4cec-9170-6d85accf2cc0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-850020de-d8d8-4cec-9170-6d85accf2cc0.shg-box.shg-c {
  justify-content: center;
}

#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 {
  margin-top: 15px;
margin-left: 6%;
margin-right: 6%;
max-width: 50px;
text-align: left;
}

#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4-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-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 6%;
  margin-right: 6%;
  margin-top: 15px;
  
}

#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 10px;
  /* Add background color handling */
  background: rgba(212, 247, 255, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 img.shogun-image {
  width: 100%;
  
  
  max-width: 50px;

  /* 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-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4-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-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 .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-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 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-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4-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-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 .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-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 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-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4-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-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 .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-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 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-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4-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-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 .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-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 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-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-37f981c5-d7ac-44d4-a8aa-3db3e7ed69d4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-a91430b0-4076-41c5-bc55-437f73a6725f {
  margin-left: 6%;
margin-right: 6%;
}
@media (min-width: 1200px){#s-a91430b0-4076-41c5-bc55-437f73a6725f {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a91430b0-4076-41c5-bc55-437f73a6725f {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a91430b0-4076-41c5-bc55-437f73a6725f {
  
}
}
#s-a91430b0-4076-41c5-bc55-437f73a6725f .shg-proportional-font-size,
#s-a91430b0-4076-41c5-bc55-437f73a6725f .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-a45e2bbf-a160-4068-a941-0dbb955b53bb {
  box-shadow:1px 1px 1px 1px rgba(144, 150, 160, 1);
margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 25px;
min-height: 50px;
}








#s-a45e2bbf-a160-4068-a941-0dbb955b53bb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a45e2bbf-a160-4068-a941-0dbb955b53bb.shg-box.shg-c {
  justify-content: center;
}

#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80 {
  margin-top: 15px;
margin-left: 6%;
margin-right: 6%;
max-width: 50px;
text-align: left;
}

#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80-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-dc37287a-b580-4f8d-ba5d-31533a5ffd80 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 6%;
  margin-right: 6%;
  margin-top: 15px;
  
}

#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 10px;
  /* Add background color handling */
  background: rgba(233, 249, 239, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-dc37287a-b580-4f8d-ba5d-31533a5ffd80 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80 img.shogun-image {
  width: 100%;
  
  
  max-width: 50px;

  /* 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-dc37287a-b580-4f8d-ba5d-31533a5ffd80 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-dc37287a-b580-4f8d-ba5d-31533a5ffd80.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-dc37287a-b580-4f8d-ba5d-31533a5ffd80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80-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-dc37287a-b580-4f8d-ba5d-31533a5ffd80 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80 .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-dc37287a-b580-4f8d-ba5d-31533a5ffd80 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80 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-dc37287a-b580-4f8d-ba5d-31533a5ffd80 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-dc37287a-b580-4f8d-ba5d-31533a5ffd80.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-dc37287a-b580-4f8d-ba5d-31533a5ffd80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80-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-dc37287a-b580-4f8d-ba5d-31533a5ffd80 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80 .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-dc37287a-b580-4f8d-ba5d-31533a5ffd80 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80 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-dc37287a-b580-4f8d-ba5d-31533a5ffd80 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-dc37287a-b580-4f8d-ba5d-31533a5ffd80.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-dc37287a-b580-4f8d-ba5d-31533a5ffd80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80-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-dc37287a-b580-4f8d-ba5d-31533a5ffd80 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80 .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-dc37287a-b580-4f8d-ba5d-31533a5ffd80 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80 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-dc37287a-b580-4f8d-ba5d-31533a5ffd80 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-dc37287a-b580-4f8d-ba5d-31533a5ffd80.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-dc37287a-b580-4f8d-ba5d-31533a5ffd80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80-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-dc37287a-b580-4f8d-ba5d-31533a5ffd80 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80 .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-dc37287a-b580-4f8d-ba5d-31533a5ffd80 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80 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-dc37287a-b580-4f8d-ba5d-31533a5ffd80 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-dc37287a-b580-4f8d-ba5d-31533a5ffd80.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-dc37287a-b580-4f8d-ba5d-31533a5ffd80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc37287a-b580-4f8d-ba5d-31533a5ffd80.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-b9eccede-ddb2-4c2d-be62-9705ce18e2b1 {
  margin-left: 6%;
margin-right: 6%;
}
@media (min-width: 1200px){#s-b9eccede-ddb2-4c2d-be62-9705ce18e2b1 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b9eccede-ddb2-4c2d-be62-9705ce18e2b1 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-b9eccede-ddb2-4c2d-be62-9705ce18e2b1 {
  
}
}
#s-b9eccede-ddb2-4c2d-be62-9705ce18e2b1 .shg-proportional-font-size,
#s-b9eccede-ddb2-4c2d-be62-9705ce18e2b1 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-02ab66fd-8594-42c1-b213-65e358ebfa6b {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
height: 550px;
max-width: 300px;
text-align: left;
}
@media (min-width: 1200px){#s-02ab66fd-8594-42c1-b213-65e358ebfa6b {
  height: 425px;
}
}@media (max-width: 767px){#s-02ab66fd-8594-42c1-b213-65e358ebfa6b {
  display: none;
}
#s-02ab66fd-8594-42c1-b213-65e358ebfa6b, #wrap-s-02ab66fd-8594-42c1-b213-65e358ebfa6b, #wrap-content-s-02ab66fd-8594-42c1-b213-65e358ebfa6b { display: none !important; }}
#s-02ab66fd-8594-42c1-b213-65e358ebfa6b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-02ab66fd-8594-42c1-b213-65e358ebfa6b-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-02ab66fd-8594-42c1-b213-65e358ebfa6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 15px;
  
}

#s-02ab66fd-8594-42c1-b213-65e358ebfa6b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 15px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-02ab66fd-8594-42c1-b213-65e358ebfa6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-02ab66fd-8594-42c1-b213-65e358ebfa6b img.shogun-image {
  width: 100%;
  height: 550px;
  
  max-width: 300px;

  /* 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-02ab66fd-8594-42c1-b213-65e358ebfa6b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-02ab66fd-8594-42c1-b213-65e358ebfa6b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-02ab66fd-8594-42c1-b213-65e358ebfa6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-02ab66fd-8594-42c1-b213-65e358ebfa6b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-02ab66fd-8594-42c1-b213-65e358ebfa6b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-02ab66fd-8594-42c1-b213-65e358ebfa6b-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-02ab66fd-8594-42c1-b213-65e358ebfa6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-02ab66fd-8594-42c1-b213-65e358ebfa6b .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-02ab66fd-8594-42c1-b213-65e358ebfa6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-02ab66fd-8594-42c1-b213-65e358ebfa6b img.shogun-image {
  width: 100%;
  height: 425px;
  
  

  /* 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-02ab66fd-8594-42c1-b213-65e358ebfa6b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-02ab66fd-8594-42c1-b213-65e358ebfa6b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-02ab66fd-8594-42c1-b213-65e358ebfa6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-02ab66fd-8594-42c1-b213-65e358ebfa6b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-02ab66fd-8594-42c1-b213-65e358ebfa6b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-02ab66fd-8594-42c1-b213-65e358ebfa6b-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-02ab66fd-8594-42c1-b213-65e358ebfa6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-02ab66fd-8594-42c1-b213-65e358ebfa6b .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-02ab66fd-8594-42c1-b213-65e358ebfa6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-02ab66fd-8594-42c1-b213-65e358ebfa6b 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-02ab66fd-8594-42c1-b213-65e358ebfa6b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-02ab66fd-8594-42c1-b213-65e358ebfa6b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-02ab66fd-8594-42c1-b213-65e358ebfa6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-02ab66fd-8594-42c1-b213-65e358ebfa6b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-02ab66fd-8594-42c1-b213-65e358ebfa6b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-02ab66fd-8594-42c1-b213-65e358ebfa6b-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-02ab66fd-8594-42c1-b213-65e358ebfa6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-02ab66fd-8594-42c1-b213-65e358ebfa6b .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-02ab66fd-8594-42c1-b213-65e358ebfa6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-02ab66fd-8594-42c1-b213-65e358ebfa6b 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-02ab66fd-8594-42c1-b213-65e358ebfa6b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-02ab66fd-8594-42c1-b213-65e358ebfa6b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-02ab66fd-8594-42c1-b213-65e358ebfa6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-02ab66fd-8594-42c1-b213-65e358ebfa6b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-02ab66fd-8594-42c1-b213-65e358ebfa6b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-02ab66fd-8594-42c1-b213-65e358ebfa6b-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-02ab66fd-8594-42c1-b213-65e358ebfa6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-02ab66fd-8594-42c1-b213-65e358ebfa6b .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-02ab66fd-8594-42c1-b213-65e358ebfa6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-02ab66fd-8594-42c1-b213-65e358ebfa6b 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-02ab66fd-8594-42c1-b213-65e358ebfa6b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-02ab66fd-8594-42c1-b213-65e358ebfa6b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-02ab66fd-8594-42c1-b213-65e358ebfa6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-02ab66fd-8594-42c1-b213-65e358ebfa6b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-47036b5d-9038-4e9a-8d30-c0ca4d0be1dd {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-49a791c4-88eb-4bae-b69a-412b0e817ea9 {
  background-repeat: no-repeat;
background-size: cover;
margin-left: auto;
margin-right: auto;
min-height: 50px;
background-position: center center;
}
@media (min-width: 1200px){#s-49a791c4-88eb-4bae-b69a-412b0e817ea9 {
  display: none;
}
#s-49a791c4-88eb-4bae-b69a-412b0e817ea9, #wrap-s-49a791c4-88eb-4bae-b69a-412b0e817ea9, #wrap-content-s-49a791c4-88eb-4bae-b69a-412b0e817ea9 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-49a791c4-88eb-4bae-b69a-412b0e817ea9 {
  display: none;
}
#s-49a791c4-88eb-4bae-b69a-412b0e817ea9, #wrap-s-49a791c4-88eb-4bae-b69a-412b0e817ea9, #wrap-content-s-49a791c4-88eb-4bae-b69a-412b0e817ea9 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-49a791c4-88eb-4bae-b69a-412b0e817ea9 {
  display: none;
}
#s-49a791c4-88eb-4bae-b69a-412b0e817ea9, #wrap-s-49a791c4-88eb-4bae-b69a-412b0e817ea9, #wrap-content-s-49a791c4-88eb-4bae-b69a-412b0e817ea9 { display: none !important; }}
#s-49a791c4-88eb-4bae-b69a-412b0e817ea9 {
  background-image: url(https://i.shgcdn.com/cde4d073-4c88-409c-aa32-2965b4687ff5/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-49a791c4-88eb-4bae-b69a-412b0e817ea9 {
  background-image: url(https://i.shgcdn.com/cde4d073-4c88-409c-aa32-2965b4687ff5/-/resize/480x/);
}
#s-49a791c4-88eb-4bae-b69a-412b0e817ea9.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-49a791c4-88eb-4bae-b69a-412b0e817ea9 {
  background-image: url(https://i.shgcdn.com/cde4d073-4c88-409c-aa32-2965b4687ff5/-/resize/960x/);
}
#s-49a791c4-88eb-4bae-b69a-412b0e817ea9.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-49a791c4-88eb-4bae-b69a-412b0e817ea9 {
  background-image: url(https://i.shgcdn.com/cde4d073-4c88-409c-aa32-2965b4687ff5/-/resize/768x/);
}
#s-49a791c4-88eb-4bae-b69a-412b0e817ea9.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-49a791c4-88eb-4bae-b69a-412b0e817ea9 {
  background-image: url(https://i.shgcdn.com/cde4d073-4c88-409c-aa32-2965b4687ff5/-/resize/1536x/);
}
#s-49a791c4-88eb-4bae-b69a-412b0e817ea9.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-49a791c4-88eb-4bae-b69a-412b0e817ea9 {
  background-image: url(https://i.shgcdn.com/cde4d073-4c88-409c-aa32-2965b4687ff5/-/resize/1024x/);
}
#s-49a791c4-88eb-4bae-b69a-412b0e817ea9.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-49a791c4-88eb-4bae-b69a-412b0e817ea9 {
  background-image: url(https://i.shgcdn.com/cde4d073-4c88-409c-aa32-2965b4687ff5/-/resize/2048x/);
}
#s-49a791c4-88eb-4bae-b69a-412b0e817ea9.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-49a791c4-88eb-4bae-b69a-412b0e817ea9 {
  background-image: url(https://i.shgcdn.com/cde4d073-4c88-409c-aa32-2965b4687ff5/-/resize/1200x/);
}
#s-49a791c4-88eb-4bae-b69a-412b0e817ea9.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-49a791c4-88eb-4bae-b69a-412b0e817ea9 {
  background-image: url(https://i.shgcdn.com/cde4d073-4c88-409c-aa32-2965b4687ff5/-/resize/2048x/);
}
#s-49a791c4-88eb-4bae-b69a-412b0e817ea9.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-49a791c4-88eb-4bae-b69a-412b0e817ea9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-49a791c4-88eb-4bae-b69a-412b0e817ea9.shg-box.shg-c {
  justify-content: center;
}

#s-6184a419-f459-4485-980d-712e4d86d898 {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
padding-left: 1%;
}

#s-6184a419-f459-4485-980d-712e4d86d898 .shg-proportional-font-size,
#s-6184a419-f459-4485-980d-712e4d86d898 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-7e69ae33-c8ea-45bf-b0db-5ca2be26583a {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7e69ae33-c8ea-45bf-b0db-5ca2be26583a .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


@media (max-width: 767px){#s-7e69ae33-c8ea-45bf-b0db-5ca2be26583a .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
#s-d6d7d483-917f-4af2-b251-1993f867a5d6 {
  margin-left: 20%;
margin-right: 20%;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(205, 205, 205, 1);
border-style: none;
border-radius: 15px;
}
@media (max-width: 767px){#s-d6d7d483-917f-4af2-b251-1993f867a5d6 {
  margin-left: 5%;
margin-right: 5%;
}
}
/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-d6d7d483-917f-4af2-b251-1993f867a5d6 {
  --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-d6d7d483-917f-4af2-b251-1993f867a5d6 > .swiper-button-prev,
#slider-v3-s-d6d7d483-917f-4af2-b251-1993f867a5d6 > .swiper-button-next {
  
}

#slider-v3-s-d6d7d483-917f-4af2-b251-1993f867a5d6 > .swiper-button-prev svg,
#slider-v3-s-d6d7d483-917f-4af2-b251-1993f867a5d6 > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-d6d7d483-917f-4af2-b251-1993f867a5d6 > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-d6d7d483-917f-4af2-b251-1993f867a5d6 > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-d6d7d483-917f-4af2-b251-1993f867a5d6 > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-d6d7d483-917f-4af2-b251-1993f867a5d6 .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-d6d7d483-917f-4af2-b251-1993f867a5d6 .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-d6d7d483-917f-4af2-b251-1993f867a5d6 .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-dd25e398-765f-4b5f-bc11-2cb44fc891e4 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 50px;
padding-left: 6%;
padding-bottom: 50px;
padding-right: 6%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(180, 180, 180, 1);
border-style: none;
border-radius: 15px;
min-height: 50px;
}








#s-dd25e398-765f-4b5f-bc11-2cb44fc891e4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-dd25e398-765f-4b5f-bc11-2cb44fc891e4.shg-box.shg-c {
  justify-content: center;
}

#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c-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-44da4215-7e1f-4b4b-bb1a-276e39130a1c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c .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-44da4215-7e1f-4b4b-bb1a-276e39130a1c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c img.shogun-image {
  width: 100%;
  
  
  max-width: 100px;

  /* 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-44da4215-7e1f-4b4b-bb1a-276e39130a1c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-44da4215-7e1f-4b4b-bb1a-276e39130a1c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44da4215-7e1f-4b4b-bb1a-276e39130a1c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c-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-44da4215-7e1f-4b4b-bb1a-276e39130a1c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c .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-44da4215-7e1f-4b4b-bb1a-276e39130a1c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c 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-44da4215-7e1f-4b4b-bb1a-276e39130a1c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-44da4215-7e1f-4b4b-bb1a-276e39130a1c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44da4215-7e1f-4b4b-bb1a-276e39130a1c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c-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-44da4215-7e1f-4b4b-bb1a-276e39130a1c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c .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-44da4215-7e1f-4b4b-bb1a-276e39130a1c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c 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-44da4215-7e1f-4b4b-bb1a-276e39130a1c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-44da4215-7e1f-4b4b-bb1a-276e39130a1c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44da4215-7e1f-4b4b-bb1a-276e39130a1c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c-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-44da4215-7e1f-4b4b-bb1a-276e39130a1c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c .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-44da4215-7e1f-4b4b-bb1a-276e39130a1c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c 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-44da4215-7e1f-4b4b-bb1a-276e39130a1c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-44da4215-7e1f-4b4b-bb1a-276e39130a1c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44da4215-7e1f-4b4b-bb1a-276e39130a1c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c-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-44da4215-7e1f-4b4b-bb1a-276e39130a1c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c .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-44da4215-7e1f-4b4b-bb1a-276e39130a1c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c 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-44da4215-7e1f-4b4b-bb1a-276e39130a1c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-44da4215-7e1f-4b4b-bb1a-276e39130a1c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44da4215-7e1f-4b4b-bb1a-276e39130a1c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44da4215-7e1f-4b4b-bb1a-276e39130a1c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-a5a96082-9c63-4f35-9c75-e3a789e31683 {
  margin-left: auto;
margin-right: auto;
}

#s-a5a96082-9c63-4f35-9c75-e3a789e31683 .shg-proportional-font-size,
#s-a5a96082-9c63-4f35-9c75-e3a789e31683 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-cb1c1f8c-0a1e-49f4-8635-770112956c04 {
  margin-left: auto;
margin-right: auto;
}

#s-cb1c1f8c-0a1e-49f4-8635-770112956c04 .shg-proportional-font-size,
#s-cb1c1f8c-0a1e-49f4-8635-770112956c04 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-3c3f5b54-daaf-49bf-a9e2-77b0e42fa1df {
  margin-left: 0%;
margin-right: 0%;
padding-top: 50px;
padding-left: 6%;
padding-bottom: 50px;
padding-right: 6%;
border-color: rgba(180, 180, 180, 1);
border-style: none;
border-radius: 15px;
min-height: 50px;
}








#s-3c3f5b54-daaf-49bf-a9e2-77b0e42fa1df > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3c3f5b54-daaf-49bf-a9e2-77b0e42fa1df.shg-box.shg-c {
  justify-content: center;
}

#s-9e377c0b-2b11-4615-b134-bd8cda87a254 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-9e377c0b-2b11-4615-b134-bd8cda87a254 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9e377c0b-2b11-4615-b134-bd8cda87a254-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-9e377c0b-2b11-4615-b134-bd8cda87a254 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9e377c0b-2b11-4615-b134-bd8cda87a254 .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-9e377c0b-2b11-4615-b134-bd8cda87a254 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9e377c0b-2b11-4615-b134-bd8cda87a254 img.shogun-image {
  width: 100%;
  
  
  max-width: 100px;

  /* 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-9e377c0b-2b11-4615-b134-bd8cda87a254 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9e377c0b-2b11-4615-b134-bd8cda87a254.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e377c0b-2b11-4615-b134-bd8cda87a254.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e377c0b-2b11-4615-b134-bd8cda87a254.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-9e377c0b-2b11-4615-b134-bd8cda87a254 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9e377c0b-2b11-4615-b134-bd8cda87a254-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-9e377c0b-2b11-4615-b134-bd8cda87a254 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9e377c0b-2b11-4615-b134-bd8cda87a254 .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-9e377c0b-2b11-4615-b134-bd8cda87a254 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9e377c0b-2b11-4615-b134-bd8cda87a254 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-9e377c0b-2b11-4615-b134-bd8cda87a254 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9e377c0b-2b11-4615-b134-bd8cda87a254.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e377c0b-2b11-4615-b134-bd8cda87a254.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e377c0b-2b11-4615-b134-bd8cda87a254.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-9e377c0b-2b11-4615-b134-bd8cda87a254 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9e377c0b-2b11-4615-b134-bd8cda87a254-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-9e377c0b-2b11-4615-b134-bd8cda87a254 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9e377c0b-2b11-4615-b134-bd8cda87a254 .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-9e377c0b-2b11-4615-b134-bd8cda87a254 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9e377c0b-2b11-4615-b134-bd8cda87a254 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-9e377c0b-2b11-4615-b134-bd8cda87a254 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9e377c0b-2b11-4615-b134-bd8cda87a254.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e377c0b-2b11-4615-b134-bd8cda87a254.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e377c0b-2b11-4615-b134-bd8cda87a254.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-9e377c0b-2b11-4615-b134-bd8cda87a254 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9e377c0b-2b11-4615-b134-bd8cda87a254-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-9e377c0b-2b11-4615-b134-bd8cda87a254 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9e377c0b-2b11-4615-b134-bd8cda87a254 .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-9e377c0b-2b11-4615-b134-bd8cda87a254 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9e377c0b-2b11-4615-b134-bd8cda87a254 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-9e377c0b-2b11-4615-b134-bd8cda87a254 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9e377c0b-2b11-4615-b134-bd8cda87a254.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e377c0b-2b11-4615-b134-bd8cda87a254.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e377c0b-2b11-4615-b134-bd8cda87a254.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-9e377c0b-2b11-4615-b134-bd8cda87a254 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9e377c0b-2b11-4615-b134-bd8cda87a254-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-9e377c0b-2b11-4615-b134-bd8cda87a254 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9e377c0b-2b11-4615-b134-bd8cda87a254 .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-9e377c0b-2b11-4615-b134-bd8cda87a254 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9e377c0b-2b11-4615-b134-bd8cda87a254 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-9e377c0b-2b11-4615-b134-bd8cda87a254 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9e377c0b-2b11-4615-b134-bd8cda87a254.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e377c0b-2b11-4615-b134-bd8cda87a254.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e377c0b-2b11-4615-b134-bd8cda87a254.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-39e39813-5391-4a43-8a22-60769e759cc9 {
  margin-left: auto;
margin-right: auto;
}

#s-39e39813-5391-4a43-8a22-60769e759cc9 .shg-proportional-font-size,
#s-39e39813-5391-4a43-8a22-60769e759cc9 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-2a9cb292-5176-4956-af5c-b3c18d563cb5 {
  margin-left: auto;
margin-right: auto;
}

#s-2a9cb292-5176-4956-af5c-b3c18d563cb5 .shg-proportional-font-size,
#s-2a9cb292-5176-4956-af5c-b3c18d563cb5 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-694fef5b-92d1-4b55-92a3-89262dd8b3e6 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 50px;
padding-left: 6%;
padding-bottom: 50px;
padding-right: 6%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(180, 180, 180, 1);
border-style: none;
border-radius: 15px;
min-height: 100px;
}








#s-694fef5b-92d1-4b55-92a3-89262dd8b3e6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-694fef5b-92d1-4b55-92a3-89262dd8b3e6.shg-box.shg-c {
  justify-content: center;
}

#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367-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-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 .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-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 img.shogun-image {
  width: 100%;
  
  
  max-width: 100px;

  /* 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-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367.shg-align-container {
  display: flex;
  justify-content: center
}

.s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367-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-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 .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-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 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-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367.shg-align-container {
  display: flex;
  justify-content: center
}

.s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367-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-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 .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-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 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-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367.shg-align-container {
  display: flex;
  justify-content: center
}

.s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367-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-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 .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-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 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-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367.shg-align-container {
  display: flex;
  justify-content: center
}

.s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367-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-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 .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-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 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-01c37c23-70b0-4cb4-9ebf-9d8d84c57367 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367.shg-align-container {
  display: flex;
  justify-content: center
}

.s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-01c37c23-70b0-4cb4-9ebf-9d8d84c57367.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-cd8b4dc6-dbdf-41c4-9122-bdbb9456f2e5 {
  margin-left: auto;
margin-right: auto;
}

#s-cd8b4dc6-dbdf-41c4-9122-bdbb9456f2e5 .shg-proportional-font-size,
#s-cd8b4dc6-dbdf-41c4-9122-bdbb9456f2e5 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-0eb224dd-807b-486b-ab90-1afbc9105e4f {
  margin-left: auto;
margin-right: auto;
}

#s-0eb224dd-807b-486b-ab90-1afbc9105e4f .shg-proportional-font-size,
#s-0eb224dd-807b-486b-ab90-1afbc9105e4f .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2-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-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 10px;
  
}

#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 .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-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 img.shogun-image {
  width: 100%;
  
  
  max-width: 100px;

  /* 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-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2-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-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 .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-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 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-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2-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-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 .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-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 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-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2-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-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 .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-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 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-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2-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-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 .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-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 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-000c3e8c-5e98-4e35-af8f-8226ecec0ac2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-000c3e8c-5e98-4e35-af8f-8226ecec0ac2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-fcb0c824-95fb-4d2d-b9a5-73b1adcb25fa {
  margin-left: 0%;
margin-right: 0%;
padding-top: 50px;
padding-left: 6%;
padding-bottom: 50px;
padding-right: 6%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(180, 180, 180, 1);
border-style: none;
border-radius: 15px;
min-height: 50px;
}








#s-fcb0c824-95fb-4d2d-b9a5-73b1adcb25fa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fcb0c824-95fb-4d2d-b9a5-73b1adcb25fa.shg-box.shg-c {
  justify-content: center;
}

#s-cac3e2db-a73d-4536-a872-f8e9492caa04 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-cac3e2db-a73d-4536-a872-f8e9492caa04 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cac3e2db-a73d-4536-a872-f8e9492caa04-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-cac3e2db-a73d-4536-a872-f8e9492caa04 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cac3e2db-a73d-4536-a872-f8e9492caa04 .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-cac3e2db-a73d-4536-a872-f8e9492caa04 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cac3e2db-a73d-4536-a872-f8e9492caa04 img.shogun-image {
  width: 100%;
  
  
  max-width: 100px;

  /* 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-cac3e2db-a73d-4536-a872-f8e9492caa04 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cac3e2db-a73d-4536-a872-f8e9492caa04.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cac3e2db-a73d-4536-a872-f8e9492caa04.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cac3e2db-a73d-4536-a872-f8e9492caa04.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-cac3e2db-a73d-4536-a872-f8e9492caa04 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cac3e2db-a73d-4536-a872-f8e9492caa04-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-cac3e2db-a73d-4536-a872-f8e9492caa04 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cac3e2db-a73d-4536-a872-f8e9492caa04 .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-cac3e2db-a73d-4536-a872-f8e9492caa04 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cac3e2db-a73d-4536-a872-f8e9492caa04 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-cac3e2db-a73d-4536-a872-f8e9492caa04 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cac3e2db-a73d-4536-a872-f8e9492caa04.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cac3e2db-a73d-4536-a872-f8e9492caa04.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cac3e2db-a73d-4536-a872-f8e9492caa04.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-cac3e2db-a73d-4536-a872-f8e9492caa04 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cac3e2db-a73d-4536-a872-f8e9492caa04-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-cac3e2db-a73d-4536-a872-f8e9492caa04 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cac3e2db-a73d-4536-a872-f8e9492caa04 .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-cac3e2db-a73d-4536-a872-f8e9492caa04 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cac3e2db-a73d-4536-a872-f8e9492caa04 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-cac3e2db-a73d-4536-a872-f8e9492caa04 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cac3e2db-a73d-4536-a872-f8e9492caa04.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cac3e2db-a73d-4536-a872-f8e9492caa04.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cac3e2db-a73d-4536-a872-f8e9492caa04.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-cac3e2db-a73d-4536-a872-f8e9492caa04 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cac3e2db-a73d-4536-a872-f8e9492caa04-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-cac3e2db-a73d-4536-a872-f8e9492caa04 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cac3e2db-a73d-4536-a872-f8e9492caa04 .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-cac3e2db-a73d-4536-a872-f8e9492caa04 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cac3e2db-a73d-4536-a872-f8e9492caa04 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-cac3e2db-a73d-4536-a872-f8e9492caa04 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cac3e2db-a73d-4536-a872-f8e9492caa04.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cac3e2db-a73d-4536-a872-f8e9492caa04.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cac3e2db-a73d-4536-a872-f8e9492caa04.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-cac3e2db-a73d-4536-a872-f8e9492caa04 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cac3e2db-a73d-4536-a872-f8e9492caa04-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-cac3e2db-a73d-4536-a872-f8e9492caa04 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cac3e2db-a73d-4536-a872-f8e9492caa04 .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-cac3e2db-a73d-4536-a872-f8e9492caa04 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cac3e2db-a73d-4536-a872-f8e9492caa04 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-cac3e2db-a73d-4536-a872-f8e9492caa04 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cac3e2db-a73d-4536-a872-f8e9492caa04.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cac3e2db-a73d-4536-a872-f8e9492caa04.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cac3e2db-a73d-4536-a872-f8e9492caa04.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-9b7e869c-fe27-4e49-b734-3c26a97d75c5 {
  margin-left: auto;
margin-right: auto;
}

#s-9b7e869c-fe27-4e49-b734-3c26a97d75c5 .shg-proportional-font-size,
#s-9b7e869c-fe27-4e49-b734-3c26a97d75c5 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-69f007e8-874a-4edd-afad-fc55001db507 {
  margin-left: auto;
margin-right: auto;
}

#s-69f007e8-874a-4edd-afad-fc55001db507 .shg-proportional-font-size,
#s-69f007e8-874a-4edd-afad-fc55001db507 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-f850dd98-bcad-497d-8c12-79e531c30714 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-f850dd98-bcad-497d-8c12-79e531c30714 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f850dd98-bcad-497d-8c12-79e531c30714-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-f850dd98-bcad-497d-8c12-79e531c30714 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 10px;
  
}

#s-f850dd98-bcad-497d-8c12-79e531c30714 .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-f850dd98-bcad-497d-8c12-79e531c30714 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f850dd98-bcad-497d-8c12-79e531c30714 img.shogun-image {
  width: 100%;
  
  
  max-width: 100px;

  /* 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-f850dd98-bcad-497d-8c12-79e531c30714 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f850dd98-bcad-497d-8c12-79e531c30714.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f850dd98-bcad-497d-8c12-79e531c30714.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f850dd98-bcad-497d-8c12-79e531c30714.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-f850dd98-bcad-497d-8c12-79e531c30714 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f850dd98-bcad-497d-8c12-79e531c30714-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-f850dd98-bcad-497d-8c12-79e531c30714 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f850dd98-bcad-497d-8c12-79e531c30714 .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-f850dd98-bcad-497d-8c12-79e531c30714 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f850dd98-bcad-497d-8c12-79e531c30714 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-f850dd98-bcad-497d-8c12-79e531c30714 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f850dd98-bcad-497d-8c12-79e531c30714.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f850dd98-bcad-497d-8c12-79e531c30714.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f850dd98-bcad-497d-8c12-79e531c30714.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-f850dd98-bcad-497d-8c12-79e531c30714 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f850dd98-bcad-497d-8c12-79e531c30714-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-f850dd98-bcad-497d-8c12-79e531c30714 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f850dd98-bcad-497d-8c12-79e531c30714 .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-f850dd98-bcad-497d-8c12-79e531c30714 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f850dd98-bcad-497d-8c12-79e531c30714 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-f850dd98-bcad-497d-8c12-79e531c30714 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f850dd98-bcad-497d-8c12-79e531c30714.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f850dd98-bcad-497d-8c12-79e531c30714.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f850dd98-bcad-497d-8c12-79e531c30714.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-f850dd98-bcad-497d-8c12-79e531c30714 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f850dd98-bcad-497d-8c12-79e531c30714-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-f850dd98-bcad-497d-8c12-79e531c30714 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f850dd98-bcad-497d-8c12-79e531c30714 .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-f850dd98-bcad-497d-8c12-79e531c30714 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f850dd98-bcad-497d-8c12-79e531c30714 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-f850dd98-bcad-497d-8c12-79e531c30714 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f850dd98-bcad-497d-8c12-79e531c30714.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f850dd98-bcad-497d-8c12-79e531c30714.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f850dd98-bcad-497d-8c12-79e531c30714.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-f850dd98-bcad-497d-8c12-79e531c30714 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f850dd98-bcad-497d-8c12-79e531c30714-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-f850dd98-bcad-497d-8c12-79e531c30714 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f850dd98-bcad-497d-8c12-79e531c30714 .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-f850dd98-bcad-497d-8c12-79e531c30714 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f850dd98-bcad-497d-8c12-79e531c30714 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-f850dd98-bcad-497d-8c12-79e531c30714 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f850dd98-bcad-497d-8c12-79e531c30714.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f850dd98-bcad-497d-8c12-79e531c30714.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f850dd98-bcad-497d-8c12-79e531c30714.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-4d7dece5-7f30-4933-92c6-449252e1c3d4 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 50px;
padding-left: 6%;
padding-bottom: 50px;
padding-right: 6%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(180, 180, 180, 1);
border-style: none;
border-radius: 15px;
min-height: 50px;
}








#s-4d7dece5-7f30-4933-92c6-449252e1c3d4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4d7dece5-7f30-4933-92c6-449252e1c3d4.shg-box.shg-c {
  justify-content: center;
}

#s-94248793-fb8f-4686-87e0-4d66976c5abf {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-94248793-fb8f-4686-87e0-4d66976c5abf {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-94248793-fb8f-4686-87e0-4d66976c5abf-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-94248793-fb8f-4686-87e0-4d66976c5abf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-94248793-fb8f-4686-87e0-4d66976c5abf .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-94248793-fb8f-4686-87e0-4d66976c5abf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-94248793-fb8f-4686-87e0-4d66976c5abf img.shogun-image {
  width: 100%;
  
  
  max-width: 100px;

  /* 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-94248793-fb8f-4686-87e0-4d66976c5abf .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-94248793-fb8f-4686-87e0-4d66976c5abf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94248793-fb8f-4686-87e0-4d66976c5abf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94248793-fb8f-4686-87e0-4d66976c5abf.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-94248793-fb8f-4686-87e0-4d66976c5abf {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-94248793-fb8f-4686-87e0-4d66976c5abf-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-94248793-fb8f-4686-87e0-4d66976c5abf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-94248793-fb8f-4686-87e0-4d66976c5abf .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-94248793-fb8f-4686-87e0-4d66976c5abf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-94248793-fb8f-4686-87e0-4d66976c5abf 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-94248793-fb8f-4686-87e0-4d66976c5abf .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-94248793-fb8f-4686-87e0-4d66976c5abf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94248793-fb8f-4686-87e0-4d66976c5abf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94248793-fb8f-4686-87e0-4d66976c5abf.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-94248793-fb8f-4686-87e0-4d66976c5abf {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-94248793-fb8f-4686-87e0-4d66976c5abf-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-94248793-fb8f-4686-87e0-4d66976c5abf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-94248793-fb8f-4686-87e0-4d66976c5abf .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-94248793-fb8f-4686-87e0-4d66976c5abf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-94248793-fb8f-4686-87e0-4d66976c5abf 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-94248793-fb8f-4686-87e0-4d66976c5abf .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-94248793-fb8f-4686-87e0-4d66976c5abf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94248793-fb8f-4686-87e0-4d66976c5abf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94248793-fb8f-4686-87e0-4d66976c5abf.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-94248793-fb8f-4686-87e0-4d66976c5abf {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-94248793-fb8f-4686-87e0-4d66976c5abf-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-94248793-fb8f-4686-87e0-4d66976c5abf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-94248793-fb8f-4686-87e0-4d66976c5abf .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-94248793-fb8f-4686-87e0-4d66976c5abf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-94248793-fb8f-4686-87e0-4d66976c5abf 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-94248793-fb8f-4686-87e0-4d66976c5abf .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-94248793-fb8f-4686-87e0-4d66976c5abf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94248793-fb8f-4686-87e0-4d66976c5abf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94248793-fb8f-4686-87e0-4d66976c5abf.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-94248793-fb8f-4686-87e0-4d66976c5abf {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-94248793-fb8f-4686-87e0-4d66976c5abf-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-94248793-fb8f-4686-87e0-4d66976c5abf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-94248793-fb8f-4686-87e0-4d66976c5abf .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-94248793-fb8f-4686-87e0-4d66976c5abf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-94248793-fb8f-4686-87e0-4d66976c5abf 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-94248793-fb8f-4686-87e0-4d66976c5abf .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-94248793-fb8f-4686-87e0-4d66976c5abf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94248793-fb8f-4686-87e0-4d66976c5abf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94248793-fb8f-4686-87e0-4d66976c5abf.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-4657b67e-27fb-429e-864c-fcb9874641c1 {
  margin-left: auto;
margin-right: auto;
}

#s-4657b67e-27fb-429e-864c-fcb9874641c1 .shg-proportional-font-size,
#s-4657b67e-27fb-429e-864c-fcb9874641c1 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-fd1f8e85-d177-444c-970d-1942ee5bc35d {
  margin-left: auto;
margin-right: auto;
}

#s-fd1f8e85-d177-444c-970d-1942ee5bc35d .shg-proportional-font-size,
#s-fd1f8e85-d177-444c-970d-1942ee5bc35d .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7-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-6923cf3d-e085-4afc-bbd0-6138a43e57e7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 10px;
  
}

#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7 .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-6923cf3d-e085-4afc-bbd0-6138a43e57e7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7 img.shogun-image {
  width: 100%;
  
  
  max-width: 100px;

  /* 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-6923cf3d-e085-4afc-bbd0-6138a43e57e7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6923cf3d-e085-4afc-bbd0-6138a43e57e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6923cf3d-e085-4afc-bbd0-6138a43e57e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7-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-6923cf3d-e085-4afc-bbd0-6138a43e57e7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7 .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-6923cf3d-e085-4afc-bbd0-6138a43e57e7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7 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-6923cf3d-e085-4afc-bbd0-6138a43e57e7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6923cf3d-e085-4afc-bbd0-6138a43e57e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6923cf3d-e085-4afc-bbd0-6138a43e57e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7-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-6923cf3d-e085-4afc-bbd0-6138a43e57e7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7 .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-6923cf3d-e085-4afc-bbd0-6138a43e57e7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7 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-6923cf3d-e085-4afc-bbd0-6138a43e57e7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6923cf3d-e085-4afc-bbd0-6138a43e57e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6923cf3d-e085-4afc-bbd0-6138a43e57e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7-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-6923cf3d-e085-4afc-bbd0-6138a43e57e7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7 .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-6923cf3d-e085-4afc-bbd0-6138a43e57e7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7 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-6923cf3d-e085-4afc-bbd0-6138a43e57e7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6923cf3d-e085-4afc-bbd0-6138a43e57e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6923cf3d-e085-4afc-bbd0-6138a43e57e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7-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-6923cf3d-e085-4afc-bbd0-6138a43e57e7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7 .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-6923cf3d-e085-4afc-bbd0-6138a43e57e7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7 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-6923cf3d-e085-4afc-bbd0-6138a43e57e7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6923cf3d-e085-4afc-bbd0-6138a43e57e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6923cf3d-e085-4afc-bbd0-6138a43e57e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6923cf3d-e085-4afc-bbd0-6138a43e57e7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-eeee4bd1-fdc9-4354-b122-a4095024a7e4 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 50px;
padding-left: 6%;
padding-bottom: 50px;
padding-right: 6%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(180, 180, 180, 1);
border-style: none;
border-radius: 15px;
min-height: 50px;
}








#s-eeee4bd1-fdc9-4354-b122-a4095024a7e4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-eeee4bd1-fdc9-4354-b122-a4095024a7e4.shg-box.shg-c {
  justify-content: center;
}

#s-0658cfb0-e048-4172-997a-5e6c6a3977a7 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-0658cfb0-e048-4172-997a-5e6c6a3977a7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0658cfb0-e048-4172-997a-5e6c6a3977a7-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-0658cfb0-e048-4172-997a-5e6c6a3977a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0658cfb0-e048-4172-997a-5e6c6a3977a7 .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-0658cfb0-e048-4172-997a-5e6c6a3977a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-0658cfb0-e048-4172-997a-5e6c6a3977a7 img.shogun-image {
  width: 100%;
  
  
  max-width: 100px;

  /* 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-0658cfb0-e048-4172-997a-5e6c6a3977a7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-0658cfb0-e048-4172-997a-5e6c6a3977a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0658cfb0-e048-4172-997a-5e6c6a3977a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0658cfb0-e048-4172-997a-5e6c6a3977a7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-0658cfb0-e048-4172-997a-5e6c6a3977a7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0658cfb0-e048-4172-997a-5e6c6a3977a7-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-0658cfb0-e048-4172-997a-5e6c6a3977a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0658cfb0-e048-4172-997a-5e6c6a3977a7 .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-0658cfb0-e048-4172-997a-5e6c6a3977a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-0658cfb0-e048-4172-997a-5e6c6a3977a7 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-0658cfb0-e048-4172-997a-5e6c6a3977a7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-0658cfb0-e048-4172-997a-5e6c6a3977a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0658cfb0-e048-4172-997a-5e6c6a3977a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0658cfb0-e048-4172-997a-5e6c6a3977a7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-0658cfb0-e048-4172-997a-5e6c6a3977a7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0658cfb0-e048-4172-997a-5e6c6a3977a7-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-0658cfb0-e048-4172-997a-5e6c6a3977a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0658cfb0-e048-4172-997a-5e6c6a3977a7 .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-0658cfb0-e048-4172-997a-5e6c6a3977a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-0658cfb0-e048-4172-997a-5e6c6a3977a7 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-0658cfb0-e048-4172-997a-5e6c6a3977a7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-0658cfb0-e048-4172-997a-5e6c6a3977a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0658cfb0-e048-4172-997a-5e6c6a3977a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0658cfb0-e048-4172-997a-5e6c6a3977a7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-0658cfb0-e048-4172-997a-5e6c6a3977a7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0658cfb0-e048-4172-997a-5e6c6a3977a7-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-0658cfb0-e048-4172-997a-5e6c6a3977a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0658cfb0-e048-4172-997a-5e6c6a3977a7 .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-0658cfb0-e048-4172-997a-5e6c6a3977a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-0658cfb0-e048-4172-997a-5e6c6a3977a7 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-0658cfb0-e048-4172-997a-5e6c6a3977a7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-0658cfb0-e048-4172-997a-5e6c6a3977a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0658cfb0-e048-4172-997a-5e6c6a3977a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0658cfb0-e048-4172-997a-5e6c6a3977a7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-0658cfb0-e048-4172-997a-5e6c6a3977a7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0658cfb0-e048-4172-997a-5e6c6a3977a7-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-0658cfb0-e048-4172-997a-5e6c6a3977a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0658cfb0-e048-4172-997a-5e6c6a3977a7 .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-0658cfb0-e048-4172-997a-5e6c6a3977a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-0658cfb0-e048-4172-997a-5e6c6a3977a7 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-0658cfb0-e048-4172-997a-5e6c6a3977a7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-0658cfb0-e048-4172-997a-5e6c6a3977a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0658cfb0-e048-4172-997a-5e6c6a3977a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0658cfb0-e048-4172-997a-5e6c6a3977a7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-1cb87aa7-97c4-4abc-bfb0-960298d202e0 {
  margin-left: auto;
margin-right: auto;
}

#s-1cb87aa7-97c4-4abc-bfb0-960298d202e0 .shg-proportional-font-size,
#s-1cb87aa7-97c4-4abc-bfb0-960298d202e0 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-c0ac6045-58df-4dd7-a193-73176081cd1c {
  margin-left: auto;
margin-right: auto;
}

#s-c0ac6045-58df-4dd7-a193-73176081cd1c .shg-proportional-font-size,
#s-c0ac6045-58df-4dd7-a193-73176081cd1c .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-755d3347-ff45-4f80-909b-87fab3a748de {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-755d3347-ff45-4f80-909b-87fab3a748de {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-755d3347-ff45-4f80-909b-87fab3a748de-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-755d3347-ff45-4f80-909b-87fab3a748de {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 10px;
  
}

#s-755d3347-ff45-4f80-909b-87fab3a748de .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-755d3347-ff45-4f80-909b-87fab3a748de {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-755d3347-ff45-4f80-909b-87fab3a748de img.shogun-image {
  width: 100%;
  
  
  max-width: 100px;

  /* 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-755d3347-ff45-4f80-909b-87fab3a748de .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-755d3347-ff45-4f80-909b-87fab3a748de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-755d3347-ff45-4f80-909b-87fab3a748de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-755d3347-ff45-4f80-909b-87fab3a748de.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-755d3347-ff45-4f80-909b-87fab3a748de {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-755d3347-ff45-4f80-909b-87fab3a748de-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-755d3347-ff45-4f80-909b-87fab3a748de {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-755d3347-ff45-4f80-909b-87fab3a748de .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-755d3347-ff45-4f80-909b-87fab3a748de {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-755d3347-ff45-4f80-909b-87fab3a748de 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-755d3347-ff45-4f80-909b-87fab3a748de .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-755d3347-ff45-4f80-909b-87fab3a748de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-755d3347-ff45-4f80-909b-87fab3a748de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-755d3347-ff45-4f80-909b-87fab3a748de.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-755d3347-ff45-4f80-909b-87fab3a748de {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-755d3347-ff45-4f80-909b-87fab3a748de-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-755d3347-ff45-4f80-909b-87fab3a748de {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-755d3347-ff45-4f80-909b-87fab3a748de .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-755d3347-ff45-4f80-909b-87fab3a748de {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-755d3347-ff45-4f80-909b-87fab3a748de 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-755d3347-ff45-4f80-909b-87fab3a748de .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-755d3347-ff45-4f80-909b-87fab3a748de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-755d3347-ff45-4f80-909b-87fab3a748de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-755d3347-ff45-4f80-909b-87fab3a748de.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-755d3347-ff45-4f80-909b-87fab3a748de {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-755d3347-ff45-4f80-909b-87fab3a748de-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-755d3347-ff45-4f80-909b-87fab3a748de {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-755d3347-ff45-4f80-909b-87fab3a748de .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-755d3347-ff45-4f80-909b-87fab3a748de {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-755d3347-ff45-4f80-909b-87fab3a748de 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-755d3347-ff45-4f80-909b-87fab3a748de .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-755d3347-ff45-4f80-909b-87fab3a748de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-755d3347-ff45-4f80-909b-87fab3a748de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-755d3347-ff45-4f80-909b-87fab3a748de.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-755d3347-ff45-4f80-909b-87fab3a748de {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-755d3347-ff45-4f80-909b-87fab3a748de-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-755d3347-ff45-4f80-909b-87fab3a748de {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-755d3347-ff45-4f80-909b-87fab3a748de .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-755d3347-ff45-4f80-909b-87fab3a748de {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-755d3347-ff45-4f80-909b-87fab3a748de 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-755d3347-ff45-4f80-909b-87fab3a748de .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-755d3347-ff45-4f80-909b-87fab3a748de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-755d3347-ff45-4f80-909b-87fab3a748de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-755d3347-ff45-4f80-909b-87fab3a748de.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-9121e3b6-2ed9-4d00-b55d-09ef12ac3053 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-cd2125a2-31c6-458f-abb9-d0d388786eb8 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-30128df5-3a1a-41ba-bbbd-a28e83b56c8b {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-30128df5-3a1a-41ba-bbbd-a28e83b56c8b {
  display: none;
}
#s-30128df5-3a1a-41ba-bbbd-a28e83b56c8b, #wrap-s-30128df5-3a1a-41ba-bbbd-a28e83b56c8b, #wrap-content-s-30128df5-3a1a-41ba-bbbd-a28e83b56c8b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-30128df5-3a1a-41ba-bbbd-a28e83b56c8b {
  display: none;
}
#s-30128df5-3a1a-41ba-bbbd-a28e83b56c8b, #wrap-s-30128df5-3a1a-41ba-bbbd-a28e83b56c8b, #wrap-content-s-30128df5-3a1a-41ba-bbbd-a28e83b56c8b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-30128df5-3a1a-41ba-bbbd-a28e83b56c8b {
  display: none;
}
#s-30128df5-3a1a-41ba-bbbd-a28e83b56c8b, #wrap-s-30128df5-3a1a-41ba-bbbd-a28e83b56c8b, #wrap-content-s-30128df5-3a1a-41ba-bbbd-a28e83b56c8b { display: none !important; }}







#s-30128df5-3a1a-41ba-bbbd-a28e83b56c8b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-30128df5-3a1a-41ba-bbbd-a28e83b56c8b.shg-box.shg-c {
  justify-content: center;
}

#s-f74cf747-4c24-4241-b8b6-a251dfe7968d {
  margin-top: 50px;
margin-left: 15%;
margin-bottom: 50px;
margin-right: 15%;
}
@media (min-width: 1200px){#s-f74cf747-4c24-4241-b8b6-a251dfe7968d {
  display: none;
}
#s-f74cf747-4c24-4241-b8b6-a251dfe7968d, #wrap-s-f74cf747-4c24-4241-b8b6-a251dfe7968d, #wrap-content-s-f74cf747-4c24-4241-b8b6-a251dfe7968d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f74cf747-4c24-4241-b8b6-a251dfe7968d {
  display: none;
}
#s-f74cf747-4c24-4241-b8b6-a251dfe7968d, #wrap-s-f74cf747-4c24-4241-b8b6-a251dfe7968d, #wrap-content-s-f74cf747-4c24-4241-b8b6-a251dfe7968d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f74cf747-4c24-4241-b8b6-a251dfe7968d {
  display: none;
}
#s-f74cf747-4c24-4241-b8b6-a251dfe7968d, #wrap-s-f74cf747-4c24-4241-b8b6-a251dfe7968d, #wrap-content-s-f74cf747-4c24-4241-b8b6-a251dfe7968d { display: none !important; }}@media (max-width: 767px){#s-f74cf747-4c24-4241-b8b6-a251dfe7968d {
  margin-left: 3%;
margin-right: 3%;
}
}
@media (min-width: 0px) {
[id="s-f74cf747-4c24-4241-b8b6-a251dfe7968d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f74cf747-4c24-4241-b8b6-a251dfe7968d"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-f74cf747-4c24-4241-b8b6-a251dfe7968d"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f74cf747-4c24-4241-b8b6-a251dfe7968d"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-f74cf747-4c24-4241-b8b6-a251dfe7968d"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f74cf747-4c24-4241-b8b6-a251dfe7968d"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-f74cf747-4c24-4241-b8b6-a251dfe7968d"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

}

#s-ced4f389-bff9-482e-9ff8-db5ab069ba06 {
  margin-left: auto;
margin-right: auto;
padding-left: 1%;
}

#s-ced4f389-bff9-482e-9ff8-db5ab069ba06 .shg-proportional-font-size,
#s-ced4f389-bff9-482e-9ff8-db5ab069ba06 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-b93ed9a5-fe4a-4041-abeb-d02426255c26 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-b93ed9a5-fe4a-4041-abeb-d02426255c26 .shogun-heading-component h1 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


@media (max-width: 767px){#s-b93ed9a5-fe4a-4041-abeb-d02426255c26 .shogun-heading-component h1 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
#s-31bd7812-9526-4e12-b3c3-b3017073f304 {
  margin-top: -30px;
margin-left: 0%;
margin-right: 0%;
}
@media (max-width: 767px){#s-31bd7812-9526-4e12-b3c3-b3017073f304 {
  margin-top: -20px;
}
}
#s-31bd7812-9526-4e12-b3c3-b3017073f304 .shg-proportional-font-size,
#s-31bd7812-9526-4e12-b3c3-b3017073f304 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 450px;
text-align: center;
}
@media (min-width: 1200px){#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 {
  display: none;
}
#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8, #wrap-s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8, #wrap-content-s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 {
  display: none;
}
#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8, #wrap-s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8, #wrap-content-s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 {
  display: none;
}
#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8, #wrap-s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8, #wrap-content-s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 { display: none !important; }}
#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8-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-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 0px;
}

#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 15px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 img.shogun-image {
  width: 100%;
  
  
  max-width: 450px;

  /* 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-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8-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-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 .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-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 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-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8-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-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 .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-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 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-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8-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-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 .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-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 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-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8-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-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 .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-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 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-f3f42e64-fcac-49a5-a653-325d1e1cf3f8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3f42e64-fcac-49a5-a653-325d1e1cf3f8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-4a53ab37-812b-4031-9c7a-d1bf06ad8aa5 {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-4a53ab37-812b-4031-9c7a-d1bf06ad8aa5 {
  display: none;
}
#s-4a53ab37-812b-4031-9c7a-d1bf06ad8aa5, #wrap-s-4a53ab37-812b-4031-9c7a-d1bf06ad8aa5, #wrap-content-s-4a53ab37-812b-4031-9c7a-d1bf06ad8aa5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4a53ab37-812b-4031-9c7a-d1bf06ad8aa5 {
  display: none;
}
#s-4a53ab37-812b-4031-9c7a-d1bf06ad8aa5, #wrap-s-4a53ab37-812b-4031-9c7a-d1bf06ad8aa5, #wrap-content-s-4a53ab37-812b-4031-9c7a-d1bf06ad8aa5 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4a53ab37-812b-4031-9c7a-d1bf06ad8aa5 {
  display: none;
}
#s-4a53ab37-812b-4031-9c7a-d1bf06ad8aa5, #wrap-s-4a53ab37-812b-4031-9c7a-d1bf06ad8aa5, #wrap-content-s-4a53ab37-812b-4031-9c7a-d1bf06ad8aa5 { display: none !important; }}
@media (min-width: 0px) {
[id="s-4a53ab37-812b-4031-9c7a-d1bf06ad8aa5"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-4a53ab37-812b-4031-9c7a-d1bf06ad8aa5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-4a53ab37-812b-4031-9c7a-d1bf06ad8aa5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-4a53ab37-812b-4031-9c7a-d1bf06ad8aa5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-bf07e9cc-b2e1-40ea-9549-d40c3f5694d0 {
  box-shadow:1px 1px 1px 1px rgba(144, 150, 160, 1);
margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 25px;
min-height: 50px;
}








#s-bf07e9cc-b2e1-40ea-9549-d40c3f5694d0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bf07e9cc-b2e1-40ea-9549-d40c3f5694d0.shg-box.shg-c {
  justify-content: center;
}

#s-15a7a6be-1b50-46bc-9992-806737e8a086 {
  margin-top: 15px;
margin-left: 6%;
margin-right: 6%;
max-width: 50px;
text-align: left;
}

#s-15a7a6be-1b50-46bc-9992-806737e8a086 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-15a7a6be-1b50-46bc-9992-806737e8a086-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-15a7a6be-1b50-46bc-9992-806737e8a086 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 6%;
  margin-right: 6%;
  margin-top: 15px;
  
}

#s-15a7a6be-1b50-46bc-9992-806737e8a086 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 10px;
  /* Add background color handling */
  background: rgba(233, 249, 239, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-15a7a6be-1b50-46bc-9992-806737e8a086 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-15a7a6be-1b50-46bc-9992-806737e8a086 img.shogun-image {
  width: 100%;
  
  
  max-width: 50px;

  /* 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-15a7a6be-1b50-46bc-9992-806737e8a086 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-15a7a6be-1b50-46bc-9992-806737e8a086.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-15a7a6be-1b50-46bc-9992-806737e8a086.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15a7a6be-1b50-46bc-9992-806737e8a086.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-15a7a6be-1b50-46bc-9992-806737e8a086 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-15a7a6be-1b50-46bc-9992-806737e8a086-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-15a7a6be-1b50-46bc-9992-806737e8a086 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-15a7a6be-1b50-46bc-9992-806737e8a086 .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-15a7a6be-1b50-46bc-9992-806737e8a086 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-15a7a6be-1b50-46bc-9992-806737e8a086 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-15a7a6be-1b50-46bc-9992-806737e8a086 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-15a7a6be-1b50-46bc-9992-806737e8a086.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-15a7a6be-1b50-46bc-9992-806737e8a086.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15a7a6be-1b50-46bc-9992-806737e8a086.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-15a7a6be-1b50-46bc-9992-806737e8a086 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-15a7a6be-1b50-46bc-9992-806737e8a086-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-15a7a6be-1b50-46bc-9992-806737e8a086 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-15a7a6be-1b50-46bc-9992-806737e8a086 .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-15a7a6be-1b50-46bc-9992-806737e8a086 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-15a7a6be-1b50-46bc-9992-806737e8a086 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-15a7a6be-1b50-46bc-9992-806737e8a086 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-15a7a6be-1b50-46bc-9992-806737e8a086.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-15a7a6be-1b50-46bc-9992-806737e8a086.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15a7a6be-1b50-46bc-9992-806737e8a086.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-15a7a6be-1b50-46bc-9992-806737e8a086 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-15a7a6be-1b50-46bc-9992-806737e8a086-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-15a7a6be-1b50-46bc-9992-806737e8a086 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-15a7a6be-1b50-46bc-9992-806737e8a086 .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-15a7a6be-1b50-46bc-9992-806737e8a086 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-15a7a6be-1b50-46bc-9992-806737e8a086 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-15a7a6be-1b50-46bc-9992-806737e8a086 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-15a7a6be-1b50-46bc-9992-806737e8a086.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-15a7a6be-1b50-46bc-9992-806737e8a086.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15a7a6be-1b50-46bc-9992-806737e8a086.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-15a7a6be-1b50-46bc-9992-806737e8a086 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-15a7a6be-1b50-46bc-9992-806737e8a086-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-15a7a6be-1b50-46bc-9992-806737e8a086 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-15a7a6be-1b50-46bc-9992-806737e8a086 .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-15a7a6be-1b50-46bc-9992-806737e8a086 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-15a7a6be-1b50-46bc-9992-806737e8a086 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-15a7a6be-1b50-46bc-9992-806737e8a086 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-15a7a6be-1b50-46bc-9992-806737e8a086.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-15a7a6be-1b50-46bc-9992-806737e8a086.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15a7a6be-1b50-46bc-9992-806737e8a086.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-70e3974c-06f3-4327-9161-0f1616a4656e {
  margin-left: 6%;
margin-right: 6%;
}

#s-70e3974c-06f3-4327-9161-0f1616a4656e .shg-proportional-font-size,
#s-70e3974c-06f3-4327-9161-0f1616a4656e .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-06b98505-7520-42d8-a086-b28ee498285d {
  box-shadow:1px 1px 1px 1px rgba(144, 150, 160, 1);
margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 25px;
min-height: 50px;
}








#s-06b98505-7520-42d8-a086-b28ee498285d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-06b98505-7520-42d8-a086-b28ee498285d.shg-box.shg-c {
  justify-content: center;
}

#s-755d775a-fca7-45e3-835c-fbec424ae635 {
  margin-top: 15px;
margin-left: 6%;
margin-right: 6%;
max-width: 50px;
text-align: left;
}
@media (max-width: 767px){#s-755d775a-fca7-45e3-835c-fbec424ae635 {
  margin-top: -25px;
}
}
#s-755d775a-fca7-45e3-835c-fbec424ae635 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-755d775a-fca7-45e3-835c-fbec424ae635-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-755d775a-fca7-45e3-835c-fbec424ae635 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 6%;
  margin-right: 6%;
  margin-top: 15px;
  
}

#s-755d775a-fca7-45e3-835c-fbec424ae635 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 10px;
  /* Add background color handling */
  background: rgba(219, 227, 239, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-755d775a-fca7-45e3-835c-fbec424ae635 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-755d775a-fca7-45e3-835c-fbec424ae635 img.shogun-image {
  width: 100%;
  
  
  max-width: 50px;

  /* 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-755d775a-fca7-45e3-835c-fbec424ae635 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-755d775a-fca7-45e3-835c-fbec424ae635.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-755d775a-fca7-45e3-835c-fbec424ae635.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-755d775a-fca7-45e3-835c-fbec424ae635.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-755d775a-fca7-45e3-835c-fbec424ae635 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-755d775a-fca7-45e3-835c-fbec424ae635-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-755d775a-fca7-45e3-835c-fbec424ae635 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-755d775a-fca7-45e3-835c-fbec424ae635 .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-755d775a-fca7-45e3-835c-fbec424ae635 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-755d775a-fca7-45e3-835c-fbec424ae635 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-755d775a-fca7-45e3-835c-fbec424ae635 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-755d775a-fca7-45e3-835c-fbec424ae635.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-755d775a-fca7-45e3-835c-fbec424ae635.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-755d775a-fca7-45e3-835c-fbec424ae635.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-755d775a-fca7-45e3-835c-fbec424ae635 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-755d775a-fca7-45e3-835c-fbec424ae635-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-755d775a-fca7-45e3-835c-fbec424ae635 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-755d775a-fca7-45e3-835c-fbec424ae635 .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-755d775a-fca7-45e3-835c-fbec424ae635 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-755d775a-fca7-45e3-835c-fbec424ae635 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-755d775a-fca7-45e3-835c-fbec424ae635 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-755d775a-fca7-45e3-835c-fbec424ae635.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-755d775a-fca7-45e3-835c-fbec424ae635.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-755d775a-fca7-45e3-835c-fbec424ae635.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-755d775a-fca7-45e3-835c-fbec424ae635 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-755d775a-fca7-45e3-835c-fbec424ae635-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-755d775a-fca7-45e3-835c-fbec424ae635 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-755d775a-fca7-45e3-835c-fbec424ae635 .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-755d775a-fca7-45e3-835c-fbec424ae635 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-755d775a-fca7-45e3-835c-fbec424ae635 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-755d775a-fca7-45e3-835c-fbec424ae635 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-755d775a-fca7-45e3-835c-fbec424ae635.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-755d775a-fca7-45e3-835c-fbec424ae635.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-755d775a-fca7-45e3-835c-fbec424ae635.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-755d775a-fca7-45e3-835c-fbec424ae635 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-755d775a-fca7-45e3-835c-fbec424ae635-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-755d775a-fca7-45e3-835c-fbec424ae635 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: -25px;
  
}

#s-755d775a-fca7-45e3-835c-fbec424ae635 .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-755d775a-fca7-45e3-835c-fbec424ae635 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-755d775a-fca7-45e3-835c-fbec424ae635 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-755d775a-fca7-45e3-835c-fbec424ae635 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-755d775a-fca7-45e3-835c-fbec424ae635.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-755d775a-fca7-45e3-835c-fbec424ae635.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-755d775a-fca7-45e3-835c-fbec424ae635.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-af904a14-06ec-412d-bf67-10569a4dc4a3 {
  margin-left: 6%;
margin-right: 6%;
}

#s-af904a14-06ec-412d-bf67-10569a4dc4a3 .shg-proportional-font-size,
#s-af904a14-06ec-412d-bf67-10569a4dc4a3 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-85ec67f7-6d8b-43bc-84f4-9d2ea0c78cef {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-85ec67f7-6d8b-43bc-84f4-9d2ea0c78cef {
  display: none;
}
#s-85ec67f7-6d8b-43bc-84f4-9d2ea0c78cef, #wrap-s-85ec67f7-6d8b-43bc-84f4-9d2ea0c78cef, #wrap-content-s-85ec67f7-6d8b-43bc-84f4-9d2ea0c78cef { display: none !important; }}
@media (min-width: 0px) {
[id="s-85ec67f7-6d8b-43bc-84f4-9d2ea0c78cef"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-85ec67f7-6d8b-43bc-84f4-9d2ea0c78cef"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-85ec67f7-6d8b-43bc-84f4-9d2ea0c78cef"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-85ec67f7-6d8b-43bc-84f4-9d2ea0c78cef"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-b8e07f3b-4a36-4aa7-9792-0bf453bfdf72 {
  box-shadow:1px 1px 1px 1px rgba(144, 150, 160, 1);
margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 25px;
min-height: 50px;
}








#s-b8e07f3b-4a36-4aa7-9792-0bf453bfdf72 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b8e07f3b-4a36-4aa7-9792-0bf453bfdf72.shg-box.shg-c {
  justify-content: center;
}

#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 {
  margin-top: 15px;
margin-left: 6%;
margin-right: 6%;
max-width: 50px;
text-align: left;
}

#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693-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-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 6%;
  margin-right: 6%;
  margin-top: 15px;
  
}

#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 10px;
  /* Add background color handling */
  background: rgba(233, 249, 239, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 img.shogun-image {
  width: 100%;
  
  
  max-width: 50px;

  /* 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-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693-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-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 .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-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 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-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693-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-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 .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-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 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-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693-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-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 .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-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 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-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693-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-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 .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-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 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-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d72895e2-9eb8-4e8a-bc65-c5bf7ebc4693.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-82fb9756-97b8-4c11-ac1d-6e94430d6577 {
  margin-left: 6%;
margin-right: 6%;
}

#s-82fb9756-97b8-4c11-ac1d-6e94430d6577 .shg-proportional-font-size,
#s-82fb9756-97b8-4c11-ac1d-6e94430d6577 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-a3725838-1319-487c-85e3-659870e8a19c {
  box-shadow:1px 1px 1px 1px rgba(144, 150, 160, 1);
margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 25px;
min-height: 50px;
}








#s-a3725838-1319-487c-85e3-659870e8a19c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a3725838-1319-487c-85e3-659870e8a19c.shg-box.shg-c {
  justify-content: center;
}

#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e {
  margin-top: 15px;
margin-left: 6%;
margin-right: 6%;
max-width: 50px;
text-align: left;
}

#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e-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-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 6%;
  margin-right: 6%;
  margin-top: 15px;
  
}

#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 10px;
  /* Add background color handling */
  background: rgba(219, 227, 239, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e img.shogun-image {
  width: 100%;
  
  
  max-width: 50px;

  /* 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-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e-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-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e .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-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e 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-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e-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-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e .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-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e 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-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e-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-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e .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-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e 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-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e-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-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e .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-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e 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-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67ffda2a-bf3e-4d39-9ec3-c0ee9ae3002e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-b018e26e-9fa2-4bcd-acfd-8019b0e8837e {
  margin-left: 6%;
margin-right: 6%;
}

#s-b018e26e-9fa2-4bcd-acfd-8019b0e8837e .shg-proportional-font-size,
#s-b018e26e-9fa2-4bcd-acfd-8019b0e8837e .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-3fba69e3-ce3d-47b2-b842-8c0f3c535bff {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-3fba69e3-ce3d-47b2-b842-8c0f3c535bff {
  display: none;
}
#s-3fba69e3-ce3d-47b2-b842-8c0f3c535bff, #wrap-s-3fba69e3-ce3d-47b2-b842-8c0f3c535bff, #wrap-content-s-3fba69e3-ce3d-47b2-b842-8c0f3c535bff { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3fba69e3-ce3d-47b2-b842-8c0f3c535bff {
  display: none;
}
#s-3fba69e3-ce3d-47b2-b842-8c0f3c535bff, #wrap-s-3fba69e3-ce3d-47b2-b842-8c0f3c535bff, #wrap-content-s-3fba69e3-ce3d-47b2-b842-8c0f3c535bff { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3fba69e3-ce3d-47b2-b842-8c0f3c535bff {
  display: none;
}
#s-3fba69e3-ce3d-47b2-b842-8c0f3c535bff, #wrap-s-3fba69e3-ce3d-47b2-b842-8c0f3c535bff, #wrap-content-s-3fba69e3-ce3d-47b2-b842-8c0f3c535bff { display: none !important; }}
@media (min-width: 0px) {
[id="s-3fba69e3-ce3d-47b2-b842-8c0f3c535bff"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-3fba69e3-ce3d-47b2-b842-8c0f3c535bff"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-3fba69e3-ce3d-47b2-b842-8c0f3c535bff"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-3fba69e3-ce3d-47b2-b842-8c0f3c535bff"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-f671fb43-eb84-4617-bc44-6213ad4ba15a {
  box-shadow:1px 1px 1px 1px rgba(144, 150, 160, 1);
margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 25px;
min-height: 50px;
}








#s-f671fb43-eb84-4617-bc44-6213ad4ba15a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f671fb43-eb84-4617-bc44-6213ad4ba15a.shg-box.shg-c {
  justify-content: center;
}

#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7 {
  margin-top: 15px;
margin-left: 6%;
margin-right: 6%;
max-width: 50px;
text-align: left;
}

#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7-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-6bece995-e10d-4351-b5e3-fed7ed64bbc7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 6%;
  margin-right: 6%;
  margin-top: 15px;
  
}

#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 10px;
  /* Add background color handling */
  background: rgba(212, 247, 255, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-6bece995-e10d-4351-b5e3-fed7ed64bbc7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7 img.shogun-image {
  width: 100%;
  
  
  max-width: 50px;

  /* 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-6bece995-e10d-4351-b5e3-fed7ed64bbc7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6bece995-e10d-4351-b5e3-fed7ed64bbc7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6bece995-e10d-4351-b5e3-fed7ed64bbc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7-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-6bece995-e10d-4351-b5e3-fed7ed64bbc7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7 .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-6bece995-e10d-4351-b5e3-fed7ed64bbc7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7 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-6bece995-e10d-4351-b5e3-fed7ed64bbc7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6bece995-e10d-4351-b5e3-fed7ed64bbc7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6bece995-e10d-4351-b5e3-fed7ed64bbc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7-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-6bece995-e10d-4351-b5e3-fed7ed64bbc7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7 .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-6bece995-e10d-4351-b5e3-fed7ed64bbc7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7 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-6bece995-e10d-4351-b5e3-fed7ed64bbc7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6bece995-e10d-4351-b5e3-fed7ed64bbc7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6bece995-e10d-4351-b5e3-fed7ed64bbc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7-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-6bece995-e10d-4351-b5e3-fed7ed64bbc7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7 .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-6bece995-e10d-4351-b5e3-fed7ed64bbc7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7 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-6bece995-e10d-4351-b5e3-fed7ed64bbc7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6bece995-e10d-4351-b5e3-fed7ed64bbc7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6bece995-e10d-4351-b5e3-fed7ed64bbc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7-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-6bece995-e10d-4351-b5e3-fed7ed64bbc7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7 .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-6bece995-e10d-4351-b5e3-fed7ed64bbc7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7 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-6bece995-e10d-4351-b5e3-fed7ed64bbc7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6bece995-e10d-4351-b5e3-fed7ed64bbc7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6bece995-e10d-4351-b5e3-fed7ed64bbc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6bece995-e10d-4351-b5e3-fed7ed64bbc7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-f83a7f9c-7318-48b6-a2db-30d4a4256ed7 {
  margin-left: 6%;
margin-right: 6%;
}
@media (min-width: 1200px){#s-f83a7f9c-7318-48b6-a2db-30d4a4256ed7 {
  display: none;
}
#s-f83a7f9c-7318-48b6-a2db-30d4a4256ed7, #wrap-s-f83a7f9c-7318-48b6-a2db-30d4a4256ed7, #wrap-content-s-f83a7f9c-7318-48b6-a2db-30d4a4256ed7 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f83a7f9c-7318-48b6-a2db-30d4a4256ed7 {
  display: none;
}
#s-f83a7f9c-7318-48b6-a2db-30d4a4256ed7, #wrap-s-f83a7f9c-7318-48b6-a2db-30d4a4256ed7, #wrap-content-s-f83a7f9c-7318-48b6-a2db-30d4a4256ed7 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f83a7f9c-7318-48b6-a2db-30d4a4256ed7 {
  display: none;
}
#s-f83a7f9c-7318-48b6-a2db-30d4a4256ed7, #wrap-s-f83a7f9c-7318-48b6-a2db-30d4a4256ed7, #wrap-content-s-f83a7f9c-7318-48b6-a2db-30d4a4256ed7 { display: none !important; }}
#s-f83a7f9c-7318-48b6-a2db-30d4a4256ed7 .shg-proportional-font-size,
#s-f83a7f9c-7318-48b6-a2db-30d4a4256ed7 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-b55691db-269a-4c4a-ba16-f16e5b0ef94b {
  box-shadow:1px 1px 1px 1px rgba(144, 150, 160, 1);
margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 25px;
min-height: 50px;
}








#s-b55691db-269a-4c4a-ba16-f16e5b0ef94b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b55691db-269a-4c4a-ba16-f16e5b0ef94b.shg-box.shg-c {
  justify-content: center;
}

#s-97819b42-8faf-4515-a100-b7c7d04b425f {
  margin-top: 15px;
margin-left: 6%;
margin-right: 6%;
max-width: 50px;
text-align: left;
}

#s-97819b42-8faf-4515-a100-b7c7d04b425f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-97819b42-8faf-4515-a100-b7c7d04b425f-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-97819b42-8faf-4515-a100-b7c7d04b425f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 6%;
  margin-right: 6%;
  margin-top: 15px;
  
}

#s-97819b42-8faf-4515-a100-b7c7d04b425f .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 10px;
  /* Add background color handling */
  background: rgba(233, 249, 239, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-97819b42-8faf-4515-a100-b7c7d04b425f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-97819b42-8faf-4515-a100-b7c7d04b425f img.shogun-image {
  width: 100%;
  
  
  max-width: 50px;

  /* 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-97819b42-8faf-4515-a100-b7c7d04b425f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-97819b42-8faf-4515-a100-b7c7d04b425f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-97819b42-8faf-4515-a100-b7c7d04b425f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97819b42-8faf-4515-a100-b7c7d04b425f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-97819b42-8faf-4515-a100-b7c7d04b425f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-97819b42-8faf-4515-a100-b7c7d04b425f-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-97819b42-8faf-4515-a100-b7c7d04b425f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-97819b42-8faf-4515-a100-b7c7d04b425f .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-97819b42-8faf-4515-a100-b7c7d04b425f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-97819b42-8faf-4515-a100-b7c7d04b425f 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-97819b42-8faf-4515-a100-b7c7d04b425f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-97819b42-8faf-4515-a100-b7c7d04b425f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-97819b42-8faf-4515-a100-b7c7d04b425f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97819b42-8faf-4515-a100-b7c7d04b425f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-97819b42-8faf-4515-a100-b7c7d04b425f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-97819b42-8faf-4515-a100-b7c7d04b425f-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-97819b42-8faf-4515-a100-b7c7d04b425f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-97819b42-8faf-4515-a100-b7c7d04b425f .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-97819b42-8faf-4515-a100-b7c7d04b425f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-97819b42-8faf-4515-a100-b7c7d04b425f 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-97819b42-8faf-4515-a100-b7c7d04b425f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-97819b42-8faf-4515-a100-b7c7d04b425f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-97819b42-8faf-4515-a100-b7c7d04b425f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97819b42-8faf-4515-a100-b7c7d04b425f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-97819b42-8faf-4515-a100-b7c7d04b425f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-97819b42-8faf-4515-a100-b7c7d04b425f-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-97819b42-8faf-4515-a100-b7c7d04b425f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-97819b42-8faf-4515-a100-b7c7d04b425f .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-97819b42-8faf-4515-a100-b7c7d04b425f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-97819b42-8faf-4515-a100-b7c7d04b425f 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-97819b42-8faf-4515-a100-b7c7d04b425f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-97819b42-8faf-4515-a100-b7c7d04b425f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-97819b42-8faf-4515-a100-b7c7d04b425f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97819b42-8faf-4515-a100-b7c7d04b425f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-97819b42-8faf-4515-a100-b7c7d04b425f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-97819b42-8faf-4515-a100-b7c7d04b425f-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-97819b42-8faf-4515-a100-b7c7d04b425f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-97819b42-8faf-4515-a100-b7c7d04b425f .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-97819b42-8faf-4515-a100-b7c7d04b425f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-97819b42-8faf-4515-a100-b7c7d04b425f 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-97819b42-8faf-4515-a100-b7c7d04b425f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-97819b42-8faf-4515-a100-b7c7d04b425f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-97819b42-8faf-4515-a100-b7c7d04b425f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97819b42-8faf-4515-a100-b7c7d04b425f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-550b6a67-462d-4a80-a170-ea2a58dc4296 {
  margin-left: 6%;
margin-right: 6%;
}
@media (min-width: 1200px){#s-550b6a67-462d-4a80-a170-ea2a58dc4296 {
  display: none;
}
#s-550b6a67-462d-4a80-a170-ea2a58dc4296, #wrap-s-550b6a67-462d-4a80-a170-ea2a58dc4296, #wrap-content-s-550b6a67-462d-4a80-a170-ea2a58dc4296 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-550b6a67-462d-4a80-a170-ea2a58dc4296 {
  display: none;
}
#s-550b6a67-462d-4a80-a170-ea2a58dc4296, #wrap-s-550b6a67-462d-4a80-a170-ea2a58dc4296, #wrap-content-s-550b6a67-462d-4a80-a170-ea2a58dc4296 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-550b6a67-462d-4a80-a170-ea2a58dc4296 {
  display: none;
}
#s-550b6a67-462d-4a80-a170-ea2a58dc4296, #wrap-s-550b6a67-462d-4a80-a170-ea2a58dc4296, #wrap-content-s-550b6a67-462d-4a80-a170-ea2a58dc4296 { display: none !important; }}
#s-550b6a67-462d-4a80-a170-ea2a58dc4296 .shg-proportional-font-size,
#s-550b6a67-462d-4a80-a170-ea2a58dc4296 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-a003c977-2ec1-4cf4-bfa5-f62d47e177d7 {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-a003c977-2ec1-4cf4-bfa5-f62d47e177d7 {
  display: none;
}
#s-a003c977-2ec1-4cf4-bfa5-f62d47e177d7, #wrap-s-a003c977-2ec1-4cf4-bfa5-f62d47e177d7, #wrap-content-s-a003c977-2ec1-4cf4-bfa5-f62d47e177d7 { display: none !important; }}
@media (min-width: 0px) {
[id="s-a003c977-2ec1-4cf4-bfa5-f62d47e177d7"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-a003c977-2ec1-4cf4-bfa5-f62d47e177d7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-a003c977-2ec1-4cf4-bfa5-f62d47e177d7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-a003c977-2ec1-4cf4-bfa5-f62d47e177d7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-53f82a54-202d-4ae0-98dd-71921cbe6832 {
  box-shadow:1px 1px 1px 1px rgba(144, 150, 160, 1);
margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 25px;
min-height: 50px;
}








#s-53f82a54-202d-4ae0-98dd-71921cbe6832 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-53f82a54-202d-4ae0-98dd-71921cbe6832.shg-box.shg-c {
  justify-content: center;
}

#s-82972852-9102-4014-b9af-502d5454f49e {
  margin-top: 15px;
margin-left: 6%;
margin-right: 6%;
max-width: 50px;
text-align: left;
}

#s-82972852-9102-4014-b9af-502d5454f49e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-82972852-9102-4014-b9af-502d5454f49e-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-82972852-9102-4014-b9af-502d5454f49e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 6%;
  margin-right: 6%;
  margin-top: 15px;
  
}

#s-82972852-9102-4014-b9af-502d5454f49e .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 10px;
  /* Add background color handling */
  background: rgba(212, 247, 255, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-82972852-9102-4014-b9af-502d5454f49e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-82972852-9102-4014-b9af-502d5454f49e img.shogun-image {
  width: 100%;
  
  
  max-width: 50px;

  /* 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-82972852-9102-4014-b9af-502d5454f49e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-82972852-9102-4014-b9af-502d5454f49e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-82972852-9102-4014-b9af-502d5454f49e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-82972852-9102-4014-b9af-502d5454f49e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-82972852-9102-4014-b9af-502d5454f49e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-82972852-9102-4014-b9af-502d5454f49e-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-82972852-9102-4014-b9af-502d5454f49e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-82972852-9102-4014-b9af-502d5454f49e .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-82972852-9102-4014-b9af-502d5454f49e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-82972852-9102-4014-b9af-502d5454f49e 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-82972852-9102-4014-b9af-502d5454f49e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-82972852-9102-4014-b9af-502d5454f49e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-82972852-9102-4014-b9af-502d5454f49e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-82972852-9102-4014-b9af-502d5454f49e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-82972852-9102-4014-b9af-502d5454f49e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-82972852-9102-4014-b9af-502d5454f49e-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-82972852-9102-4014-b9af-502d5454f49e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-82972852-9102-4014-b9af-502d5454f49e .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-82972852-9102-4014-b9af-502d5454f49e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-82972852-9102-4014-b9af-502d5454f49e 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-82972852-9102-4014-b9af-502d5454f49e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-82972852-9102-4014-b9af-502d5454f49e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-82972852-9102-4014-b9af-502d5454f49e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-82972852-9102-4014-b9af-502d5454f49e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-82972852-9102-4014-b9af-502d5454f49e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-82972852-9102-4014-b9af-502d5454f49e-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-82972852-9102-4014-b9af-502d5454f49e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-82972852-9102-4014-b9af-502d5454f49e .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-82972852-9102-4014-b9af-502d5454f49e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-82972852-9102-4014-b9af-502d5454f49e 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-82972852-9102-4014-b9af-502d5454f49e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-82972852-9102-4014-b9af-502d5454f49e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-82972852-9102-4014-b9af-502d5454f49e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-82972852-9102-4014-b9af-502d5454f49e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-82972852-9102-4014-b9af-502d5454f49e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-82972852-9102-4014-b9af-502d5454f49e-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-82972852-9102-4014-b9af-502d5454f49e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-82972852-9102-4014-b9af-502d5454f49e .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-82972852-9102-4014-b9af-502d5454f49e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-82972852-9102-4014-b9af-502d5454f49e 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-82972852-9102-4014-b9af-502d5454f49e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-82972852-9102-4014-b9af-502d5454f49e.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-82972852-9102-4014-b9af-502d5454f49e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-82972852-9102-4014-b9af-502d5454f49e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-ae135576-417f-4038-8901-f2dded4d912b {
  margin-left: 6%;
margin-right: 6%;
}
@media (min-width: 1200px){#s-ae135576-417f-4038-8901-f2dded4d912b {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ae135576-417f-4038-8901-f2dded4d912b {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-ae135576-417f-4038-8901-f2dded4d912b {
  
}
}
#s-ae135576-417f-4038-8901-f2dded4d912b .shg-proportional-font-size,
#s-ae135576-417f-4038-8901-f2dded4d912b .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-2ad4ff10-68f2-41d9-bb69-0c60abca252a {
  box-shadow:1px 1px 1px 1px rgba(144, 150, 160, 1);
margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 25px;
min-height: 50px;
}








#s-2ad4ff10-68f2-41d9-bb69-0c60abca252a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2ad4ff10-68f2-41d9-bb69-0c60abca252a.shg-box.shg-c {
  justify-content: center;
}

#s-88da01f5-743e-4426-b726-fa92f04bad38 {
  margin-top: 15px;
margin-left: 6%;
margin-right: 6%;
max-width: 50px;
text-align: left;
}

#s-88da01f5-743e-4426-b726-fa92f04bad38 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-88da01f5-743e-4426-b726-fa92f04bad38-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-88da01f5-743e-4426-b726-fa92f04bad38 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 6%;
  margin-right: 6%;
  margin-top: 15px;
  
}

#s-88da01f5-743e-4426-b726-fa92f04bad38 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 10px;
  /* Add background color handling */
  background: rgba(233, 249, 239, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-88da01f5-743e-4426-b726-fa92f04bad38 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-88da01f5-743e-4426-b726-fa92f04bad38 img.shogun-image {
  width: 100%;
  
  
  max-width: 50px;

  /* 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-88da01f5-743e-4426-b726-fa92f04bad38 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-88da01f5-743e-4426-b726-fa92f04bad38.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-88da01f5-743e-4426-b726-fa92f04bad38.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88da01f5-743e-4426-b726-fa92f04bad38.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-88da01f5-743e-4426-b726-fa92f04bad38 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-88da01f5-743e-4426-b726-fa92f04bad38-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-88da01f5-743e-4426-b726-fa92f04bad38 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-88da01f5-743e-4426-b726-fa92f04bad38 .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-88da01f5-743e-4426-b726-fa92f04bad38 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-88da01f5-743e-4426-b726-fa92f04bad38 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-88da01f5-743e-4426-b726-fa92f04bad38 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-88da01f5-743e-4426-b726-fa92f04bad38.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-88da01f5-743e-4426-b726-fa92f04bad38.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88da01f5-743e-4426-b726-fa92f04bad38.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-88da01f5-743e-4426-b726-fa92f04bad38 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-88da01f5-743e-4426-b726-fa92f04bad38-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-88da01f5-743e-4426-b726-fa92f04bad38 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-88da01f5-743e-4426-b726-fa92f04bad38 .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-88da01f5-743e-4426-b726-fa92f04bad38 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-88da01f5-743e-4426-b726-fa92f04bad38 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-88da01f5-743e-4426-b726-fa92f04bad38 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-88da01f5-743e-4426-b726-fa92f04bad38.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-88da01f5-743e-4426-b726-fa92f04bad38.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88da01f5-743e-4426-b726-fa92f04bad38.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-88da01f5-743e-4426-b726-fa92f04bad38 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-88da01f5-743e-4426-b726-fa92f04bad38-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-88da01f5-743e-4426-b726-fa92f04bad38 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-88da01f5-743e-4426-b726-fa92f04bad38 .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-88da01f5-743e-4426-b726-fa92f04bad38 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-88da01f5-743e-4426-b726-fa92f04bad38 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-88da01f5-743e-4426-b726-fa92f04bad38 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-88da01f5-743e-4426-b726-fa92f04bad38.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-88da01f5-743e-4426-b726-fa92f04bad38.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88da01f5-743e-4426-b726-fa92f04bad38.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-88da01f5-743e-4426-b726-fa92f04bad38 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-88da01f5-743e-4426-b726-fa92f04bad38-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-88da01f5-743e-4426-b726-fa92f04bad38 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-88da01f5-743e-4426-b726-fa92f04bad38 .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-88da01f5-743e-4426-b726-fa92f04bad38 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-88da01f5-743e-4426-b726-fa92f04bad38 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-88da01f5-743e-4426-b726-fa92f04bad38 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-88da01f5-743e-4426-b726-fa92f04bad38.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-88da01f5-743e-4426-b726-fa92f04bad38.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88da01f5-743e-4426-b726-fa92f04bad38.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-3c801d6c-7ddb-4ce5-9945-c3ac1c8cf91b {
  margin-left: 6%;
margin-right: 6%;
}
@media (min-width: 1200px){#s-3c801d6c-7ddb-4ce5-9945-c3ac1c8cf91b {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3c801d6c-7ddb-4ce5-9945-c3ac1c8cf91b {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-3c801d6c-7ddb-4ce5-9945-c3ac1c8cf91b {
  
}
}
#s-3c801d6c-7ddb-4ce5-9945-c3ac1c8cf91b .shg-proportional-font-size,
#s-3c801d6c-7ddb-4ce5-9945-c3ac1c8cf91b .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9 {
  display: none;
}
#s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9, #wrap-s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9, #wrap-content-s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9 {
  display: none;
}
#s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9, #wrap-s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9, #wrap-content-s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9 {
  display: none;
}
#s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9, #wrap-s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9, #wrap-content-s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9 { display: none !important; }}@media (max-width: 767px){#s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9 {
  display: none;
}
#s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9, #wrap-s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9, #wrap-content-s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9 { display: none !important; }}
@media (min-width: 0px) {
[id="s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-ed63f7a4-2ca6-4e86-8310-fa2f296389f9"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 22.5px);
}

}

#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
max-width: 800px;
text-align: center;
}
@media (max-width: 767px){#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 {
  max-width: 50px;
}
}
#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274-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-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 15px;
  
}

#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 .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-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 img.shogun-image {
  width: 100%;
  
  
  max-width: 800px;

  /* 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-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274-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-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 .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-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 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-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274-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-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 .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-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 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-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274-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-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 .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-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 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-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274-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-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 .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-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 img.shogun-image {
  width: 100%;
  
  
  max-width: 50px;

  /* 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-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a2aba0fa-fbc2-4e4e-93bc-bf61d8f23274.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-7d082dee-2420-440d-915a-2d2403ae4443 {
  margin-left: auto;
margin-right: auto;
}

#s-7d082dee-2420-440d-915a-2d2403ae4443 .shg-proportional-font-size,
#s-7d082dee-2420-440d-915a-2d2403ae4443 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
max-width: 800px;
text-align: center;
}
@media (max-width: 767px){#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b {
  max-width: 50px;
}
}
#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b-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-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 15px;
  
}

#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b .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-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b img.shogun-image {
  width: 100%;
  
  
  max-width: 800px;

  /* 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-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b-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-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b .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-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b 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-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b-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-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b .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-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b 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-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b-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-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b .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-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b 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-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b-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-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b .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-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b img.shogun-image {
  width: 100%;
  
  
  max-width: 50px;

  /* 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-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-905e1c44-22f2-4e2d-ae81-21c5d2d35d0b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-290bfd52-d083-4866-8051-1b3e8000943f {
  margin-left: auto;
margin-right: auto;
}

#s-290bfd52-d083-4866-8051-1b3e8000943f .shg-proportional-font-size,
#s-290bfd52-d083-4866-8051-1b3e8000943f .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-166446af-7f05-4707-bf43-eaf95905e4df {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 400px;
text-align: center;
}
@media (max-width: 767px){#s-166446af-7f05-4707-bf43-eaf95905e4df {
  max-width: 300px;
display: none;
}
#s-166446af-7f05-4707-bf43-eaf95905e4df, #wrap-s-166446af-7f05-4707-bf43-eaf95905e4df, #wrap-content-s-166446af-7f05-4707-bf43-eaf95905e4df { display: none !important; }}
#s-166446af-7f05-4707-bf43-eaf95905e4df {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-166446af-7f05-4707-bf43-eaf95905e4df-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-166446af-7f05-4707-bf43-eaf95905e4df {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 50px;
  margin-bottom: 0px;
}

#s-166446af-7f05-4707-bf43-eaf95905e4df .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 15px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-166446af-7f05-4707-bf43-eaf95905e4df {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-166446af-7f05-4707-bf43-eaf95905e4df img.shogun-image {
  width: 100%;
  
  
  max-width: 400px;

  /* 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-166446af-7f05-4707-bf43-eaf95905e4df .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-166446af-7f05-4707-bf43-eaf95905e4df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-166446af-7f05-4707-bf43-eaf95905e4df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-166446af-7f05-4707-bf43-eaf95905e4df.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-166446af-7f05-4707-bf43-eaf95905e4df {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-166446af-7f05-4707-bf43-eaf95905e4df-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-166446af-7f05-4707-bf43-eaf95905e4df {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-166446af-7f05-4707-bf43-eaf95905e4df .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-166446af-7f05-4707-bf43-eaf95905e4df {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-166446af-7f05-4707-bf43-eaf95905e4df 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-166446af-7f05-4707-bf43-eaf95905e4df .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-166446af-7f05-4707-bf43-eaf95905e4df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-166446af-7f05-4707-bf43-eaf95905e4df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-166446af-7f05-4707-bf43-eaf95905e4df.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-166446af-7f05-4707-bf43-eaf95905e4df {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-166446af-7f05-4707-bf43-eaf95905e4df-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-166446af-7f05-4707-bf43-eaf95905e4df {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-166446af-7f05-4707-bf43-eaf95905e4df .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-166446af-7f05-4707-bf43-eaf95905e4df {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-166446af-7f05-4707-bf43-eaf95905e4df 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-166446af-7f05-4707-bf43-eaf95905e4df .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-166446af-7f05-4707-bf43-eaf95905e4df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-166446af-7f05-4707-bf43-eaf95905e4df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-166446af-7f05-4707-bf43-eaf95905e4df.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-166446af-7f05-4707-bf43-eaf95905e4df {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-166446af-7f05-4707-bf43-eaf95905e4df-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-166446af-7f05-4707-bf43-eaf95905e4df {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-166446af-7f05-4707-bf43-eaf95905e4df .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-166446af-7f05-4707-bf43-eaf95905e4df {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-166446af-7f05-4707-bf43-eaf95905e4df 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-166446af-7f05-4707-bf43-eaf95905e4df .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-166446af-7f05-4707-bf43-eaf95905e4df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-166446af-7f05-4707-bf43-eaf95905e4df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-166446af-7f05-4707-bf43-eaf95905e4df.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-166446af-7f05-4707-bf43-eaf95905e4df {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-166446af-7f05-4707-bf43-eaf95905e4df-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-166446af-7f05-4707-bf43-eaf95905e4df {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-166446af-7f05-4707-bf43-eaf95905e4df .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-166446af-7f05-4707-bf43-eaf95905e4df {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-166446af-7f05-4707-bf43-eaf95905e4df img.shogun-image {
  width: 100%;
  
  
  max-width: 300px;

  /* 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-166446af-7f05-4707-bf43-eaf95905e4df .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-166446af-7f05-4707-bf43-eaf95905e4df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-166446af-7f05-4707-bf43-eaf95905e4df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-166446af-7f05-4707-bf43-eaf95905e4df.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-ebdbe249-213b-4183-a5a3-c64aae5f7ee9 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}








#s-ebdbe249-213b-4183-a5a3-c64aae5f7ee9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ebdbe249-213b-4183-a5a3-c64aae5f7ee9.shg-box.shg-c {
  justify-content: center;
}

#s-edd5940a-0feb-4bf0-9f17-971099b74dec {
  margin-top: 25px;
margin-left: auto;
margin-right: auto;
padding-left: 1%;
background-color: rgb(242, 242, 242);
}

#s-edd5940a-0feb-4bf0-9f17-971099b74dec .shg-proportional-font-size,
#s-edd5940a-0feb-4bf0-9f17-971099b74dec .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-d869cefa-d5d7-4bf9-af67-ff8e71aea818 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgb(242, 242, 242);
}

#s-d869cefa-d5d7-4bf9-af67-ff8e71aea818 .shogun-heading-component h1 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


@media (max-width: 767px){#s-d869cefa-d5d7-4bf9-af67-ff8e71aea818 .shogun-heading-component h1 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
#s-dea13f57-5b37-438a-9607-24a3178d348e {
  margin-left: 14%;
margin-right: 14%;
}

#s-dea13f57-5b37-438a-9607-24a3178d348e .shg-proportional-font-size,
#s-dea13f57-5b37-438a-9607-24a3178d348e .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-b927b03f-42f1-4c6e-92ff-73cacac8dafc {
  margin-top: 0px;
margin-left: 15%;
margin-bottom: 0px;
margin-right: 15%;
text-align: left;
}

#s-3e50cf17-a634-4884-a29a-10c6767f5bd2 {
  background-repeat: no-repeat;
margin-left: auto;
margin-right: auto;
padding-top: 50px;
padding-bottom: 50px;
min-height: 50px;
}

#s-3e50cf17-a634-4884-a29a-10c6767f5bd2 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjllZTMzMWMtM2QxZi00YjdhLWE5YmItOTQyNWQ5OTY5NmJkIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojMWI0Mzc2O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojMDA1ODhlO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiOWVlMzMxYy0zZDFmLTRiN2EtYTliYi05NDI1ZDk5Njk2YmQpIi8+PC9zdmc+);
}








#s-3e50cf17-a634-4884-a29a-10c6767f5bd2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3e50cf17-a634-4884-a29a-10c6767f5bd2.shg-box.shg-c {
  justify-content: center;
}

#s-de12841a-55a2-44b2-8cc8-03e577ffd98c {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-de12841a-55a2-44b2-8cc8-03e577ffd98c {
  margin-left: 3%;
margin-right: 3%;
}
}
#s-de12841a-55a2-44b2-8cc8-03e577ffd98c .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


@media (max-width: 767px){#s-de12841a-55a2-44b2-8cc8-03e577ffd98c .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
#s-7d2cc338-c174-481a-8770-3b5633860fad {
  margin-left: 24%;
margin-right: 24%;
}
@media (max-width: 767px){#s-7d2cc338-c174-481a-8770-3b5633860fad {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-7d2cc338-c174-481a-8770-3b5633860fad .shg-proportional-font-size,
#s-7d2cc338-c174-481a-8770-3b5633860fad .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-1cbd9d5a-961e-4c2f-9b40-a62f9cf5b93c {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-1cbd9d5a-961e-4c2f-9b40-a62f9cf5b93c:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-1cbd9d5a-961e-4c2f-9b40-a62f9cf5b93c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-1cbd9d5a-961e-4c2f-9b40-a62f9cf5b93c-root {
    text-align: center;
  }


#s-1cbd9d5a-961e-4c2f-9b40-a62f9cf5b93c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-1cbd9d5a-961e-4c2f-9b40-a62f9cf5b93c-root {
    text-align: center;
  }


#s-1cbd9d5a-961e-4c2f-9b40-a62f9cf5b93c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1cbd9d5a-961e-4c2f-9b40-a62f9cf5b93c-root {
    text-align: center;
  }


#s-1cbd9d5a-961e-4c2f-9b40-a62f9cf5b93c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1cbd9d5a-961e-4c2f-9b40-a62f9cf5b93c-root {
    text-align: center;
  }


#s-1cbd9d5a-961e-4c2f-9b40-a62f9cf5b93c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-1cbd9d5a-961e-4c2f-9b40-a62f9cf5b93c-root {
    text-align: center;
  }


#s-1cbd9d5a-961e-4c2f-9b40-a62f9cf5b93c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-5d744782-5e17-445e-9b3c-e943171bca44 {
  margin-left: auto;
margin-right: auto;
padding-top: 50px;
padding-bottom: 75px;
min-height: 50px;
background-color: rgb(255, 255, 255);
}








#s-5d744782-5e17-445e-9b3c-e943171bca44 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5d744782-5e17-445e-9b3c-e943171bca44.shg-box.shg-c {
  justify-content: center;
}

#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847-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-f70f99b5-1305-4097-a30c-0e3a7e6ed847 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847 .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-f70f99b5-1305-4097-a30c-0e3a7e6ed847 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847 img.shogun-image {
  width: 100%;
  
  
  max-width: 100px;

  /* 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-f70f99b5-1305-4097-a30c-0e3a7e6ed847 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f70f99b5-1305-4097-a30c-0e3a7e6ed847.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f70f99b5-1305-4097-a30c-0e3a7e6ed847.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847-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-f70f99b5-1305-4097-a30c-0e3a7e6ed847 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847 .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-f70f99b5-1305-4097-a30c-0e3a7e6ed847 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847 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-f70f99b5-1305-4097-a30c-0e3a7e6ed847 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f70f99b5-1305-4097-a30c-0e3a7e6ed847.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f70f99b5-1305-4097-a30c-0e3a7e6ed847.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847-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-f70f99b5-1305-4097-a30c-0e3a7e6ed847 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847 .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-f70f99b5-1305-4097-a30c-0e3a7e6ed847 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847 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-f70f99b5-1305-4097-a30c-0e3a7e6ed847 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f70f99b5-1305-4097-a30c-0e3a7e6ed847.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f70f99b5-1305-4097-a30c-0e3a7e6ed847.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847-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-f70f99b5-1305-4097-a30c-0e3a7e6ed847 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847 .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-f70f99b5-1305-4097-a30c-0e3a7e6ed847 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847 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-f70f99b5-1305-4097-a30c-0e3a7e6ed847 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f70f99b5-1305-4097-a30c-0e3a7e6ed847.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f70f99b5-1305-4097-a30c-0e3a7e6ed847.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847-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-f70f99b5-1305-4097-a30c-0e3a7e6ed847 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847 .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-f70f99b5-1305-4097-a30c-0e3a7e6ed847 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847 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-f70f99b5-1305-4097-a30c-0e3a7e6ed847 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f70f99b5-1305-4097-a30c-0e3a7e6ed847.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f70f99b5-1305-4097-a30c-0e3a7e6ed847.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f70f99b5-1305-4097-a30c-0e3a7e6ed847.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-025abeab-bd6d-4bcc-86b2-214ac39ed90f {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 1%;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-025abeab-bd6d-4bcc-86b2-214ac39ed90f {
  display: none;
}
#s-025abeab-bd6d-4bcc-86b2-214ac39ed90f, #wrap-s-025abeab-bd6d-4bcc-86b2-214ac39ed90f, #wrap-content-s-025abeab-bd6d-4bcc-86b2-214ac39ed90f { display: none !important; }}
#s-025abeab-bd6d-4bcc-86b2-214ac39ed90f .shg-proportional-font-size,
#s-025abeab-bd6d-4bcc-86b2-214ac39ed90f .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-7c778c80-3665-4786-b405-b5097de7a333 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 1%;
padding-bottom: 0px;
}
@media (min-width: 1200px){#s-7c778c80-3665-4786-b405-b5097de7a333 {
  display: none;
}
#s-7c778c80-3665-4786-b405-b5097de7a333, #wrap-s-7c778c80-3665-4786-b405-b5097de7a333, #wrap-content-s-7c778c80-3665-4786-b405-b5097de7a333 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7c778c80-3665-4786-b405-b5097de7a333 {
  display: none;
}
#s-7c778c80-3665-4786-b405-b5097de7a333, #wrap-s-7c778c80-3665-4786-b405-b5097de7a333, #wrap-content-s-7c778c80-3665-4786-b405-b5097de7a333 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7c778c80-3665-4786-b405-b5097de7a333 {
  display: none;
}
#s-7c778c80-3665-4786-b405-b5097de7a333, #wrap-s-7c778c80-3665-4786-b405-b5097de7a333, #wrap-content-s-7c778c80-3665-4786-b405-b5097de7a333 { display: none !important; }}
#s-7c778c80-3665-4786-b405-b5097de7a333 .shg-proportional-font-size,
#s-7c778c80-3665-4786-b405-b5097de7a333 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-9e09e7c2-565b-4119-94c2-243dad0f7c4c {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-9e09e7c2-565b-4119-94c2-243dad0f7c4c {
  margin-left: 19%;
margin-right: 19%;
}
}
#s-9e09e7c2-565b-4119-94c2-243dad0f7c4c .shogun-heading-component h1 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


@media (max-width: 767px){#s-9e09e7c2-565b-4119-94c2-243dad0f7c4c .shogun-heading-component h1 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
#s-3fe7cab4-c731-4fed-84e4-35d0da804156 {
  margin-left: 24%;
margin-right: 24%;
}
@media (max-width: 767px){#s-3fe7cab4-c731-4fed-84e4-35d0da804156 {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-3fe7cab4-c731-4fed-84e4-35d0da804156 .shg-proportional-font-size,
#s-3fe7cab4-c731-4fed-84e4-35d0da804156 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-2bc5ecfc-5804-4881-a404-1fdfc54800fa {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-535e3218-5e2f-4d51-9515-96316e4a7530 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}

.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty:not(.shopify-section *):not([id^="wistia"]) {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}

/* <-- User Content Animations */

.shogun-form-error-msg,
.shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

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