#s-94526011-a729-4286-b676-9b6058ce49f5 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

.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-85bf06af-2103-4e35-a88f-c722b83f0f8d {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-85bf06af-2103-4e35-a88f-c722b83f0f8d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-85bf06af-2103-4e35-a88f-c722b83f0f8d.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-a3ec322c-014f-415c-b6a1-7104105c81ed {
  margin-left: 0%;
margin-right: 0%;
padding-left: 8%;
padding-right: 8%;
}
@media (max-width: 767px){#s-a3ec322c-014f-415c-b6a1-7104105c81ed {
  display: none;
}
#s-a3ec322c-014f-415c-b6a1-7104105c81ed, #wrap-s-a3ec322c-014f-415c-b6a1-7104105c81ed, #wrap-content-s-a3ec322c-014f-415c-b6a1-7104105c81ed { display: none !important; }}
@media (min-width: 0px) {
[id="s-a3ec322c-014f-415c-b6a1-7104105c81ed"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-a3ec322c-014f-415c-b6a1-7104105c81ed"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a3ec322c-014f-415c-b6a1-7104105c81ed"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a3ec322c-014f-415c-b6a1-7104105c81ed"] > .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-fa8f6942-a6fe-41ed-90b5-5704a38f50dd {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
max-width: 125px;
text-align: center;
}

#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd 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-fa8f6942-a6fe-41ed-90b5-5704a38f50dd .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd img.shogun-image {
  width: 100%;
  
  
  

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




.s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd img.shogun-image {
  width: 100%;
  
  
  

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




.s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd img.shogun-image {
  width: 100%;
  
  
  

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




.s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd img.shogun-image {
  width: 100%;
  
  
  

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




.s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fa8f6942-a6fe-41ed-90b5-5704a38f50dd.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-100ff466-da4f-4bb9-9d52-14398026a3c1 {
  margin-top: 20px;
margin-left: 21%;
margin-right: 21%;
}

#s-100ff466-da4f-4bb9-9d52-14398026a3c1 .shg-proportional-font-size,
#s-100ff466-da4f-4bb9-9d52-14398026a3c1 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-46170944-8b75-4dfb-a22f-73c8d7ebf18a {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
}

#s-46170944-8b75-4dfb-a22f-73c8d7ebf18a .shg-proportional-font-size,
#s-46170944-8b75-4dfb-a22f-73c8d7ebf18a .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-743b79e9-2571-451e-bedb-1cf60f1d4b26 {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
}

#s-743b79e9-2571-451e-bedb-1cf60f1d4b26 .shg-proportional-font-size,
#s-743b79e9-2571-451e-bedb-1cf60f1d4b26 .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-7fda8b0d-d8bb-49e3-ad44-addb8867f7d5 {
  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-7fda8b0d-d8bb-49e3-ad44-addb8867f7d5:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-7fda8b0d-d8bb-49e3-ad44-addb8867f7d5:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-7fda8b0d-d8bb-49e3-ad44-addb8867f7d5-root {
    text-align: center;
  }


#s-7fda8b0d-d8bb-49e3-ad44-addb8867f7d5.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-7fda8b0d-d8bb-49e3-ad44-addb8867f7d5-root {
    text-align: center;
  }


#s-7fda8b0d-d8bb-49e3-ad44-addb8867f7d5.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-7fda8b0d-d8bb-49e3-ad44-addb8867f7d5-root {
    text-align: center;
  }


#s-7fda8b0d-d8bb-49e3-ad44-addb8867f7d5.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-7fda8b0d-d8bb-49e3-ad44-addb8867f7d5-root {
    text-align: center;
  }


#s-7fda8b0d-d8bb-49e3-ad44-addb8867f7d5.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-7fda8b0d-d8bb-49e3-ad44-addb8867f7d5-root {
    text-align: center;
  }


#s-7fda8b0d-d8bb-49e3-ad44-addb8867f7d5.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-2d167e6e-2705-4a65-b809-99e1c42d141a {
  margin-left: 4%;
margin-right: 4%;
text-align: left;
}
@media (min-width: 1200px){#s-2d167e6e-2705-4a65-b809-99e1c42d141a {
  display: none;
}
#s-2d167e6e-2705-4a65-b809-99e1c42d141a, #wrap-s-2d167e6e-2705-4a65-b809-99e1c42d141a, #wrap-content-s-2d167e6e-2705-4a65-b809-99e1c42d141a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2d167e6e-2705-4a65-b809-99e1c42d141a {
  display: none;
}
#s-2d167e6e-2705-4a65-b809-99e1c42d141a, #wrap-s-2d167e6e-2705-4a65-b809-99e1c42d141a, #wrap-content-s-2d167e6e-2705-4a65-b809-99e1c42d141a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2d167e6e-2705-4a65-b809-99e1c42d141a {
  display: none;
}
#s-2d167e6e-2705-4a65-b809-99e1c42d141a, #wrap-s-2d167e6e-2705-4a65-b809-99e1c42d141a, #wrap-content-s-2d167e6e-2705-4a65-b809-99e1c42d141a { display: none !important; }}
#s-50080a5e-db2b-4f78-a629-c03339514b62 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(233, 249, 239, 1);
}








#s-50080a5e-db2b-4f78-a629-c03339514b62 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-50080a5e-db2b-4f78-a629-c03339514b62.shg-box.shg-c {
  justify-content: center;
}

#s-41aa689c-ec23-47cf-9b58-1bf92e696880 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-64a262da-24ab-4db4-bb3c-6c5aec99e50f {
  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-64a262da-24ab-4db4-bb3c-6c5aec99e50f {
  display: none;
}
#s-64a262da-24ab-4db4-bb3c-6c5aec99e50f, #wrap-s-64a262da-24ab-4db4-bb3c-6c5aec99e50f, #wrap-content-s-64a262da-24ab-4db4-bb3c-6c5aec99e50f { display: none !important; }}
#s-64a262da-24ab-4db4-bb3c-6c5aec99e50f {
  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-64a262da-24ab-4db4-bb3c-6c5aec99e50f {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/480x/);
}
#s-64a262da-24ab-4db4-bb3c-6c5aec99e50f.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-64a262da-24ab-4db4-bb3c-6c5aec99e50f {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/960x/);
}
#s-64a262da-24ab-4db4-bb3c-6c5aec99e50f.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-64a262da-24ab-4db4-bb3c-6c5aec99e50f {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/768x/);
}
#s-64a262da-24ab-4db4-bb3c-6c5aec99e50f.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-64a262da-24ab-4db4-bb3c-6c5aec99e50f {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/1536x/);
}
#s-64a262da-24ab-4db4-bb3c-6c5aec99e50f.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-64a262da-24ab-4db4-bb3c-6c5aec99e50f {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/1024x/);
}
#s-64a262da-24ab-4db4-bb3c-6c5aec99e50f.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-64a262da-24ab-4db4-bb3c-6c5aec99e50f {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/2048x/);
}
#s-64a262da-24ab-4db4-bb3c-6c5aec99e50f.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-64a262da-24ab-4db4-bb3c-6c5aec99e50f {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/1200x/);
}
#s-64a262da-24ab-4db4-bb3c-6c5aec99e50f.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-64a262da-24ab-4db4-bb3c-6c5aec99e50f {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/2048x/);
}
#s-64a262da-24ab-4db4-bb3c-6c5aec99e50f.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-64a262da-24ab-4db4-bb3c-6c5aec99e50f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-64a262da-24ab-4db4-bb3c-6c5aec99e50f.shg-box.shg-c {
  justify-content: center;
}

#s-6796b6ec-0bb9-4a4b-b47c-a4dd7417ba66 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-fa6a42c5-068e-4cd7-a5c9-c426598362e6 {
  margin-left: 15%;
margin-right: 15%;
padding-bottom: 25px;
}
@media (min-width: 1200px){#s-fa6a42c5-068e-4cd7-a5c9-c426598362e6 {
  margin-left: 17%;
margin-right: 17%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-fa6a42c5-068e-4cd7-a5c9-c426598362e6 {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-fa6a42c5-068e-4cd7-a5c9-c426598362e6 {
  margin-left: 3%;
margin-right: 3%;
}
}
@media (min-width: 0px) {
[id="s-fa6a42c5-068e-4cd7-a5c9-c426598362e6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fa6a42c5-068e-4cd7-a5c9-c426598362e6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fa6a42c5-068e-4cd7-a5c9-c426598362e6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fa6a42c5-068e-4cd7-a5c9-c426598362e6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-fa6a42c5-068e-4cd7-a5c9-c426598362e6"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-b68b430e-fd3b-444c-b575-82b755543ef9 {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-b68b430e-fd3b-444c-b575-82b755543ef9 {
  margin-top: 0px;
}
}







#s-b68b430e-fd3b-444c-b575-82b755543ef9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b68b430e-fd3b-444c-b575-82b755543ef9.shg-box.shg-c {
  justify-content: center;
}

#s-3c0f4962-df23-4ae9-975b-5b5b0f2b5e04 {
  margin-left: auto;
margin-right: auto;
padding-left: 1%;
}

#s-3c0f4962-df23-4ae9-975b-5b5b0f2b5e04 .shg-proportional-font-size,
#s-3c0f4962-df23-4ae9-975b-5b5b0f2b5e04 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-3576ba3a-b51a-470d-8a3f-baaa267bd150 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
}
@media (max-width: 767px){#s-3576ba3a-b51a-470d-8a3f-baaa267bd150 {
  display: none;
}
#s-3576ba3a-b51a-470d-8a3f-baaa267bd150, #wrap-s-3576ba3a-b51a-470d-8a3f-baaa267bd150, #wrap-content-s-3576ba3a-b51a-470d-8a3f-baaa267bd150 { display: none !important; }}
#s-3576ba3a-b51a-470d-8a3f-baaa267bd150 .shg-proportional-font-size,
#s-3576ba3a-b51a-470d-8a3f-baaa267bd150 .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-3576ba3a-b51a-470d-8a3f-baaa267bd150 .shg-proportional-font-size,
#s-3576ba3a-b51a-470d-8a3f-baaa267bd150 .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-3576ba3a-b51a-470d-8a3f-baaa267bd150 .shg-proportional-font-size,
#s-3576ba3a-b51a-470d-8a3f-baaa267bd150 .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-3576ba3a-b51a-470d-8a3f-baaa267bd150 .shg-proportional-font-size,
#s-3576ba3a-b51a-470d-8a3f-baaa267bd150 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}
}
#s-63d028b5-a26b-47ca-a19a-29805a958de6 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
}
@media (min-width: 1200px){#s-63d028b5-a26b-47ca-a19a-29805a958de6 {
  display: none;
}
#s-63d028b5-a26b-47ca-a19a-29805a958de6, #wrap-s-63d028b5-a26b-47ca-a19a-29805a958de6, #wrap-content-s-63d028b5-a26b-47ca-a19a-29805a958de6 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-63d028b5-a26b-47ca-a19a-29805a958de6 {
  display: none;
}
#s-63d028b5-a26b-47ca-a19a-29805a958de6, #wrap-s-63d028b5-a26b-47ca-a19a-29805a958de6, #wrap-content-s-63d028b5-a26b-47ca-a19a-29805a958de6 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-63d028b5-a26b-47ca-a19a-29805a958de6 {
  display: none;
}
#s-63d028b5-a26b-47ca-a19a-29805a958de6, #wrap-s-63d028b5-a26b-47ca-a19a-29805a958de6, #wrap-content-s-63d028b5-a26b-47ca-a19a-29805a958de6 { display: none !important; }}
#s-63d028b5-a26b-47ca-a19a-29805a958de6 .shg-proportional-font-size,
#s-63d028b5-a26b-47ca-a19a-29805a958de6 .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-63d028b5-a26b-47ca-a19a-29805a958de6 .shg-proportional-font-size,
#s-63d028b5-a26b-47ca-a19a-29805a958de6 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}
}
#s-fb7acec3-2455-4a1a-9fd0-f8d0cc7c18ed {
  margin-left: auto;
margin-right: auto;
}

#s-fb7acec3-2455-4a1a-9fd0-f8d0cc7c18ed .shg-proportional-font-size,
#s-fb7acec3-2455-4a1a-9fd0-f8d0cc7c18ed .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-c0df5a47-4935-4517-94bc-f1b4f4c50133 {
  margin-left: auto;
margin-right: auto;
}

#s-c0df5a47-4935-4517-94bc-f1b4f4c50133 .shg-proportional-font-size,
#s-c0df5a47-4935-4517-94bc-f1b4f4c50133 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-88837cc5-0d25-4c51-9463-9c5852872ae5 {
  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-88837cc5-0d25-4c51-9463-9c5852872ae5:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-88837cc5-0d25-4c51-9463-9c5852872ae5:active {background-color: rgba(0, 172, 78, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-88837cc5-0d25-4c51-9463-9c5852872ae5-root {
    text-align: left;
  }


#s-88837cc5-0d25-4c51-9463-9c5852872ae5.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-88837cc5-0d25-4c51-9463-9c5852872ae5-root {
    text-align: left;
  }


#s-88837cc5-0d25-4c51-9463-9c5852872ae5.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-88837cc5-0d25-4c51-9463-9c5852872ae5-root {
    text-align: left;
  }


#s-88837cc5-0d25-4c51-9463-9c5852872ae5.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-88837cc5-0d25-4c51-9463-9c5852872ae5-root {
    text-align: left;
  }


#s-88837cc5-0d25-4c51-9463-9c5852872ae5.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-88837cc5-0d25-4c51-9463-9c5852872ae5-root {
    text-align: left;
  }


#s-88837cc5-0d25-4c51-9463-9c5852872ae5.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-449f3962-e0ac-4405-99af-3d63a7e7cdfb {
  margin-top: 25px;
margin-left: 0%;
margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-449f3962-e0ac-4405-99af-3d63a7e7cdfb"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-449f3962-e0ac-4405-99af-3d63a7e7cdfb"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 8.333333333333334px);
}

[id="s-449f3962-e0ac-4405-99af-3d63a7e7cdfb"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 8.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-449f3962-e0ac-4405-99af-3d63a7e7cdfb"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 8.333333333333334px);
}

[id="s-449f3962-e0ac-4405-99af-3d63a7e7cdfb"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 8.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-449f3962-e0ac-4405-99af-3d63a7e7cdfb"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 8.333333333333334px);
}

[id="s-449f3962-e0ac-4405-99af-3d63a7e7cdfb"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 8.333333333333334px);
}

}

#s-83e28b38-5442-4920-a7c2-ed187d57bb76 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
max-width: 25px;
text-align: left;
}

#s-83e28b38-5442-4920-a7c2-ed187d57bb76 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-83e28b38-5442-4920-a7c2-ed187d57bb76-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-83e28b38-5442-4920-a7c2-ed187d57bb76 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-83e28b38-5442-4920-a7c2-ed187d57bb76 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-83e28b38-5442-4920-a7c2-ed187d57bb76 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-83e28b38-5442-4920-a7c2-ed187d57bb76 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-83e28b38-5442-4920-a7c2-ed187d57bb76 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-83e28b38-5442-4920-a7c2-ed187d57bb76.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-83e28b38-5442-4920-a7c2-ed187d57bb76.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83e28b38-5442-4920-a7c2-ed187d57bb76.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-83e28b38-5442-4920-a7c2-ed187d57bb76 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-83e28b38-5442-4920-a7c2-ed187d57bb76-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-83e28b38-5442-4920-a7c2-ed187d57bb76 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-83e28b38-5442-4920-a7c2-ed187d57bb76 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-83e28b38-5442-4920-a7c2-ed187d57bb76 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-83e28b38-5442-4920-a7c2-ed187d57bb76 img.shogun-image {
  width: 100%;
  
  
  

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




.s-83e28b38-5442-4920-a7c2-ed187d57bb76 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-83e28b38-5442-4920-a7c2-ed187d57bb76.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-83e28b38-5442-4920-a7c2-ed187d57bb76.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83e28b38-5442-4920-a7c2-ed187d57bb76.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-83e28b38-5442-4920-a7c2-ed187d57bb76 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-83e28b38-5442-4920-a7c2-ed187d57bb76-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-83e28b38-5442-4920-a7c2-ed187d57bb76 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-83e28b38-5442-4920-a7c2-ed187d57bb76 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-83e28b38-5442-4920-a7c2-ed187d57bb76 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-83e28b38-5442-4920-a7c2-ed187d57bb76 img.shogun-image {
  width: 100%;
  
  
  

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




.s-83e28b38-5442-4920-a7c2-ed187d57bb76 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-83e28b38-5442-4920-a7c2-ed187d57bb76.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-83e28b38-5442-4920-a7c2-ed187d57bb76.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83e28b38-5442-4920-a7c2-ed187d57bb76.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-83e28b38-5442-4920-a7c2-ed187d57bb76 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-83e28b38-5442-4920-a7c2-ed187d57bb76-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-83e28b38-5442-4920-a7c2-ed187d57bb76 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-83e28b38-5442-4920-a7c2-ed187d57bb76 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-83e28b38-5442-4920-a7c2-ed187d57bb76 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-83e28b38-5442-4920-a7c2-ed187d57bb76 img.shogun-image {
  width: 100%;
  
  
  

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




.s-83e28b38-5442-4920-a7c2-ed187d57bb76 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-83e28b38-5442-4920-a7c2-ed187d57bb76.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-83e28b38-5442-4920-a7c2-ed187d57bb76.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83e28b38-5442-4920-a7c2-ed187d57bb76.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-83e28b38-5442-4920-a7c2-ed187d57bb76 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-83e28b38-5442-4920-a7c2-ed187d57bb76-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-83e28b38-5442-4920-a7c2-ed187d57bb76 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-83e28b38-5442-4920-a7c2-ed187d57bb76 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-83e28b38-5442-4920-a7c2-ed187d57bb76 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-83e28b38-5442-4920-a7c2-ed187d57bb76 img.shogun-image {
  width: 100%;
  
  
  

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




.s-83e28b38-5442-4920-a7c2-ed187d57bb76 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-83e28b38-5442-4920-a7c2-ed187d57bb76.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-83e28b38-5442-4920-a7c2-ed187d57bb76.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83e28b38-5442-4920-a7c2-ed187d57bb76.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-3a1d52ca-b8d8-43d5-be50-a38d83405881 {
  margin-left: 0%;
margin-right: 5%;
}

#s-3a1d52ca-b8d8-43d5-be50-a38d83405881 .shg-proportional-font-size,
#s-3a1d52ca-b8d8-43d5-be50-a38d83405881 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-95e52063-1507-497b-bcaa-1e0eb14a6f61 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
max-width: 25px;
text-align: left;
}

#s-95e52063-1507-497b-bcaa-1e0eb14a6f61 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-95e52063-1507-497b-bcaa-1e0eb14a6f61-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-95e52063-1507-497b-bcaa-1e0eb14a6f61 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-95e52063-1507-497b-bcaa-1e0eb14a6f61 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-95e52063-1507-497b-bcaa-1e0eb14a6f61 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-95e52063-1507-497b-bcaa-1e0eb14a6f61 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-95e52063-1507-497b-bcaa-1e0eb14a6f61 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-95e52063-1507-497b-bcaa-1e0eb14a6f61.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-95e52063-1507-497b-bcaa-1e0eb14a6f61.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-95e52063-1507-497b-bcaa-1e0eb14a6f61.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-95e52063-1507-497b-bcaa-1e0eb14a6f61 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-95e52063-1507-497b-bcaa-1e0eb14a6f61-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-95e52063-1507-497b-bcaa-1e0eb14a6f61 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-95e52063-1507-497b-bcaa-1e0eb14a6f61 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-95e52063-1507-497b-bcaa-1e0eb14a6f61 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-95e52063-1507-497b-bcaa-1e0eb14a6f61 img.shogun-image {
  width: 100%;
  
  
  

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




.s-95e52063-1507-497b-bcaa-1e0eb14a6f61 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-95e52063-1507-497b-bcaa-1e0eb14a6f61.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-95e52063-1507-497b-bcaa-1e0eb14a6f61.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-95e52063-1507-497b-bcaa-1e0eb14a6f61.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-95e52063-1507-497b-bcaa-1e0eb14a6f61 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-95e52063-1507-497b-bcaa-1e0eb14a6f61-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-95e52063-1507-497b-bcaa-1e0eb14a6f61 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-95e52063-1507-497b-bcaa-1e0eb14a6f61 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-95e52063-1507-497b-bcaa-1e0eb14a6f61 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-95e52063-1507-497b-bcaa-1e0eb14a6f61 img.shogun-image {
  width: 100%;
  
  
  

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




.s-95e52063-1507-497b-bcaa-1e0eb14a6f61 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-95e52063-1507-497b-bcaa-1e0eb14a6f61.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-95e52063-1507-497b-bcaa-1e0eb14a6f61.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-95e52063-1507-497b-bcaa-1e0eb14a6f61.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-95e52063-1507-497b-bcaa-1e0eb14a6f61 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-95e52063-1507-497b-bcaa-1e0eb14a6f61-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-95e52063-1507-497b-bcaa-1e0eb14a6f61 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-95e52063-1507-497b-bcaa-1e0eb14a6f61 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-95e52063-1507-497b-bcaa-1e0eb14a6f61 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-95e52063-1507-497b-bcaa-1e0eb14a6f61 img.shogun-image {
  width: 100%;
  
  
  

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




.s-95e52063-1507-497b-bcaa-1e0eb14a6f61 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-95e52063-1507-497b-bcaa-1e0eb14a6f61.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-95e52063-1507-497b-bcaa-1e0eb14a6f61.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-95e52063-1507-497b-bcaa-1e0eb14a6f61.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-95e52063-1507-497b-bcaa-1e0eb14a6f61 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-95e52063-1507-497b-bcaa-1e0eb14a6f61-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-95e52063-1507-497b-bcaa-1e0eb14a6f61 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-95e52063-1507-497b-bcaa-1e0eb14a6f61 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-95e52063-1507-497b-bcaa-1e0eb14a6f61 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-95e52063-1507-497b-bcaa-1e0eb14a6f61 img.shogun-image {
  width: 100%;
  
  
  

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




.s-95e52063-1507-497b-bcaa-1e0eb14a6f61 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-95e52063-1507-497b-bcaa-1e0eb14a6f61.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-95e52063-1507-497b-bcaa-1e0eb14a6f61.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-95e52063-1507-497b-bcaa-1e0eb14a6f61.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-f73caf2c-448e-40ae-81a4-d21a7461b562 {
  margin-left: -10%;
margin-right: -10%;
}

#s-f73caf2c-448e-40ae-81a4-d21a7461b562 .shg-proportional-font-size,
#s-f73caf2c-448e-40ae-81a4-d21a7461b562 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
max-width: 25px;
text-align: left;
}

#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 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-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 img.shogun-image {
  width: 100%;
  
  
  

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




.s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 img.shogun-image {
  width: 100%;
  
  
  

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




.s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 img.shogun-image {
  width: 100%;
  
  
  

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




.s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 img.shogun-image {
  width: 100%;
  
  
  

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




.s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea2eb522-0e83-49b0-8bff-9cb40f03cb55.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-d6322ff2-b42f-415d-ba88-5a95ba41f530 {
  margin-left: 2%;
margin-right: 2%;
}

#s-d6322ff2-b42f-415d-ba88-5a95ba41f530 .shg-proportional-font-size,
#s-d6322ff2-b42f-415d-ba88-5a95ba41f530 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-3a20e21d-7167-44fd-916b-1b2bb0d33912 {
  margin-top: 35px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
max-width: 100%;
text-align: center;
}

#s-3a20e21d-7167-44fd-916b-1b2bb0d33912 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3a20e21d-7167-44fd-916b-1b2bb0d33912-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3a20e21d-7167-44fd-916b-1b2bb0d33912 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-3a20e21d-7167-44fd-916b-1b2bb0d33912 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  padding-top: 50px;
  padding-bottom: 50px;
}


.shg-image-content-margin-container-s-3a20e21d-7167-44fd-916b-1b2bb0d33912 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3a20e21d-7167-44fd-916b-1b2bb0d33912 img.shogun-image {
  width: 100%;
  
  
  max-width: 100%;

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




.s-3a20e21d-7167-44fd-916b-1b2bb0d33912 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3a20e21d-7167-44fd-916b-1b2bb0d33912.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a20e21d-7167-44fd-916b-1b2bb0d33912.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a20e21d-7167-44fd-916b-1b2bb0d33912.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-3a20e21d-7167-44fd-916b-1b2bb0d33912 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3a20e21d-7167-44fd-916b-1b2bb0d33912-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3a20e21d-7167-44fd-916b-1b2bb0d33912 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3a20e21d-7167-44fd-916b-1b2bb0d33912 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-3a20e21d-7167-44fd-916b-1b2bb0d33912 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3a20e21d-7167-44fd-916b-1b2bb0d33912 img.shogun-image {
  width: 100%;
  
  
  

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




.s-3a20e21d-7167-44fd-916b-1b2bb0d33912 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3a20e21d-7167-44fd-916b-1b2bb0d33912.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a20e21d-7167-44fd-916b-1b2bb0d33912.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a20e21d-7167-44fd-916b-1b2bb0d33912.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-3a20e21d-7167-44fd-916b-1b2bb0d33912 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3a20e21d-7167-44fd-916b-1b2bb0d33912-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3a20e21d-7167-44fd-916b-1b2bb0d33912 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3a20e21d-7167-44fd-916b-1b2bb0d33912 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-3a20e21d-7167-44fd-916b-1b2bb0d33912 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3a20e21d-7167-44fd-916b-1b2bb0d33912 img.shogun-image {
  width: 100%;
  
  
  

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




.s-3a20e21d-7167-44fd-916b-1b2bb0d33912 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3a20e21d-7167-44fd-916b-1b2bb0d33912.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a20e21d-7167-44fd-916b-1b2bb0d33912.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a20e21d-7167-44fd-916b-1b2bb0d33912.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-3a20e21d-7167-44fd-916b-1b2bb0d33912 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3a20e21d-7167-44fd-916b-1b2bb0d33912-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3a20e21d-7167-44fd-916b-1b2bb0d33912 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3a20e21d-7167-44fd-916b-1b2bb0d33912 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-3a20e21d-7167-44fd-916b-1b2bb0d33912 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3a20e21d-7167-44fd-916b-1b2bb0d33912 img.shogun-image {
  width: 100%;
  
  
  

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




.s-3a20e21d-7167-44fd-916b-1b2bb0d33912 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3a20e21d-7167-44fd-916b-1b2bb0d33912.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a20e21d-7167-44fd-916b-1b2bb0d33912.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a20e21d-7167-44fd-916b-1b2bb0d33912.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-3a20e21d-7167-44fd-916b-1b2bb0d33912 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3a20e21d-7167-44fd-916b-1b2bb0d33912-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3a20e21d-7167-44fd-916b-1b2bb0d33912 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3a20e21d-7167-44fd-916b-1b2bb0d33912 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-3a20e21d-7167-44fd-916b-1b2bb0d33912 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3a20e21d-7167-44fd-916b-1b2bb0d33912 img.shogun-image {
  width: 100%;
  
  
  

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




.s-3a20e21d-7167-44fd-916b-1b2bb0d33912 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3a20e21d-7167-44fd-916b-1b2bb0d33912.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a20e21d-7167-44fd-916b-1b2bb0d33912.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a20e21d-7167-44fd-916b-1b2bb0d33912.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-d6a89523-ad81-41c8-bed5-1405126b7cba {
  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-d6a89523-ad81-41c8-bed5-1405126b7cba {
  display: none;
}
#s-d6a89523-ad81-41c8-bed5-1405126b7cba, #wrap-s-d6a89523-ad81-41c8-bed5-1405126b7cba, #wrap-content-s-d6a89523-ad81-41c8-bed5-1405126b7cba { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d6a89523-ad81-41c8-bed5-1405126b7cba {
  display: none;
}
#s-d6a89523-ad81-41c8-bed5-1405126b7cba, #wrap-s-d6a89523-ad81-41c8-bed5-1405126b7cba, #wrap-content-s-d6a89523-ad81-41c8-bed5-1405126b7cba { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d6a89523-ad81-41c8-bed5-1405126b7cba {
  display: none;
}
#s-d6a89523-ad81-41c8-bed5-1405126b7cba, #wrap-s-d6a89523-ad81-41c8-bed5-1405126b7cba, #wrap-content-s-d6a89523-ad81-41c8-bed5-1405126b7cba { display: none !important; }}@media (max-width: 767px){#s-d6a89523-ad81-41c8-bed5-1405126b7cba {
  
}
}
#s-d6a89523-ad81-41c8-bed5-1405126b7cba {
  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-d6a89523-ad81-41c8-bed5-1405126b7cba {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/480x/);
}
#s-d6a89523-ad81-41c8-bed5-1405126b7cba.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-d6a89523-ad81-41c8-bed5-1405126b7cba {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/960x/);
}
#s-d6a89523-ad81-41c8-bed5-1405126b7cba.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-d6a89523-ad81-41c8-bed5-1405126b7cba {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/768x/);
}
#s-d6a89523-ad81-41c8-bed5-1405126b7cba.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-d6a89523-ad81-41c8-bed5-1405126b7cba {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/1536x/);
}
#s-d6a89523-ad81-41c8-bed5-1405126b7cba.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-d6a89523-ad81-41c8-bed5-1405126b7cba {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/1024x/);
}
#s-d6a89523-ad81-41c8-bed5-1405126b7cba.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-d6a89523-ad81-41c8-bed5-1405126b7cba {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/2048x/);
}
#s-d6a89523-ad81-41c8-bed5-1405126b7cba.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-d6a89523-ad81-41c8-bed5-1405126b7cba {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/1200x/);
}
#s-d6a89523-ad81-41c8-bed5-1405126b7cba.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-d6a89523-ad81-41c8-bed5-1405126b7cba {
  background-image: url(https://i.shgcdn.com/d90d425f-953a-4b04-9d4e-14f99c7c9de3/-/resize/2048x/);
}
#s-d6a89523-ad81-41c8-bed5-1405126b7cba.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-d6a89523-ad81-41c8-bed5-1405126b7cba > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d6a89523-ad81-41c8-bed5-1405126b7cba.shg-box.shg-c {
  justify-content: center;
}

#s-e3e0d1e6-4182-454d-9c3d-c464d0263b72 {
  margin-left: 15%;
margin-right: 15%;
padding-bottom: 25px;
}
@media (min-width: 1200px){#s-e3e0d1e6-4182-454d-9c3d-c464d0263b72 {
  margin-left: 20%;
margin-right: 20%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-e3e0d1e6-4182-454d-9c3d-c464d0263b72 {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-e3e0d1e6-4182-454d-9c3d-c464d0263b72 {
  margin-left: 3%;
margin-right: 3%;
}
}
@media (min-width: 0px) {
[id="s-e3e0d1e6-4182-454d-9c3d-c464d0263b72"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e3e0d1e6-4182-454d-9c3d-c464d0263b72"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e3e0d1e6-4182-454d-9c3d-c464d0263b72"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e3e0d1e6-4182-454d-9c3d-c464d0263b72"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-e3e0d1e6-4182-454d-9c3d-c464d0263b72"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-047199be-6fb8-42b5-9c5b-cb0a55fc939c {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-047199be-6fb8-42b5-9c5b-cb0a55fc939c {
  margin-top: 0px;
}
}







#s-047199be-6fb8-42b5-9c5b-cb0a55fc939c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-047199be-6fb8-42b5-9c5b-cb0a55fc939c.shg-box.shg-c {
  justify-content: center;
}

#s-6c5106aa-db77-48cc-999b-b3994a16a902 {
  margin-left: auto;
margin-right: auto;
padding-left: 1%;
}

#s-6c5106aa-db77-48cc-999b-b3994a16a902 .shg-proportional-font-size,
#s-6c5106aa-db77-48cc-999b-b3994a16a902 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-850f222b-b526-4731-a265-0047e4cbc510 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
}
@media (max-width: 767px){#s-850f222b-b526-4731-a265-0047e4cbc510 {
  display: none;
}
#s-850f222b-b526-4731-a265-0047e4cbc510, #wrap-s-850f222b-b526-4731-a265-0047e4cbc510, #wrap-content-s-850f222b-b526-4731-a265-0047e4cbc510 { display: none !important; }}
#s-850f222b-b526-4731-a265-0047e4cbc510 .shg-proportional-font-size,
#s-850f222b-b526-4731-a265-0047e4cbc510 .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-850f222b-b526-4731-a265-0047e4cbc510 .shg-proportional-font-size,
#s-850f222b-b526-4731-a265-0047e4cbc510 .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-850f222b-b526-4731-a265-0047e4cbc510 .shg-proportional-font-size,
#s-850f222b-b526-4731-a265-0047e4cbc510 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}
}
#s-f4d6a980-3de8-4054-b99b-1f158423912a {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
}
@media (min-width: 1200px){#s-f4d6a980-3de8-4054-b99b-1f158423912a {
  display: none;
}
#s-f4d6a980-3de8-4054-b99b-1f158423912a, #wrap-s-f4d6a980-3de8-4054-b99b-1f158423912a, #wrap-content-s-f4d6a980-3de8-4054-b99b-1f158423912a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f4d6a980-3de8-4054-b99b-1f158423912a {
  display: none;
}
#s-f4d6a980-3de8-4054-b99b-1f158423912a, #wrap-s-f4d6a980-3de8-4054-b99b-1f158423912a, #wrap-content-s-f4d6a980-3de8-4054-b99b-1f158423912a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f4d6a980-3de8-4054-b99b-1f158423912a {
  display: none;
}
#s-f4d6a980-3de8-4054-b99b-1f158423912a, #wrap-s-f4d6a980-3de8-4054-b99b-1f158423912a, #wrap-content-s-f4d6a980-3de8-4054-b99b-1f158423912a { display: none !important; }}@media (max-width: 767px){#s-f4d6a980-3de8-4054-b99b-1f158423912a {
  
}
}
#s-f4d6a980-3de8-4054-b99b-1f158423912a .shg-proportional-font-size,
#s-f4d6a980-3de8-4054-b99b-1f158423912a .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-f4d6a980-3de8-4054-b99b-1f158423912a .shg-proportional-font-size,
#s-f4d6a980-3de8-4054-b99b-1f158423912a .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}
}
#s-4ef9fb58-a203-412f-98b4-81a45d8f065f {
  margin-left: auto;
margin-right: auto;
}

#s-4ef9fb58-a203-412f-98b4-81a45d8f065f .shg-proportional-font-size,
#s-4ef9fb58-a203-412f-98b4-81a45d8f065f .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-c65db89e-1635-4b8f-901a-c2751b3068d6 {
  margin-left: auto;
margin-right: auto;
}

#s-c65db89e-1635-4b8f-901a-c2751b3068d6 .shg-proportional-font-size,
#s-c65db89e-1635-4b8f-901a-c2751b3068d6 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-d02c53da-721a-483d-80d8-309b5e649bb2 {
  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-d02c53da-721a-483d-80d8-309b5e649bb2:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-d02c53da-721a-483d-80d8-309b5e649bb2:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-d02c53da-721a-483d-80d8-309b5e649bb2-root {
    text-align: left;
  }


#s-d02c53da-721a-483d-80d8-309b5e649bb2.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d02c53da-721a-483d-80d8-309b5e649bb2-root {
    text-align: left;
  }


#s-d02c53da-721a-483d-80d8-309b5e649bb2.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-d02c53da-721a-483d-80d8-309b5e649bb2-root {
    text-align: left;
  }


#s-d02c53da-721a-483d-80d8-309b5e649bb2.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-d02c53da-721a-483d-80d8-309b5e649bb2-root {
    text-align: left;
  }


#s-d02c53da-721a-483d-80d8-309b5e649bb2.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d02c53da-721a-483d-80d8-309b5e649bb2-root {
    text-align: left;
  }


#s-d02c53da-721a-483d-80d8-309b5e649bb2.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-73d7669b-b6b1-4b81-9438-9c31aa7766dc {
  margin-top: 25px;
margin-left: 0%;
margin-right: 0%;
}
@media (min-width: 1200px){#s-73d7669b-b6b1-4b81-9438-9c31aa7766dc {
  display: none;
}
#s-73d7669b-b6b1-4b81-9438-9c31aa7766dc, #wrap-s-73d7669b-b6b1-4b81-9438-9c31aa7766dc, #wrap-content-s-73d7669b-b6b1-4b81-9438-9c31aa7766dc { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-73d7669b-b6b1-4b81-9438-9c31aa7766dc {
  display: none;
}
#s-73d7669b-b6b1-4b81-9438-9c31aa7766dc, #wrap-s-73d7669b-b6b1-4b81-9438-9c31aa7766dc, #wrap-content-s-73d7669b-b6b1-4b81-9438-9c31aa7766dc { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-73d7669b-b6b1-4b81-9438-9c31aa7766dc {
  display: none;
}
#s-73d7669b-b6b1-4b81-9438-9c31aa7766dc, #wrap-s-73d7669b-b6b1-4b81-9438-9c31aa7766dc, #wrap-content-s-73d7669b-b6b1-4b81-9438-9c31aa7766dc { display: none !important; }}@media (max-width: 767px){#s-73d7669b-b6b1-4b81-9438-9c31aa7766dc {
  margin-left: -5%;
}
}
@media (min-width: 0px) {
[id="s-73d7669b-b6b1-4b81-9438-9c31aa7766dc"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-73d7669b-b6b1-4b81-9438-9c31aa7766dc"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-73d7669b-b6b1-4b81-9438-9c31aa7766dc"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-73d7669b-b6b1-4b81-9438-9c31aa7766dc"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-73d7669b-b6b1-4b81-9438-9c31aa7766dc"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-73d7669b-b6b1-4b81-9438-9c31aa7766dc"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-73d7669b-b6b1-4b81-9438-9c31aa7766dc"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-f531a804-8dd6-442b-805f-2c6a5a3849a0 {
  margin-top: 5px;
margin-left: auto;
margin-right: auto;
max-width: 25px;
text-align: center;
}
@media (max-width: 767px){#s-f531a804-8dd6-442b-805f-2c6a5a3849a0 {
  margin-top: 10px;
}
}
#s-f531a804-8dd6-442b-805f-2c6a5a3849a0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f531a804-8dd6-442b-805f-2c6a5a3849a0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f531a804-8dd6-442b-805f-2c6a5a3849a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-f531a804-8dd6-442b-805f-2c6a5a3849a0 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-f531a804-8dd6-442b-805f-2c6a5a3849a0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f531a804-8dd6-442b-805f-2c6a5a3849a0 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-f531a804-8dd6-442b-805f-2c6a5a3849a0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f531a804-8dd6-442b-805f-2c6a5a3849a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f531a804-8dd6-442b-805f-2c6a5a3849a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f531a804-8dd6-442b-805f-2c6a5a3849a0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-f531a804-8dd6-442b-805f-2c6a5a3849a0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f531a804-8dd6-442b-805f-2c6a5a3849a0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f531a804-8dd6-442b-805f-2c6a5a3849a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f531a804-8dd6-442b-805f-2c6a5a3849a0 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-f531a804-8dd6-442b-805f-2c6a5a3849a0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f531a804-8dd6-442b-805f-2c6a5a3849a0 img.shogun-image {
  width: 100%;
  
  
  

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




.s-f531a804-8dd6-442b-805f-2c6a5a3849a0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f531a804-8dd6-442b-805f-2c6a5a3849a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f531a804-8dd6-442b-805f-2c6a5a3849a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f531a804-8dd6-442b-805f-2c6a5a3849a0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-f531a804-8dd6-442b-805f-2c6a5a3849a0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f531a804-8dd6-442b-805f-2c6a5a3849a0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f531a804-8dd6-442b-805f-2c6a5a3849a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f531a804-8dd6-442b-805f-2c6a5a3849a0 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-f531a804-8dd6-442b-805f-2c6a5a3849a0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f531a804-8dd6-442b-805f-2c6a5a3849a0 img.shogun-image {
  width: 100%;
  
  
  

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




.s-f531a804-8dd6-442b-805f-2c6a5a3849a0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f531a804-8dd6-442b-805f-2c6a5a3849a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f531a804-8dd6-442b-805f-2c6a5a3849a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f531a804-8dd6-442b-805f-2c6a5a3849a0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-f531a804-8dd6-442b-805f-2c6a5a3849a0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f531a804-8dd6-442b-805f-2c6a5a3849a0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f531a804-8dd6-442b-805f-2c6a5a3849a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f531a804-8dd6-442b-805f-2c6a5a3849a0 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-f531a804-8dd6-442b-805f-2c6a5a3849a0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f531a804-8dd6-442b-805f-2c6a5a3849a0 img.shogun-image {
  width: 100%;
  
  
  

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




.s-f531a804-8dd6-442b-805f-2c6a5a3849a0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f531a804-8dd6-442b-805f-2c6a5a3849a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f531a804-8dd6-442b-805f-2c6a5a3849a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f531a804-8dd6-442b-805f-2c6a5a3849a0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-f531a804-8dd6-442b-805f-2c6a5a3849a0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f531a804-8dd6-442b-805f-2c6a5a3849a0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f531a804-8dd6-442b-805f-2c6a5a3849a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-f531a804-8dd6-442b-805f-2c6a5a3849a0 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-f531a804-8dd6-442b-805f-2c6a5a3849a0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f531a804-8dd6-442b-805f-2c6a5a3849a0 img.shogun-image {
  width: 100%;
  
  
  

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




.s-f531a804-8dd6-442b-805f-2c6a5a3849a0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f531a804-8dd6-442b-805f-2c6a5a3849a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f531a804-8dd6-442b-805f-2c6a5a3849a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f531a804-8dd6-442b-805f-2c6a5a3849a0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-a3969e69-1d44-4015-be62-aecdc3911ee9 {
  margin-left: 0%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
}
@media (max-width: 767px){#s-a3969e69-1d44-4015-be62-aecdc3911ee9 {
  margin-left: -20%;
margin-right: 18%;
}
}
#s-a3969e69-1d44-4015-be62-aecdc3911ee9 .shg-proportional-font-size,
#s-a3969e69-1d44-4015-be62-aecdc3911ee9 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-52d0a209-f064-4a23-a870-fbdcd0114497 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
max-width: 25px;
text-align: center;
}

#s-52d0a209-f064-4a23-a870-fbdcd0114497 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-52d0a209-f064-4a23-a870-fbdcd0114497-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-52d0a209-f064-4a23-a870-fbdcd0114497 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-52d0a209-f064-4a23-a870-fbdcd0114497 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-52d0a209-f064-4a23-a870-fbdcd0114497 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-52d0a209-f064-4a23-a870-fbdcd0114497 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-52d0a209-f064-4a23-a870-fbdcd0114497 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-52d0a209-f064-4a23-a870-fbdcd0114497.shg-align-container {
  display: flex;
  justify-content: center
}

.s-52d0a209-f064-4a23-a870-fbdcd0114497.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-52d0a209-f064-4a23-a870-fbdcd0114497.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-52d0a209-f064-4a23-a870-fbdcd0114497 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-52d0a209-f064-4a23-a870-fbdcd0114497-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-52d0a209-f064-4a23-a870-fbdcd0114497 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-52d0a209-f064-4a23-a870-fbdcd0114497 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-52d0a209-f064-4a23-a870-fbdcd0114497 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-52d0a209-f064-4a23-a870-fbdcd0114497 img.shogun-image {
  width: 100%;
  
  
  

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




.s-52d0a209-f064-4a23-a870-fbdcd0114497 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-52d0a209-f064-4a23-a870-fbdcd0114497.shg-align-container {
  display: flex;
  justify-content: center
}

.s-52d0a209-f064-4a23-a870-fbdcd0114497.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-52d0a209-f064-4a23-a870-fbdcd0114497.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-52d0a209-f064-4a23-a870-fbdcd0114497 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-52d0a209-f064-4a23-a870-fbdcd0114497-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-52d0a209-f064-4a23-a870-fbdcd0114497 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-52d0a209-f064-4a23-a870-fbdcd0114497 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-52d0a209-f064-4a23-a870-fbdcd0114497 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-52d0a209-f064-4a23-a870-fbdcd0114497 img.shogun-image {
  width: 100%;
  
  
  

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




.s-52d0a209-f064-4a23-a870-fbdcd0114497 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-52d0a209-f064-4a23-a870-fbdcd0114497.shg-align-container {
  display: flex;
  justify-content: center
}

.s-52d0a209-f064-4a23-a870-fbdcd0114497.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-52d0a209-f064-4a23-a870-fbdcd0114497.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-52d0a209-f064-4a23-a870-fbdcd0114497 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-52d0a209-f064-4a23-a870-fbdcd0114497-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-52d0a209-f064-4a23-a870-fbdcd0114497 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-52d0a209-f064-4a23-a870-fbdcd0114497 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-52d0a209-f064-4a23-a870-fbdcd0114497 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-52d0a209-f064-4a23-a870-fbdcd0114497 img.shogun-image {
  width: 100%;
  
  
  

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




.s-52d0a209-f064-4a23-a870-fbdcd0114497 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-52d0a209-f064-4a23-a870-fbdcd0114497.shg-align-container {
  display: flex;
  justify-content: center
}

.s-52d0a209-f064-4a23-a870-fbdcd0114497.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-52d0a209-f064-4a23-a870-fbdcd0114497.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-52d0a209-f064-4a23-a870-fbdcd0114497 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-52d0a209-f064-4a23-a870-fbdcd0114497-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-52d0a209-f064-4a23-a870-fbdcd0114497 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-52d0a209-f064-4a23-a870-fbdcd0114497 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-52d0a209-f064-4a23-a870-fbdcd0114497 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-52d0a209-f064-4a23-a870-fbdcd0114497 img.shogun-image {
  width: 100%;
  
  
  

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




.s-52d0a209-f064-4a23-a870-fbdcd0114497 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-52d0a209-f064-4a23-a870-fbdcd0114497.shg-align-container {
  display: flex;
  justify-content: center
}

.s-52d0a209-f064-4a23-a870-fbdcd0114497.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-52d0a209-f064-4a23-a870-fbdcd0114497.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-8dfabb56-da09-42f1-8ba5-247d4ee70312 {
  margin-left: 0%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
}
@media (max-width: 767px){#s-8dfabb56-da09-42f1-8ba5-247d4ee70312 {
  margin-left: -30%;
}
}
#s-8dfabb56-da09-42f1-8ba5-247d4ee70312 .shg-proportional-font-size,
#s-8dfabb56-da09-42f1-8ba5-247d4ee70312 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-046d9cf1-415a-4609-a17f-ee3e072c2557 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
max-width: 25px;
text-align: center;
}

#s-046d9cf1-415a-4609-a17f-ee3e072c2557 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-046d9cf1-415a-4609-a17f-ee3e072c2557-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-046d9cf1-415a-4609-a17f-ee3e072c2557 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-046d9cf1-415a-4609-a17f-ee3e072c2557 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-046d9cf1-415a-4609-a17f-ee3e072c2557 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-046d9cf1-415a-4609-a17f-ee3e072c2557 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-046d9cf1-415a-4609-a17f-ee3e072c2557 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-046d9cf1-415a-4609-a17f-ee3e072c2557.shg-align-container {
  display: flex;
  justify-content: center
}

.s-046d9cf1-415a-4609-a17f-ee3e072c2557.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-046d9cf1-415a-4609-a17f-ee3e072c2557.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-046d9cf1-415a-4609-a17f-ee3e072c2557 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-046d9cf1-415a-4609-a17f-ee3e072c2557-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-046d9cf1-415a-4609-a17f-ee3e072c2557 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-046d9cf1-415a-4609-a17f-ee3e072c2557 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-046d9cf1-415a-4609-a17f-ee3e072c2557 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-046d9cf1-415a-4609-a17f-ee3e072c2557 img.shogun-image {
  width: 100%;
  
  
  

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




.s-046d9cf1-415a-4609-a17f-ee3e072c2557 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-046d9cf1-415a-4609-a17f-ee3e072c2557.shg-align-container {
  display: flex;
  justify-content: center
}

.s-046d9cf1-415a-4609-a17f-ee3e072c2557.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-046d9cf1-415a-4609-a17f-ee3e072c2557.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-046d9cf1-415a-4609-a17f-ee3e072c2557 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-046d9cf1-415a-4609-a17f-ee3e072c2557-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-046d9cf1-415a-4609-a17f-ee3e072c2557 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-046d9cf1-415a-4609-a17f-ee3e072c2557 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-046d9cf1-415a-4609-a17f-ee3e072c2557 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-046d9cf1-415a-4609-a17f-ee3e072c2557 img.shogun-image {
  width: 100%;
  
  
  

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




.s-046d9cf1-415a-4609-a17f-ee3e072c2557 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-046d9cf1-415a-4609-a17f-ee3e072c2557.shg-align-container {
  display: flex;
  justify-content: center
}

.s-046d9cf1-415a-4609-a17f-ee3e072c2557.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-046d9cf1-415a-4609-a17f-ee3e072c2557.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-046d9cf1-415a-4609-a17f-ee3e072c2557 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-046d9cf1-415a-4609-a17f-ee3e072c2557-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-046d9cf1-415a-4609-a17f-ee3e072c2557 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-046d9cf1-415a-4609-a17f-ee3e072c2557 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-046d9cf1-415a-4609-a17f-ee3e072c2557 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-046d9cf1-415a-4609-a17f-ee3e072c2557 img.shogun-image {
  width: 100%;
  
  
  

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




.s-046d9cf1-415a-4609-a17f-ee3e072c2557 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-046d9cf1-415a-4609-a17f-ee3e072c2557.shg-align-container {
  display: flex;
  justify-content: center
}

.s-046d9cf1-415a-4609-a17f-ee3e072c2557.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-046d9cf1-415a-4609-a17f-ee3e072c2557.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-046d9cf1-415a-4609-a17f-ee3e072c2557 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-046d9cf1-415a-4609-a17f-ee3e072c2557-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-046d9cf1-415a-4609-a17f-ee3e072c2557 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-046d9cf1-415a-4609-a17f-ee3e072c2557 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-046d9cf1-415a-4609-a17f-ee3e072c2557 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-046d9cf1-415a-4609-a17f-ee3e072c2557 img.shogun-image {
  width: 100%;
  
  
  

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




.s-046d9cf1-415a-4609-a17f-ee3e072c2557 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-046d9cf1-415a-4609-a17f-ee3e072c2557.shg-align-container {
  display: flex;
  justify-content: center
}

.s-046d9cf1-415a-4609-a17f-ee3e072c2557.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-046d9cf1-415a-4609-a17f-ee3e072c2557.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-3b66d3b7-a8be-4278-8fd8-ffa0386f4786 {
  margin-left: 0%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
}
@media (max-width: 767px){#s-3b66d3b7-a8be-4278-8fd8-ffa0386f4786 {
  margin-left: -27%;
margin-right: 0%;
}
}
#s-3b66d3b7-a8be-4278-8fd8-ffa0386f4786 .shg-proportional-font-size,
#s-3b66d3b7-a8be-4278-8fd8-ffa0386f4786 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-8b3282ca-9431-47c7-8919-578ec5c3934f {
  margin-top: 35px;
margin-left: auto;
margin-bottom: 35px;
margin-right: auto;
max-width: 500px;
text-align: center;
}
@media (max-width: 767px){#s-8b3282ca-9431-47c7-8919-578ec5c3934f {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-8b3282ca-9431-47c7-8919-578ec5c3934f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8b3282ca-9431-47c7-8919-578ec5c3934f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-8b3282ca-9431-47c7-8919-578ec5c3934f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-8b3282ca-9431-47c7-8919-578ec5c3934f .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  padding-top: 50px;
  padding-bottom: 50px;
}


.shg-image-content-margin-container-s-8b3282ca-9431-47c7-8919-578ec5c3934f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8b3282ca-9431-47c7-8919-578ec5c3934f img.shogun-image {
  width: 100%;
  
  
  max-width: 500px;

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




.s-8b3282ca-9431-47c7-8919-578ec5c3934f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8b3282ca-9431-47c7-8919-578ec5c3934f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b3282ca-9431-47c7-8919-578ec5c3934f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b3282ca-9431-47c7-8919-578ec5c3934f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-8b3282ca-9431-47c7-8919-578ec5c3934f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8b3282ca-9431-47c7-8919-578ec5c3934f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-8b3282ca-9431-47c7-8919-578ec5c3934f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8b3282ca-9431-47c7-8919-578ec5c3934f .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-8b3282ca-9431-47c7-8919-578ec5c3934f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8b3282ca-9431-47c7-8919-578ec5c3934f img.shogun-image {
  width: 100%;
  
  
  

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




.s-8b3282ca-9431-47c7-8919-578ec5c3934f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8b3282ca-9431-47c7-8919-578ec5c3934f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b3282ca-9431-47c7-8919-578ec5c3934f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b3282ca-9431-47c7-8919-578ec5c3934f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-8b3282ca-9431-47c7-8919-578ec5c3934f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8b3282ca-9431-47c7-8919-578ec5c3934f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-8b3282ca-9431-47c7-8919-578ec5c3934f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8b3282ca-9431-47c7-8919-578ec5c3934f .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-8b3282ca-9431-47c7-8919-578ec5c3934f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8b3282ca-9431-47c7-8919-578ec5c3934f img.shogun-image {
  width: 100%;
  
  
  

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




.s-8b3282ca-9431-47c7-8919-578ec5c3934f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8b3282ca-9431-47c7-8919-578ec5c3934f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b3282ca-9431-47c7-8919-578ec5c3934f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b3282ca-9431-47c7-8919-578ec5c3934f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-8b3282ca-9431-47c7-8919-578ec5c3934f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8b3282ca-9431-47c7-8919-578ec5c3934f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-8b3282ca-9431-47c7-8919-578ec5c3934f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8b3282ca-9431-47c7-8919-578ec5c3934f .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-8b3282ca-9431-47c7-8919-578ec5c3934f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8b3282ca-9431-47c7-8919-578ec5c3934f img.shogun-image {
  width: 100%;
  
  
  

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




.s-8b3282ca-9431-47c7-8919-578ec5c3934f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8b3282ca-9431-47c7-8919-578ec5c3934f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b3282ca-9431-47c7-8919-578ec5c3934f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b3282ca-9431-47c7-8919-578ec5c3934f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-8b3282ca-9431-47c7-8919-578ec5c3934f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8b3282ca-9431-47c7-8919-578ec5c3934f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-8b3282ca-9431-47c7-8919-578ec5c3934f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-8b3282ca-9431-47c7-8919-578ec5c3934f .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  padding-top: 25px;
  padding-bottom: 25px;
}


.shg-image-content-margin-container-s-8b3282ca-9431-47c7-8919-578ec5c3934f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8b3282ca-9431-47c7-8919-578ec5c3934f img.shogun-image {
  width: 100%;
  
  
  

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




.s-8b3282ca-9431-47c7-8919-578ec5c3934f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8b3282ca-9431-47c7-8919-578ec5c3934f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b3282ca-9431-47c7-8919-578ec5c3934f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b3282ca-9431-47c7-8919-578ec5c3934f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-62838608-52ce-4df1-ab0d-c928bf955c24 {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-bottom: 25px;
min-height: 50px;
background-color: rgba(237, 240, 255, 0.25);
}








#s-62838608-52ce-4df1-ab0d-c928bf955c24 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-62838608-52ce-4df1-ab0d-c928bf955c24.shg-box.shg-c {
  justify-content: center;
}

#s-6a1d7581-a6b3-4c00-96ea-b60f3b472ce9 {
  margin-left: auto;
margin-right: auto;
padding-left: 1%;
}

#s-6a1d7581-a6b3-4c00-96ea-b60f3b472ce9 .shg-proportional-font-size,
#s-6a1d7581-a6b3-4c00-96ea-b60f3b472ce9 .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-b10735a5-f16b-4e6c-8dad-49cad6a8dbc4 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b10735a5-f16b-4e6c-8dad-49cad6a8dbc4 .shogun-heading-component h1 {
  
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


@media (max-width: 767px){#s-b10735a5-f16b-4e6c-8dad-49cad6a8dbc4 .shogun-heading-component h1 {
  
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
#s-af631e50-97c8-4759-ad0b-41fcbbcc1b54 {
  margin-left: 24%;
margin-right: 24%;
}
@media (max-width: 767px){#s-af631e50-97c8-4759-ad0b-41fcbbcc1b54 {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-af631e50-97c8-4759-ad0b-41fcbbcc1b54 .shg-proportional-font-size,
#s-af631e50-97c8-4759-ad0b-41fcbbcc1b54 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-c228b0e0-7c35-4f58-b1ab-1cacd0136a9e {
  margin-left: auto;
margin-right: auto;
text-align: left;
}
@media (max-width: 767px){#s-c228b0e0-7c35-4f58-b1ab-1cacd0136a9e {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-96b39c78-847c-452f-b803-a0cbea6fcc9a {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-bottom: 25px;
min-height: 50px;
}








#s-96b39c78-847c-452f-b803-a0cbea6fcc9a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-96b39c78-847c-452f-b803-a0cbea6fcc9a.shg-box.shg-c {
  justify-content: center;
}

#s-3d5989f9-071b-4008-b4ce-2bebb227156e {
  margin-left: auto;
margin-right: auto;
padding-left: 1%;
}

#s-3d5989f9-071b-4008-b4ce-2bebb227156e .shg-proportional-font-size,
#s-3d5989f9-071b-4008-b4ce-2bebb227156e .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-db967497-76ec-490b-a9c1-98b2edb559a5 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-db967497-76ec-490b-a9c1-98b2edb559a5 {
  margin-left: 4%;
margin-right: 4%;
}
}@media (max-width: 767px){#s-db967497-76ec-490b-a9c1-98b2edb559a5 {
  margin-left: 4%;
margin-right: 4%;
}
}
#s-db967497-76ec-490b-a9c1-98b2edb559a5 .shogun-heading-component h1 {
  
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


@media (max-width: 767px){#s-db967497-76ec-490b-a9c1-98b2edb559a5 .shogun-heading-component h1 {
  
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
#s-b14e3329-303b-4147-a3ac-7d4b6c674a7b {
  margin-left: 24%;
margin-right: 24%;
}
@media (max-width: 767px){#s-b14e3329-303b-4147-a3ac-7d4b6c674a7b {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-b14e3329-303b-4147-a3ac-7d4b6c674a7b .shg-proportional-font-size,
#s-b14e3329-303b-4147-a3ac-7d4b6c674a7b .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-db2d30a2-e6c8-4b08-9e43-f2ee03354416 {
  margin-left: 15%;
margin-right: 15%;
}
@media (max-width: 767px){#s-db2d30a2-e6c8-4b08-9e43-f2ee03354416 {
  display: none;
}
#s-db2d30a2-e6c8-4b08-9e43-f2ee03354416, #wrap-s-db2d30a2-e6c8-4b08-9e43-f2ee03354416, #wrap-content-s-db2d30a2-e6c8-4b08-9e43-f2ee03354416 { display: none !important; }}
@media (min-width: 0px) {
[id="s-db2d30a2-e6c8-4b08-9e43-f2ee03354416"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-db2d30a2-e6c8-4b08-9e43-f2ee03354416"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-db2d30a2-e6c8-4b08-9e43-f2ee03354416"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-db2d30a2-e6c8-4b08-9e43-f2ee03354416"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-db2d30a2-e6c8-4b08-9e43-f2ee03354416"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-db2d30a2-e6c8-4b08-9e43-f2ee03354416"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-db2d30a2-e6c8-4b08-9e43-f2ee03354416"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 10.0px);
}

}

#s-59057448-1521-4093-91ca-0998307d6ca0 {
  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: 15px;
min-height: 50px;
background-color: rgb(0, 172, 78);
}








#s-59057448-1521-4093-91ca-0998307d6ca0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-59057448-1521-4093-91ca-0998307d6ca0.shg-box.shg-c {
  justify-content: center;
}

#s-d792bb25-e7d6-4a95-b3e0-37420ecf8bc8 {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
}

#s-d792bb25-e7d6-4a95-b3e0-37420ecf8bc8 .shg-proportional-font-size,
#s-d792bb25-e7d6-4a95-b3e0-37420ecf8bc8 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-5ac1a9a3-1c95-4a8f-a7ec-ff93015e3d0a {
  margin-left: auto;
margin-right: auto;
padding-bottom: 60px;
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: 100px;
background-color: rgb(0, 88, 142);
}








#s-5ac1a9a3-1c95-4a8f-a7ec-ff93015e3d0a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5ac1a9a3-1c95-4a8f-a7ec-ff93015e3d0a.shg-box.shg-c {
  justify-content: center;
}

#s-51fd5eac-8679-4097-a3b3-c24e4a39dcd6 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-left: 5%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-51fd5eac-8679-4097-a3b3-c24e4a39dcd6 .shg-proportional-font-size,
#s-51fd5eac-8679-4097-a3b3-c24e4a39dcd6 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-78201025-75cc-4c9a-ada1-d7803abfd880 {
  margin-left: 5%;
margin-right: 5%;
}
@media (min-width: 1200px){#s-78201025-75cc-4c9a-ada1-d7803abfd880 {
  display: none;
}
#s-78201025-75cc-4c9a-ada1-d7803abfd880, #wrap-s-78201025-75cc-4c9a-ada1-d7803abfd880, #wrap-content-s-78201025-75cc-4c9a-ada1-d7803abfd880 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-78201025-75cc-4c9a-ada1-d7803abfd880 {
  display: none;
}
#s-78201025-75cc-4c9a-ada1-d7803abfd880, #wrap-s-78201025-75cc-4c9a-ada1-d7803abfd880, #wrap-content-s-78201025-75cc-4c9a-ada1-d7803abfd880 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-78201025-75cc-4c9a-ada1-d7803abfd880 {
  display: none;
}
#s-78201025-75cc-4c9a-ada1-d7803abfd880, #wrap-s-78201025-75cc-4c9a-ada1-d7803abfd880, #wrap-content-s-78201025-75cc-4c9a-ada1-d7803abfd880 { display: none !important; }}
@media (min-width: 0px) {
[id="s-78201025-75cc-4c9a-ada1-d7803abfd880"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-78201025-75cc-4c9a-ada1-d7803abfd880"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-78201025-75cc-4c9a-ada1-d7803abfd880"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-78201025-75cc-4c9a-ada1-d7803abfd880"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-78201025-75cc-4c9a-ada1-d7803abfd880"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-78201025-75cc-4c9a-ada1-d7803abfd880"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-78201025-75cc-4c9a-ada1-d7803abfd880"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 10.0px);
}

}

#s-e61b966b-ee9a-4a17-b85a-f6bdb0dc06d9 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
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: 15px;
min-height: 50px;
background-color: rgb(0, 172, 78);
}








#s-e61b966b-ee9a-4a17-b85a-f6bdb0dc06d9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e61b966b-ee9a-4a17-b85a-f6bdb0dc06d9.shg-box.shg-c {
  justify-content: center;
}

#s-b368de48-f66c-4804-b5ce-d51e8cd7449c {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
}

#s-b368de48-f66c-4804-b5ce-d51e8cd7449c .shg-proportional-font-size,
#s-b368de48-f66c-4804-b5ce-d51e8cd7449c .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-7e79920d-f438-4291-8571-24d6337f6905 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
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: 100px;
background-color: rgb(0, 88, 142);
}








#s-7e79920d-f438-4291-8571-24d6337f6905 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7e79920d-f438-4291-8571-24d6337f6905.shg-box.shg-c {
  justify-content: center;
}

#s-5a1d83c2-c184-4827-9f15-c6e730d8ffe9 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 5%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-5a1d83c2-c184-4827-9f15-c6e730d8ffe9 .shg-proportional-font-size,
#s-5a1d83c2-c184-4827-9f15-c6e730d8ffe9 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-98f3df8f-0308-4e12-9b78-c084fb480274 {
  margin-left: 15%;
margin-right: 15%;
padding-top: 15px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-98f3df8f-0308-4e12-9b78-c084fb480274 {
  margin-left: 5%;
margin-right: 5%;
}
}
@media (min-width: 0px) {
[id="s-98f3df8f-0308-4e12-9b78-c084fb480274"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-98f3df8f-0308-4e12-9b78-c084fb480274"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-98f3df8f-0308-4e12-9b78-c084fb480274"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-98f3df8f-0308-4e12-9b78-c084fb480274"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-98f3df8f-0308-4e12-9b78-c084fb480274"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-98f3df8f-0308-4e12-9b78-c084fb480274"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-98f3df8f-0308-4e12-9b78-c084fb480274"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 10.0px);
}

}

#s-cc492047-b55c-461f-9739-7b5260047c73 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
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(71, 163, 210, 1);
}
@media (max-width: 767px){#s-cc492047-b55c-461f-9739-7b5260047c73 {
  margin-bottom: 10px;
}
}







#s-cc492047-b55c-461f-9739-7b5260047c73 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cc492047-b55c-461f-9739-7b5260047c73.shg-box.shg-c {
  justify-content: center;
}

#s-a8a21bee-a343-4b27-b374-96a999fc1277 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
}

#s-a8a21bee-a343-4b27-b374-96a999fc1277 .shg-proportional-font-size,
#s-a8a21bee-a343-4b27-b374-96a999fc1277 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-a20a933c-0067-4d29-87d7-cc2a9bbd84d4 {
  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: 15px;
min-height: 50px;
background-color: rgb(0, 172, 78);
}








#s-a20a933c-0067-4d29-87d7-cc2a9bbd84d4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a20a933c-0067-4d29-87d7-cc2a9bbd84d4.shg-box.shg-c {
  justify-content: center;
}

#s-f9a29c8f-ac2e-40f9-8fbf-b4469416341e {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
}

#s-f9a29c8f-ac2e-40f9-8fbf-b4469416341e .shg-proportional-font-size,
#s-f9a29c8f-ac2e-40f9-8fbf-b4469416341e .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-7c74fdc4-06ba-4a10-a515-ecb01f1774d4 {
  margin-top: 25px;
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-7c74fdc4-06ba-4a10-a515-ecb01f1774d4:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-7c74fdc4-06ba-4a10-a515-ecb01f1774d4:active {background-color: rgba(0, 172, 78, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-7c74fdc4-06ba-4a10-a515-ecb01f1774d4-root {
    text-align: center;
  }


#s-7c74fdc4-06ba-4a10-a515-ecb01f1774d4.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-7c74fdc4-06ba-4a10-a515-ecb01f1774d4-root {
    text-align: center;
  }


#s-7c74fdc4-06ba-4a10-a515-ecb01f1774d4.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-7c74fdc4-06ba-4a10-a515-ecb01f1774d4-root {
    text-align: center;
  }


#s-7c74fdc4-06ba-4a10-a515-ecb01f1774d4.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-7c74fdc4-06ba-4a10-a515-ecb01f1774d4-root {
    text-align: center;
  }


#s-7c74fdc4-06ba-4a10-a515-ecb01f1774d4.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-7c74fdc4-06ba-4a10-a515-ecb01f1774d4-root {
    text-align: center;
  }


#s-7c74fdc4-06ba-4a10-a515-ecb01f1774d4.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-5f3fd894-8db2-4c21-8ac8-5668c01c17a5 {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-bottom: 25px;
min-height: 50px;
}








#s-5f3fd894-8db2-4c21-8ac8-5668c01c17a5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5f3fd894-8db2-4c21-8ac8-5668c01c17a5.shg-box.shg-c {
  justify-content: center;
}

#s-4a5fa313-62f4-4b87-9c94-25d951c7fbc4 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-2d83cf7c-b24c-4bfe-9abe-e6c61f488c73 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2d83cf7c-b24c-4bfe-9abe-e6c61f488c73 .shogun-heading-component h1 {
  
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


@media (max-width: 767px){#s-2d83cf7c-b24c-4bfe-9abe-e6c61f488c73 .shogun-heading-component h1 {
  
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
#s-6d050837-eec4-49a4-8e4e-466a1bd57b74 {
  margin-left: 24%;
margin-right: 24%;
}
@media (max-width: 767px){#s-6d050837-eec4-49a4-8e4e-466a1bd57b74 {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-6d050837-eec4-49a4-8e4e-466a1bd57b74 .shg-proportional-font-size,
#s-6d050837-eec4-49a4-8e4e-466a1bd57b74 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-f8576661-4e23-4415-ab39-4bd86d000a44 {
  margin-left: 16%;
margin-right: 16%;
max-width: 1262px;
text-align: center;
}
@media (max-width: 767px){#s-f8576661-4e23-4415-ab39-4bd86d000a44 {
  display: none;
}
#s-f8576661-4e23-4415-ab39-4bd86d000a44, #wrap-s-f8576661-4e23-4415-ab39-4bd86d000a44, #wrap-content-s-f8576661-4e23-4415-ab39-4bd86d000a44 { display: none !important; }}
#s-f8576661-4e23-4415-ab39-4bd86d000a44 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f8576661-4e23-4415-ab39-4bd86d000a44-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f8576661-4e23-4415-ab39-4bd86d000a44 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-f8576661-4e23-4415-ab39-4bd86d000a44 .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-f8576661-4e23-4415-ab39-4bd86d000a44 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f8576661-4e23-4415-ab39-4bd86d000a44 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-f8576661-4e23-4415-ab39-4bd86d000a44 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f8576661-4e23-4415-ab39-4bd86d000a44.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8576661-4e23-4415-ab39-4bd86d000a44.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8576661-4e23-4415-ab39-4bd86d000a44.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-f8576661-4e23-4415-ab39-4bd86d000a44 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f8576661-4e23-4415-ab39-4bd86d000a44-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f8576661-4e23-4415-ab39-4bd86d000a44 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f8576661-4e23-4415-ab39-4bd86d000a44 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-f8576661-4e23-4415-ab39-4bd86d000a44 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f8576661-4e23-4415-ab39-4bd86d000a44 img.shogun-image {
  width: 100%;
  
  
  

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




.s-f8576661-4e23-4415-ab39-4bd86d000a44 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f8576661-4e23-4415-ab39-4bd86d000a44.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8576661-4e23-4415-ab39-4bd86d000a44.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8576661-4e23-4415-ab39-4bd86d000a44.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-f8576661-4e23-4415-ab39-4bd86d000a44 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f8576661-4e23-4415-ab39-4bd86d000a44-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f8576661-4e23-4415-ab39-4bd86d000a44 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f8576661-4e23-4415-ab39-4bd86d000a44 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-f8576661-4e23-4415-ab39-4bd86d000a44 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f8576661-4e23-4415-ab39-4bd86d000a44 img.shogun-image {
  width: 100%;
  
  
  

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




.s-f8576661-4e23-4415-ab39-4bd86d000a44 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f8576661-4e23-4415-ab39-4bd86d000a44.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8576661-4e23-4415-ab39-4bd86d000a44.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8576661-4e23-4415-ab39-4bd86d000a44.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-f8576661-4e23-4415-ab39-4bd86d000a44 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f8576661-4e23-4415-ab39-4bd86d000a44-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f8576661-4e23-4415-ab39-4bd86d000a44 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f8576661-4e23-4415-ab39-4bd86d000a44 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-f8576661-4e23-4415-ab39-4bd86d000a44 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f8576661-4e23-4415-ab39-4bd86d000a44 img.shogun-image {
  width: 100%;
  
  
  

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




.s-f8576661-4e23-4415-ab39-4bd86d000a44 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f8576661-4e23-4415-ab39-4bd86d000a44.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8576661-4e23-4415-ab39-4bd86d000a44.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8576661-4e23-4415-ab39-4bd86d000a44.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-f8576661-4e23-4415-ab39-4bd86d000a44 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f8576661-4e23-4415-ab39-4bd86d000a44-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f8576661-4e23-4415-ab39-4bd86d000a44 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f8576661-4e23-4415-ab39-4bd86d000a44 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-f8576661-4e23-4415-ab39-4bd86d000a44 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f8576661-4e23-4415-ab39-4bd86d000a44 img.shogun-image {
  width: 100%;
  
  
  

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




.s-f8576661-4e23-4415-ab39-4bd86d000a44 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f8576661-4e23-4415-ab39-4bd86d000a44.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8576661-4e23-4415-ab39-4bd86d000a44.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8576661-4e23-4415-ab39-4bd86d000a44.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 {
  margin-left: 4%;
margin-right: 4%;
max-width: 1080px;
text-align: center;
}
@media (min-width: 1200px){#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 {
  display: none;
}
#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545, #wrap-s-ea5eb2f7-34fc-4754-b529-6a14e16b5545, #wrap-content-s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 {
  display: none;
}
#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545, #wrap-s-ea5eb2f7-34fc-4754-b529-6a14e16b5545, #wrap-content-s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 {
  display: none;
}
#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545, #wrap-s-ea5eb2f7-34fc-4754-b529-6a14e16b5545, #wrap-content-s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 { display: none !important; }}
#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 .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-ea5eb2f7-34fc-4754-b529-6a14e16b5545 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

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




.s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ea5eb2f7-34fc-4754-b529-6a14e16b5545.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea5eb2f7-34fc-4754-b529-6a14e16b5545.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 img.shogun-image {
  width: 100%;
  
  
  

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




.s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ea5eb2f7-34fc-4754-b529-6a14e16b5545.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea5eb2f7-34fc-4754-b529-6a14e16b5545.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 img.shogun-image {
  width: 100%;
  
  
  

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




.s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ea5eb2f7-34fc-4754-b529-6a14e16b5545.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea5eb2f7-34fc-4754-b529-6a14e16b5545.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 img.shogun-image {
  width: 100%;
  
  
  

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




.s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ea5eb2f7-34fc-4754-b529-6a14e16b5545.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea5eb2f7-34fc-4754-b529-6a14e16b5545.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 img.shogun-image {
  width: 100%;
  
  
  

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




.s-ea5eb2f7-34fc-4754-b529-6a14e16b5545 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ea5eb2f7-34fc-4754-b529-6a14e16b5545.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea5eb2f7-34fc-4754-b529-6a14e16b5545.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea5eb2f7-34fc-4754-b529-6a14e16b5545.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-6b0ffd28-e4c7-4ec2-8768-b69cea94bcbd {
  margin-top: 40px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-6b0ffd28-e4c7-4ec2-8768-b69cea94bcbd {
  margin-left: 4%;
margin-right: 4%;
}
}
#s-6b0ffd28-e4c7-4ec2-8768-b69cea94bcbd .shogun-heading-component h1 {
  
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


@media (max-width: 767px){#s-6b0ffd28-e4c7-4ec2-8768-b69cea94bcbd .shogun-heading-component h1 {
  
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
#s-3d701d48-9a56-4de4-959c-397e97afde56 {
  margin-left: 24%;
margin-right: 24%;
}
@media (max-width: 767px){#s-3d701d48-9a56-4de4-959c-397e97afde56 {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-3d701d48-9a56-4de4-959c-397e97afde56 .shg-proportional-font-size,
#s-3d701d48-9a56-4de4-959c-397e97afde56 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-e442325c-7688-4dc7-9083-839455e1a31c {
  margin-left: 0%;
margin-right: 0%;
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-e442325c-7688-4dc7-9083-839455e1a31c:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-e442325c-7688-4dc7-9083-839455e1a31c:active {background-color: rgba(0, 172, 78, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-e442325c-7688-4dc7-9083-839455e1a31c-root {
    text-align: center;
  }


#s-e442325c-7688-4dc7-9083-839455e1a31c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e442325c-7688-4dc7-9083-839455e1a31c-root {
    text-align: center;
  }


#s-e442325c-7688-4dc7-9083-839455e1a31c.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-e442325c-7688-4dc7-9083-839455e1a31c-root {
    text-align: center;
  }


#s-e442325c-7688-4dc7-9083-839455e1a31c.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-e442325c-7688-4dc7-9083-839455e1a31c-root {
    text-align: center;
  }


#s-e442325c-7688-4dc7-9083-839455e1a31c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e442325c-7688-4dc7-9083-839455e1a31c-root {
    text-align: center;
  }


#s-e442325c-7688-4dc7-9083-839455e1a31c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-fbad5e12-dc0e-4d1f-93cf-4cc35955c1f0 {
  margin-left: 24%;
margin-right: 24%;
}
@media (max-width: 767px){#s-fbad5e12-dc0e-4d1f-93cf-4cc35955c1f0 {
  margin-left: 11%;
margin-right: 11%;
}
}
#s-fbad5e12-dc0e-4d1f-93cf-4cc35955c1f0 .shg-proportional-font-size,
#s-fbad5e12-dc0e-4d1f-93cf-4cc35955c1f0 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-6a4386a1-97fc-4fd2-acce-ba689f601ec9 {
  background-repeat: no-repeat;
margin-top: 100px;
margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-6a4386a1-97fc-4fd2-acce-ba689f601ec9 {
  margin-top: 0px;
}
}
#s-6a4386a1-97fc-4fd2-acce-ba689f601ec9 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZDQ1YWRlOTItZDJhYi00OWQ5LWJjMDYtZjk4MGYyOWZkYmJhIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZmZmZmZmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZjZmNWYyO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNkNDVhZGU5Mi1kMmFiLTQ5ZDktYmMwNi1mOTgwZjI5ZmRiYmEpIi8+PC9zdmc+);
}








#s-6a4386a1-97fc-4fd2-acce-ba689f601ec9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6a4386a1-97fc-4fd2-acce-ba689f601ec9.shg-box.shg-c {
  justify-content: center;
}

#s-9f0c46f0-ec83-4e05-9920-7de4c5b09ca0 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-83e3b6d2-f2c5-4a12-8a5c-2187c0909947 {
  margin-left: auto;
margin-right: auto;
padding-left: 1%;
}

#s-83e3b6d2-f2c5-4a12-8a5c-2187c0909947 .shg-proportional-font-size,
#s-83e3b6d2-f2c5-4a12-8a5c-2187c0909947 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-57c7e818-e789-4f61-94f0-8ad6d3057ad9 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-57c7e818-e789-4f61-94f0-8ad6d3057ad9 .shogun-heading-component h1 {
  
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


@media (max-width: 767px){#s-57c7e818-e789-4f61-94f0-8ad6d3057ad9 .shogun-heading-component h1 {
  
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
#s-b625fd7f-1028-4aa4-b908-288af4a65319 {
  margin-left: 24%;
margin-right: 24%;
}
@media (max-width: 767px){#s-b625fd7f-1028-4aa4-b908-288af4a65319 {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-b625fd7f-1028-4aa4-b908-288af4a65319 .shg-proportional-font-size,
#s-b625fd7f-1028-4aa4-b908-288af4a65319 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-91f18062-bc0e-49d7-a8fc-05876f990697 {
  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-91f18062-bc0e-49d7-a8fc-05876f990697 {
  margin-left: 3%;
margin-right: 3%;
}
}@media (max-width: 767px){#s-91f18062-bc0e-49d7-a8fc-05876f990697 {
  margin-left: 5%;
margin-right: 5%;
}
}
@media (min-width: 0px) {
[id="s-91f18062-bc0e-49d7-a8fc-05876f990697"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-91f18062-bc0e-49d7-a8fc-05876f990697"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-91f18062-bc0e-49d7-a8fc-05876f990697"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-91f18062-bc0e-49d7-a8fc-05876f990697"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-91f18062-bc0e-49d7-a8fc-05876f990697"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-91f18062-bc0e-49d7-a8fc-05876f990697"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-91f18062-bc0e-49d7-a8fc-05876f990697"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-f996a9b3-e30e-4c91-9068-3b66559a71ff {
  margin-top: 75px;
margin-left: auto;
margin-right: auto;
max-width: 300px;
text-align: center;
}
@media (max-width: 767px){#s-f996a9b3-e30e-4c91-9068-3b66559a71ff {
  margin-top: 0px;
max-width: 200px;
}
}
#s-f996a9b3-e30e-4c91-9068-3b66559a71ff {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f996a9b3-e30e-4c91-9068-3b66559a71ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f996a9b3-e30e-4c91-9068-3b66559a71ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-f996a9b3-e30e-4c91-9068-3b66559a71ff .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-f996a9b3-e30e-4c91-9068-3b66559a71ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f996a9b3-e30e-4c91-9068-3b66559a71ff 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-f996a9b3-e30e-4c91-9068-3b66559a71ff .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f996a9b3-e30e-4c91-9068-3b66559a71ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f996a9b3-e30e-4c91-9068-3b66559a71ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f996a9b3-e30e-4c91-9068-3b66559a71ff.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-f996a9b3-e30e-4c91-9068-3b66559a71ff {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f996a9b3-e30e-4c91-9068-3b66559a71ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f996a9b3-e30e-4c91-9068-3b66559a71ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f996a9b3-e30e-4c91-9068-3b66559a71ff .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-f996a9b3-e30e-4c91-9068-3b66559a71ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f996a9b3-e30e-4c91-9068-3b66559a71ff img.shogun-image {
  width: 100%;
  
  
  

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




.s-f996a9b3-e30e-4c91-9068-3b66559a71ff .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f996a9b3-e30e-4c91-9068-3b66559a71ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f996a9b3-e30e-4c91-9068-3b66559a71ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f996a9b3-e30e-4c91-9068-3b66559a71ff.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-f996a9b3-e30e-4c91-9068-3b66559a71ff {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f996a9b3-e30e-4c91-9068-3b66559a71ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f996a9b3-e30e-4c91-9068-3b66559a71ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f996a9b3-e30e-4c91-9068-3b66559a71ff .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-f996a9b3-e30e-4c91-9068-3b66559a71ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f996a9b3-e30e-4c91-9068-3b66559a71ff img.shogun-image {
  width: 100%;
  
  
  

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




.s-f996a9b3-e30e-4c91-9068-3b66559a71ff .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f996a9b3-e30e-4c91-9068-3b66559a71ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f996a9b3-e30e-4c91-9068-3b66559a71ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f996a9b3-e30e-4c91-9068-3b66559a71ff.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-f996a9b3-e30e-4c91-9068-3b66559a71ff {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f996a9b3-e30e-4c91-9068-3b66559a71ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f996a9b3-e30e-4c91-9068-3b66559a71ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f996a9b3-e30e-4c91-9068-3b66559a71ff .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-f996a9b3-e30e-4c91-9068-3b66559a71ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f996a9b3-e30e-4c91-9068-3b66559a71ff img.shogun-image {
  width: 100%;
  
  
  

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




.s-f996a9b3-e30e-4c91-9068-3b66559a71ff .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f996a9b3-e30e-4c91-9068-3b66559a71ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f996a9b3-e30e-4c91-9068-3b66559a71ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f996a9b3-e30e-4c91-9068-3b66559a71ff.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-f996a9b3-e30e-4c91-9068-3b66559a71ff {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f996a9b3-e30e-4c91-9068-3b66559a71ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f996a9b3-e30e-4c91-9068-3b66559a71ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-f996a9b3-e30e-4c91-9068-3b66559a71ff .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-f996a9b3-e30e-4c91-9068-3b66559a71ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f996a9b3-e30e-4c91-9068-3b66559a71ff 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-f996a9b3-e30e-4c91-9068-3b66559a71ff .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f996a9b3-e30e-4c91-9068-3b66559a71ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f996a9b3-e30e-4c91-9068-3b66559a71ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f996a9b3-e30e-4c91-9068-3b66559a71ff.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-e49bd1ee-b9f9-4d7c-92d6-042660a038d6 {
  margin-top: 3px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
}

#s-e49bd1ee-b9f9-4d7c-92d6-042660a038d6 .shg-proportional-font-size,
#s-e49bd1ee-b9f9-4d7c-92d6-042660a038d6 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-f7db0871-4a9f-408d-a591-d6abf38711f0 {
  margin-top: 25px;
margin-left: 5%;
margin-right: auto;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
}

#s-4a14bac5-221b-453e-8c27-d2041dde5651 {
  margin-left: auto;
margin-right: auto;
}

#s-be76dd86-6244-4243-8b5a-75d9be8b3340 {
  margin-left: 5%;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-be76dd86-6244-4243-8b5a-75d9be8b3340 .shogun-heading-component h1 {
  
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


@media (max-width: 767px){#s-be76dd86-6244-4243-8b5a-75d9be8b3340 .shogun-heading-component h1 {
  
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
#s-70206344-daeb-451c-98f1-741f3c80b25b {
  margin-top: -19px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 0%;
}

#s-70206344-daeb-451c-98f1-741f3c80b25b .shg-proportional-font-size,
#s-70206344-daeb-451c-98f1-741f3c80b25b .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-a0239752-c2a6-4a2d-9c9c-9c8fe8558394 {
  margin-left: 5%;
margin-right: 5%;
}
@media (max-width: 767px){#s-a0239752-c2a6-4a2d-9c9c-9c8fe8558394 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}
}
@media (min-width: 0px) {
[id="s-a0239752-c2a6-4a2d-9c9c-9c8fe8558394"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a0239752-c2a6-4a2d-9c9c-9c8fe8558394"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-a0239752-c2a6-4a2d-9c9c-9c8fe8558394"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-a0239752-c2a6-4a2d-9c9c-9c8fe8558394"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-7019cc9d-8e8b-490b-96fa-a5baabbe98b6 {
  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-7019cc9d-8e8b-490b-96fa-a5baabbe98b6 {
  margin-top: 10px;
margin-bottom: 10px;
}
}







#s-7019cc9d-8e8b-490b-96fa-a5baabbe98b6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7019cc9d-8e8b-490b-96fa-a5baabbe98b6.shg-box.shg-c {
  justify-content: center;
}

#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 30px;
text-align: center;
}

#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 .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-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 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-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 img.shogun-image {
  width: 100%;
  
  
  

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




.s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 img.shogun-image {
  width: 100%;
  
  
  

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




.s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 img.shogun-image {
  width: 100%;
  
  
  

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




.s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 img.shogun-image {
  width: 100%;
  
  
  

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




.s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3e363ea-73d3-4da6-9b33-3a029a11ebe3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-7aac3314-fdb7-4d40-b94a-f0c9ba406112 {
  margin-left: auto;
margin-right: auto;
}

#s-7aac3314-fdb7-4d40-b94a-f0c9ba406112 .shg-proportional-font-size,
#s-7aac3314-fdb7-4d40-b94a-f0c9ba406112 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-95062616-09bc-441d-9ef1-71f4bd5ad4b8 {
  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-95062616-09bc-441d-9ef1-71f4bd5ad4b8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-95062616-09bc-441d-9ef1-71f4bd5ad4b8.shg-box.shg-c {
  justify-content: center;
}

#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 {
  margin-left: auto;
margin-right: auto;
max-width: 30px;
text-align: center;
}

#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 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-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 img.shogun-image {
  width: 100%;
  
  
  

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




.s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 img.shogun-image {
  width: 100%;
  
  
  

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




.s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 img.shogun-image {
  width: 100%;
  
  
  

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




.s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 img.shogun-image {
  width: 100%;
  
  
  

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




.s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fd57bcb-ddbe-421d-b220-b60757b3b2b5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-82704e7e-516a-4ca7-b44d-859239cd98c8 {
  margin-left: 3%;
margin-right: 3%;
}

#s-82704e7e-516a-4ca7-b44d-859239cd98c8 .shg-proportional-font-size,
#s-82704e7e-516a-4ca7-b44d-859239cd98c8 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-4ceb7814-5361-4a03-b625-671694a19dc3 {
  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-4ceb7814-5361-4a03-b625-671694a19dc3 {
  margin-top: 10px;
margin-bottom: 0px;
}
}







#s-4ceb7814-5361-4a03-b625-671694a19dc3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4ceb7814-5361-4a03-b625-671694a19dc3.shg-box.shg-c {
  justify-content: center;
}

#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 {
  margin-left: auto;
margin-right: auto;
max-width: 30px;
text-align: center;
}

#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 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-2ec38ada-3324-416f-82ec-b96c7b7e22d6 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2ec38ada-3324-416f-82ec-b96c7b7e22d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2ec38ada-3324-416f-82ec-b96c7b7e22d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 img.shogun-image {
  width: 100%;
  
  
  

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




.s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2ec38ada-3324-416f-82ec-b96c7b7e22d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2ec38ada-3324-416f-82ec-b96c7b7e22d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 img.shogun-image {
  width: 100%;
  
  
  

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




.s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2ec38ada-3324-416f-82ec-b96c7b7e22d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2ec38ada-3324-416f-82ec-b96c7b7e22d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 img.shogun-image {
  width: 100%;
  
  
  

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




.s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2ec38ada-3324-416f-82ec-b96c7b7e22d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2ec38ada-3324-416f-82ec-b96c7b7e22d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 img.shogun-image {
  width: 100%;
  
  
  

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




.s-2ec38ada-3324-416f-82ec-b96c7b7e22d6 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2ec38ada-3324-416f-82ec-b96c7b7e22d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2ec38ada-3324-416f-82ec-b96c7b7e22d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2ec38ada-3324-416f-82ec-b96c7b7e22d6.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-66b2b9ff-ffaf-411c-9657-3cedbb0ac648 {
  margin-left: 3%;
margin-right: 3%;
}

#s-66b2b9ff-ffaf-411c-9657-3cedbb0ac648 .shg-proportional-font-size,
#s-66b2b9ff-ffaf-411c-9657-3cedbb0ac648 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-2790065f-1f06-46a4-b4d7-f3351381bb2a {
  margin-left: 1%;
margin-right: 1%;
padding-left: 0%;
padding-right: 0%;
}

#s-2790065f-1f06-46a4-b4d7-f3351381bb2a .shg-proportional-font-size,
#s-2790065f-1f06-46a4-b4d7-f3351381bb2a .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-0a05e5e6-fb1f-4c40-893f-083a13e36a42 {
  margin-left: auto;
margin-right: auto;
}

#s-7f221c68-2011-4423-b689-ddc4b27172f0 {
  margin-left: auto;
margin-right: auto;
}

#s-ad662f25-d944-48d5-a5f7-cc56de874cbe {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-ad662f25-d944-48d5-a5f7-cc56de874cbe"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-ad662f25-d944-48d5-a5f7-cc56de874cbe"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ad662f25-d944-48d5-a5f7-cc56de874cbe"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ad662f25-d944-48d5-a5f7-cc56de874cbe"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-cbd790c1-02d5-4c17-95dd-a05d2667b436 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-cbd790c1-02d5-4c17-95dd-a05d2667b436 .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-fe438015-f31f-4d5d-8c99-7268807994ac {
  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-fe438015-f31f-4d5d-8c99-7268807994ac: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-fe438015-f31f-4d5d-8c99-7268807994ac: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-fe438015-f31f-4d5d-8c99-7268807994ac-atc-btn-wrapper {
    text-align: center;
  }


#s-fe438015-f31f-4d5d-8c99-7268807994ac {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-fe438015-f31f-4d5d-8c99-7268807994ac.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-fe438015-f31f-4d5d-8c99-7268807994ac.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-fe438015-f31f-4d5d-8c99-7268807994ac.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-fe438015-f31f-4d5d-8c99-7268807994ac-atc-btn-wrapper {
    text-align: center;
  }


#s-fe438015-f31f-4d5d-8c99-7268807994ac {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-fe438015-f31f-4d5d-8c99-7268807994ac.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-fe438015-f31f-4d5d-8c99-7268807994ac.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-fe438015-f31f-4d5d-8c99-7268807994ac.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-fe438015-f31f-4d5d-8c99-7268807994ac-atc-btn-wrapper {
    text-align: center;
  }


#s-fe438015-f31f-4d5d-8c99-7268807994ac {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-fe438015-f31f-4d5d-8c99-7268807994ac.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-fe438015-f31f-4d5d-8c99-7268807994ac.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-fe438015-f31f-4d5d-8c99-7268807994ac.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-fe438015-f31f-4d5d-8c99-7268807994ac-atc-btn-wrapper {
    text-align: center;
  }


#s-fe438015-f31f-4d5d-8c99-7268807994ac {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-fe438015-f31f-4d5d-8c99-7268807994ac.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-fe438015-f31f-4d5d-8c99-7268807994ac.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-fe438015-f31f-4d5d-8c99-7268807994ac.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-fe438015-f31f-4d5d-8c99-7268807994ac-atc-btn-wrapper {
    text-align: center;
  }


#s-fe438015-f31f-4d5d-8c99-7268807994ac {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-fe438015-f31f-4d5d-8c99-7268807994ac.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-fe438015-f31f-4d5d-8c99-7268807994ac.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-fe438015-f31f-4d5d-8c99-7268807994ac.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-f34565d8-5edd-4705-ac5e-54e69f68c7ff {
  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-f34565d8-5edd-4705-ac5e-54e69f68c7ff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f34565d8-5edd-4705-ac5e-54e69f68c7ff.shg-box.shg-c {
  justify-content: center;
}

#s-cef7cadb-d636-41da-9afe-0259f944e5ef {
  margin-left: 7%;
margin-right: 4%;
padding-left: 1%;
}

#s-cef7cadb-d636-41da-9afe-0259f944e5ef .shg-proportional-font-size,
#s-cef7cadb-d636-41da-9afe-0259f944e5ef .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-63894dd6-0538-4f49-8c86-ee3c9c181148 {
  margin-left: 5%;
margin-right: 5%;
}

#s-63894dd6-0538-4f49-8c86-ee3c9c181148 .shg-proportional-font-size,
#s-63894dd6-0538-4f49-8c86-ee3c9c181148 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

.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-61c92fc1-2c94-4818-8507-f736c8344655 {
  margin-top: 25px;
margin-left: 16%;
margin-bottom: 0px;
margin-right: 16%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-61c92fc1-2c94-4818-8507-f736c8344655 {
  margin-left: 6%;
margin-right: 6%;
}
}
#s-61c92fc1-2c94-4818-8507-f736c8344655 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-61c92fc1-2c94-4818-8507-f736c8344655 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgb(255, 255, 255);
  padding: 10px;
}

#s-61c92fc1-2c94-4818-8507-f736c8344655 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgb(57, 57, 57);
}

#s-61c92fc1-2c94-4818-8507-f736c8344655 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-61c92fc1-2c94-4818-8507-f736c8344655 > .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-61c92fc1-2c94-4818-8507-f736c8344655 > .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-bdbae2b2-d9b9-4325-b043-7e9d70be4f89 {
  margin-left: 9%;
margin-right: 9%;
}

#s-bdbae2b2-d9b9-4325-b043-7e9d70be4f89 .shg-dynamic-column-count {
  grid-template-columns: repeat(4, 1fr);
}


#slider-v3-s-bdbae2b2-d9b9-4325-b043-7e9d70be4f89 {
  --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-bdbae2b2-d9b9-4325-b043-7e9d70be4f89 > .swiper-button-prev,
#slider-v3-s-bdbae2b2-d9b9-4325-b043-7e9d70be4f89 > .swiper-button-next {
  
}

#slider-v3-s-bdbae2b2-d9b9-4325-b043-7e9d70be4f89 > .swiper-button-prev svg,
#slider-v3-s-bdbae2b2-d9b9-4325-b043-7e9d70be4f89 > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-bdbae2b2-d9b9-4325-b043-7e9d70be4f89 > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-bdbae2b2-d9b9-4325-b043-7e9d70be4f89 > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-bdbae2b2-d9b9-4325-b043-7e9d70be4f89 > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-bdbae2b2-d9b9-4325-b043-7e9d70be4f89 .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-bdbae2b2-d9b9-4325-b043-7e9d70be4f89 .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-bdbae2b2-d9b9-4325-b043-7e9d70be4f89 .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-438ac7e4-2cf4-415a-9b4e-3b7b4be33815 {
  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-0b468bd4-d0dc-4fe7-8653-9bdd20cd4554 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-0b468bd4-d0dc-4fe7-8653-9bdd20cd4554 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0b468bd4-d0dc-4fe7-8653-9bdd20cd4554 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-0b468bd4-d0dc-4fe7-8653-9bdd20cd4554 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0b468bd4-d0dc-4fe7-8653-9bdd20cd4554 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-0b468bd4-d0dc-4fe7-8653-9bdd20cd4554 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0b468bd4-d0dc-4fe7-8653-9bdd20cd4554 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-0b468bd4-d0dc-4fe7-8653-9bdd20cd4554 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0b468bd4-d0dc-4fe7-8653-9bdd20cd4554 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-0b468bd4-d0dc-4fe7-8653-9bdd20cd4554 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0b468bd4-d0dc-4fe7-8653-9bdd20cd4554 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-a90c8054-75da-4bff-98dc-112c470c19c7 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a90c8054-75da-4bff-98dc-112c470c19c7 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-a10a2d40-1289-42e9-bee9-a484f08980d4 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-a10a2d40-1289-42e9-bee9-a484f08980d4 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-a10a2d40-1289-42e9-bee9-a484f08980d4 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-a10a2d40-1289-42e9-bee9-a484f08980d4 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-878a3c84-5fad-4ede-995a-882f3c72c116 {
  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-878a3c84-5fad-4ede-995a-882f3c72c116: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-878a3c84-5fad-4ede-995a-882f3c72c116: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-878a3c84-5fad-4ede-995a-882f3c72c116-atc-btn-wrapper {
    text-align: center;
  }


#s-878a3c84-5fad-4ede-995a-882f3c72c116 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-878a3c84-5fad-4ede-995a-882f3c72c116.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-878a3c84-5fad-4ede-995a-882f3c72c116.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-878a3c84-5fad-4ede-995a-882f3c72c116.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-878a3c84-5fad-4ede-995a-882f3c72c116-atc-btn-wrapper {
    text-align: center;
  }


#s-878a3c84-5fad-4ede-995a-882f3c72c116 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-878a3c84-5fad-4ede-995a-882f3c72c116.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-878a3c84-5fad-4ede-995a-882f3c72c116.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-878a3c84-5fad-4ede-995a-882f3c72c116.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-878a3c84-5fad-4ede-995a-882f3c72c116-atc-btn-wrapper {
    text-align: center;
  }


#s-878a3c84-5fad-4ede-995a-882f3c72c116 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-878a3c84-5fad-4ede-995a-882f3c72c116.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-878a3c84-5fad-4ede-995a-882f3c72c116.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-878a3c84-5fad-4ede-995a-882f3c72c116.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-878a3c84-5fad-4ede-995a-882f3c72c116-atc-btn-wrapper {
    text-align: center;
  }


#s-878a3c84-5fad-4ede-995a-882f3c72c116 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-878a3c84-5fad-4ede-995a-882f3c72c116.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-878a3c84-5fad-4ede-995a-882f3c72c116.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-878a3c84-5fad-4ede-995a-882f3c72c116.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-878a3c84-5fad-4ede-995a-882f3c72c116-atc-btn-wrapper {
    text-align: center;
  }


#s-878a3c84-5fad-4ede-995a-882f3c72c116 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-878a3c84-5fad-4ede-995a-882f3c72c116.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-878a3c84-5fad-4ede-995a-882f3c72c116.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-878a3c84-5fad-4ede-995a-882f3c72c116.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-7fd60ab4-f91a-4fe9-84e5-ed6bbb1ad44a {
  margin-left: auto;
margin-right: auto;
}

#s-84eca484-2af7-41ff-85aa-f33ec62e70e8 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-84eca484-2af7-41ff-85aa-f33ec62e70e8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-84eca484-2af7-41ff-85aa-f33ec62e70e8 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-84eca484-2af7-41ff-85aa-f33ec62e70e8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-84eca484-2af7-41ff-85aa-f33ec62e70e8 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-84eca484-2af7-41ff-85aa-f33ec62e70e8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-84eca484-2af7-41ff-85aa-f33ec62e70e8 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-84eca484-2af7-41ff-85aa-f33ec62e70e8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-84eca484-2af7-41ff-85aa-f33ec62e70e8 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-84eca484-2af7-41ff-85aa-f33ec62e70e8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-84eca484-2af7-41ff-85aa-f33ec62e70e8 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-d7aa7c4f-bacb-4e23-962e-8f8e97101c86 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d7aa7c4f-bacb-4e23-962e-8f8e97101c86 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-d8bdd1ed-02e2-40fb-9a34-ce169b28fcde {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-d8bdd1ed-02e2-40fb-9a34-ce169b28fcde .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-d8bdd1ed-02e2-40fb-9a34-ce169b28fcde .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-d8bdd1ed-02e2-40fb-9a34-ce169b28fcde .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-411139a1-e168-47f5-942c-2fca8a61e38f {
  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-411139a1-e168-47f5-942c-2fca8a61e38f: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-411139a1-e168-47f5-942c-2fca8a61e38f: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-411139a1-e168-47f5-942c-2fca8a61e38f-atc-btn-wrapper {
    text-align: center;
  }


#s-411139a1-e168-47f5-942c-2fca8a61e38f {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-411139a1-e168-47f5-942c-2fca8a61e38f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-411139a1-e168-47f5-942c-2fca8a61e38f.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-411139a1-e168-47f5-942c-2fca8a61e38f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-411139a1-e168-47f5-942c-2fca8a61e38f-atc-btn-wrapper {
    text-align: center;
  }


#s-411139a1-e168-47f5-942c-2fca8a61e38f {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-411139a1-e168-47f5-942c-2fca8a61e38f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-411139a1-e168-47f5-942c-2fca8a61e38f.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-411139a1-e168-47f5-942c-2fca8a61e38f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-411139a1-e168-47f5-942c-2fca8a61e38f-atc-btn-wrapper {
    text-align: center;
  }


#s-411139a1-e168-47f5-942c-2fca8a61e38f {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-411139a1-e168-47f5-942c-2fca8a61e38f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-411139a1-e168-47f5-942c-2fca8a61e38f.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-411139a1-e168-47f5-942c-2fca8a61e38f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-411139a1-e168-47f5-942c-2fca8a61e38f-atc-btn-wrapper {
    text-align: center;
  }


#s-411139a1-e168-47f5-942c-2fca8a61e38f {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-411139a1-e168-47f5-942c-2fca8a61e38f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-411139a1-e168-47f5-942c-2fca8a61e38f.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-411139a1-e168-47f5-942c-2fca8a61e38f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-411139a1-e168-47f5-942c-2fca8a61e38f-atc-btn-wrapper {
    text-align: center;
  }


#s-411139a1-e168-47f5-942c-2fca8a61e38f {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-411139a1-e168-47f5-942c-2fca8a61e38f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-411139a1-e168-47f5-942c-2fca8a61e38f.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-411139a1-e168-47f5-942c-2fca8a61e38f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-74d8336b-bf8c-434e-99d9-41f151acf76f {
  margin-left: auto;
margin-right: auto;
}

#s-76b467cd-7f7e-4b7d-890e-8f6e4ea002f2 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-76b467cd-7f7e-4b7d-890e-8f6e4ea002f2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-76b467cd-7f7e-4b7d-890e-8f6e4ea002f2 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-76b467cd-7f7e-4b7d-890e-8f6e4ea002f2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-76b467cd-7f7e-4b7d-890e-8f6e4ea002f2 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-76b467cd-7f7e-4b7d-890e-8f6e4ea002f2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-76b467cd-7f7e-4b7d-890e-8f6e4ea002f2 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-76b467cd-7f7e-4b7d-890e-8f6e4ea002f2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-76b467cd-7f7e-4b7d-890e-8f6e4ea002f2 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-76b467cd-7f7e-4b7d-890e-8f6e4ea002f2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-76b467cd-7f7e-4b7d-890e-8f6e4ea002f2 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-1b7e1af1-970e-4c4c-bdfc-fceddc8e3aae {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1b7e1af1-970e-4c4c-bdfc-fceddc8e3aae .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-f421e6bc-bbea-4a78-9ae7-06d44b2f1df0 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-f421e6bc-bbea-4a78-9ae7-06d44b2f1df0 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-f421e6bc-bbea-4a78-9ae7-06d44b2f1df0 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-f421e6bc-bbea-4a78-9ae7-06d44b2f1df0 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4 {
  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-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4: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-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4: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-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4-atc-btn-wrapper {
    text-align: center;
  }


#s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4-atc-btn-wrapper {
    text-align: center;
  }


#s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4-atc-btn-wrapper {
    text-align: center;
  }


#s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4-atc-btn-wrapper {
    text-align: center;
  }


#s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4-atc-btn-wrapper {
    text-align: center;
  }


#s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-5b26a8d6-b8ec-4c8d-8e90-48c8cfc18da4.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-f01fff3e-6e69-4d07-8b0a-37653120018b {
  margin-left: auto;
margin-right: auto;
}

#s-8c73ab07-ddbd-4c0d-a65f-9a9b02791168 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-8c73ab07-ddbd-4c0d-a65f-9a9b02791168 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8c73ab07-ddbd-4c0d-a65f-9a9b02791168 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-8c73ab07-ddbd-4c0d-a65f-9a9b02791168 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8c73ab07-ddbd-4c0d-a65f-9a9b02791168 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-8c73ab07-ddbd-4c0d-a65f-9a9b02791168 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8c73ab07-ddbd-4c0d-a65f-9a9b02791168 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-8c73ab07-ddbd-4c0d-a65f-9a9b02791168 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8c73ab07-ddbd-4c0d-a65f-9a9b02791168 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-8c73ab07-ddbd-4c0d-a65f-9a9b02791168 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8c73ab07-ddbd-4c0d-a65f-9a9b02791168 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-4e0e61ea-41f6-4b19-816c-aafdd55c2281 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4e0e61ea-41f6-4b19-816c-aafdd55c2281 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-15da723c-5a82-457e-b8b7-38db5788ebd5 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-15da723c-5a82-457e-b8b7-38db5788ebd5 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-15da723c-5a82-457e-b8b7-38db5788ebd5 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-15da723c-5a82-457e-b8b7-38db5788ebd5 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-0cbda80d-be88-4e9d-895f-872157cb5b91 {
  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-0cbda80d-be88-4e9d-895f-872157cb5b91: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-0cbda80d-be88-4e9d-895f-872157cb5b91: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-0cbda80d-be88-4e9d-895f-872157cb5b91-atc-btn-wrapper {
    text-align: center;
  }


#s-0cbda80d-be88-4e9d-895f-872157cb5b91 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0cbda80d-be88-4e9d-895f-872157cb5b91.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0cbda80d-be88-4e9d-895f-872157cb5b91.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-0cbda80d-be88-4e9d-895f-872157cb5b91.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-0cbda80d-be88-4e9d-895f-872157cb5b91-atc-btn-wrapper {
    text-align: center;
  }


#s-0cbda80d-be88-4e9d-895f-872157cb5b91 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0cbda80d-be88-4e9d-895f-872157cb5b91.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0cbda80d-be88-4e9d-895f-872157cb5b91.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-0cbda80d-be88-4e9d-895f-872157cb5b91.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-0cbda80d-be88-4e9d-895f-872157cb5b91-atc-btn-wrapper {
    text-align: center;
  }


#s-0cbda80d-be88-4e9d-895f-872157cb5b91 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0cbda80d-be88-4e9d-895f-872157cb5b91.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0cbda80d-be88-4e9d-895f-872157cb5b91.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-0cbda80d-be88-4e9d-895f-872157cb5b91.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-0cbda80d-be88-4e9d-895f-872157cb5b91-atc-btn-wrapper {
    text-align: center;
  }


#s-0cbda80d-be88-4e9d-895f-872157cb5b91 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0cbda80d-be88-4e9d-895f-872157cb5b91.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0cbda80d-be88-4e9d-895f-872157cb5b91.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-0cbda80d-be88-4e9d-895f-872157cb5b91.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-0cbda80d-be88-4e9d-895f-872157cb5b91-atc-btn-wrapper {
    text-align: center;
  }


#s-0cbda80d-be88-4e9d-895f-872157cb5b91 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0cbda80d-be88-4e9d-895f-872157cb5b91.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0cbda80d-be88-4e9d-895f-872157cb5b91.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-0cbda80d-be88-4e9d-895f-872157cb5b91.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-ea1b33ef-399d-4e86-b4d4-3a1a552bc9e2 {
  margin-left: auto;
margin-right: auto;
}

#s-9523e8e3-6f12-490d-b440-7d077b7e4b1a {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-9523e8e3-6f12-490d-b440-7d077b7e4b1a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9523e8e3-6f12-490d-b440-7d077b7e4b1a img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-9523e8e3-6f12-490d-b440-7d077b7e4b1a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9523e8e3-6f12-490d-b440-7d077b7e4b1a img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-9523e8e3-6f12-490d-b440-7d077b7e4b1a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9523e8e3-6f12-490d-b440-7d077b7e4b1a img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-9523e8e3-6f12-490d-b440-7d077b7e4b1a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9523e8e3-6f12-490d-b440-7d077b7e4b1a img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-9523e8e3-6f12-490d-b440-7d077b7e4b1a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9523e8e3-6f12-490d-b440-7d077b7e4b1a img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-f5e0cc4d-7325-4d49-ac1d-746e6daeb4f2 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f5e0cc4d-7325-4d49-ac1d-746e6daeb4f2 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-022bf16c-8378-4be5-b9b6-78dd6e300466 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-022bf16c-8378-4be5-b9b6-78dd6e300466 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-022bf16c-8378-4be5-b9b6-78dd6e300466 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-022bf16c-8378-4be5-b9b6-78dd6e300466 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-760c8db9-cf67-4db0-9efa-08d9f889e68c {
  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-760c8db9-cf67-4db0-9efa-08d9f889e68c: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-760c8db9-cf67-4db0-9efa-08d9f889e68c: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-760c8db9-cf67-4db0-9efa-08d9f889e68c-atc-btn-wrapper {
    text-align: center;
  }


#s-760c8db9-cf67-4db0-9efa-08d9f889e68c {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-760c8db9-cf67-4db0-9efa-08d9f889e68c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-760c8db9-cf67-4db0-9efa-08d9f889e68c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-760c8db9-cf67-4db0-9efa-08d9f889e68c.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-760c8db9-cf67-4db0-9efa-08d9f889e68c-atc-btn-wrapper {
    text-align: center;
  }


#s-760c8db9-cf67-4db0-9efa-08d9f889e68c {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-760c8db9-cf67-4db0-9efa-08d9f889e68c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-760c8db9-cf67-4db0-9efa-08d9f889e68c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-760c8db9-cf67-4db0-9efa-08d9f889e68c.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-760c8db9-cf67-4db0-9efa-08d9f889e68c-atc-btn-wrapper {
    text-align: center;
  }


#s-760c8db9-cf67-4db0-9efa-08d9f889e68c {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-760c8db9-cf67-4db0-9efa-08d9f889e68c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-760c8db9-cf67-4db0-9efa-08d9f889e68c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-760c8db9-cf67-4db0-9efa-08d9f889e68c.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-760c8db9-cf67-4db0-9efa-08d9f889e68c-atc-btn-wrapper {
    text-align: center;
  }


#s-760c8db9-cf67-4db0-9efa-08d9f889e68c {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-760c8db9-cf67-4db0-9efa-08d9f889e68c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-760c8db9-cf67-4db0-9efa-08d9f889e68c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-760c8db9-cf67-4db0-9efa-08d9f889e68c.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-760c8db9-cf67-4db0-9efa-08d9f889e68c-atc-btn-wrapper {
    text-align: center;
  }


#s-760c8db9-cf67-4db0-9efa-08d9f889e68c {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-760c8db9-cf67-4db0-9efa-08d9f889e68c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-760c8db9-cf67-4db0-9efa-08d9f889e68c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-760c8db9-cf67-4db0-9efa-08d9f889e68c.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-f3e08d20-b2af-48f9-8b43-640540cf70d1 {
  margin-left: auto;
margin-right: auto;
}

#s-640877f1-39b7-4ed2-87f9-838481294ca1 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-640877f1-39b7-4ed2-87f9-838481294ca1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-640877f1-39b7-4ed2-87f9-838481294ca1 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-640877f1-39b7-4ed2-87f9-838481294ca1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-640877f1-39b7-4ed2-87f9-838481294ca1 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-640877f1-39b7-4ed2-87f9-838481294ca1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-640877f1-39b7-4ed2-87f9-838481294ca1 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-640877f1-39b7-4ed2-87f9-838481294ca1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-640877f1-39b7-4ed2-87f9-838481294ca1 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-640877f1-39b7-4ed2-87f9-838481294ca1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-640877f1-39b7-4ed2-87f9-838481294ca1 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-6e7ba430-6e8c-40b5-95b6-17ddc02eaf30 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6e7ba430-6e8c-40b5-95b6-17ddc02eaf30 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-4b97b0c6-d896-446c-8ba5-f1c0e2078a5e {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-4b97b0c6-d896-446c-8ba5-f1c0e2078a5e .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-4b97b0c6-d896-446c-8ba5-f1c0e2078a5e .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-4b97b0c6-d896-446c-8ba5-f1c0e2078a5e .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4 {
  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-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4: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-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4: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-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4-atc-btn-wrapper {
    text-align: center;
  }


#s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4-atc-btn-wrapper {
    text-align: center;
  }


#s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4-atc-btn-wrapper {
    text-align: center;
  }


#s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4-atc-btn-wrapper {
    text-align: center;
  }


#s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4-atc-btn-wrapper {
    text-align: center;
  }


#s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-09035ad1-19e2-47bf-a5ab-aa63ff1cf5e4.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-ce60077c-c721-471c-9ee5-8d629f5cea16 {
  margin-left: auto;
margin-right: auto;
}

#s-6b048e70-313f-4206-abd4-e160a5e1f635 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-6b048e70-313f-4206-abd4-e160a5e1f635 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6b048e70-313f-4206-abd4-e160a5e1f635 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-6b048e70-313f-4206-abd4-e160a5e1f635 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6b048e70-313f-4206-abd4-e160a5e1f635 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-6b048e70-313f-4206-abd4-e160a5e1f635 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6b048e70-313f-4206-abd4-e160a5e1f635 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-6b048e70-313f-4206-abd4-e160a5e1f635 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6b048e70-313f-4206-abd4-e160a5e1f635 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-6b048e70-313f-4206-abd4-e160a5e1f635 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6b048e70-313f-4206-abd4-e160a5e1f635 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-92daa451-8455-4cf4-9cd8-539af10ff6fe {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-92daa451-8455-4cf4-9cd8-539af10ff6fe .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-3c86ec15-d6ad-4bc3-a288-9c43f3ab5015 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-3c86ec15-d6ad-4bc3-a288-9c43f3ab5015 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-3c86ec15-d6ad-4bc3-a288-9c43f3ab5015 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-3c86ec15-d6ad-4bc3-a288-9c43f3ab5015 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4 {
  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-16d7845b-0c9f-4d4d-90e7-82fc14b630d4: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-16d7845b-0c9f-4d4d-90e7-82fc14b630d4: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-16d7845b-0c9f-4d4d-90e7-82fc14b630d4-atc-btn-wrapper {
    text-align: center;
  }


#s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4-atc-btn-wrapper {
    text-align: center;
  }


#s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4-atc-btn-wrapper {
    text-align: center;
  }


#s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4-atc-btn-wrapper {
    text-align: center;
  }


#s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4-atc-btn-wrapper {
    text-align: center;
  }


#s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-16d7845b-0c9f-4d4d-90e7-82fc14b630d4.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-61975f1b-4d85-4095-ac9b-6524e6e061f2 {
  margin-left: auto;
margin-right: auto;
}

#s-db69c0e6-78f9-49dc-8ca8-62045f61785b {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-db69c0e6-78f9-49dc-8ca8-62045f61785b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-db69c0e6-78f9-49dc-8ca8-62045f61785b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-db69c0e6-78f9-49dc-8ca8-62045f61785b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-db69c0e6-78f9-49dc-8ca8-62045f61785b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-db69c0e6-78f9-49dc-8ca8-62045f61785b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-db69c0e6-78f9-49dc-8ca8-62045f61785b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-db69c0e6-78f9-49dc-8ca8-62045f61785b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-db69c0e6-78f9-49dc-8ca8-62045f61785b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-db69c0e6-78f9-49dc-8ca8-62045f61785b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-db69c0e6-78f9-49dc-8ca8-62045f61785b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-846acc64-2db9-49bd-9054-110fa20acdae {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-846acc64-2db9-49bd-9054-110fa20acdae .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-d6448319-e145-46a7-b91d-4c69ba545b58 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-d6448319-e145-46a7-b91d-4c69ba545b58 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-d6448319-e145-46a7-b91d-4c69ba545b58 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-d6448319-e145-46a7-b91d-4c69ba545b58 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee {
  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-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee: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-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee: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-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee-atc-btn-wrapper {
    text-align: center;
  }


#s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee-atc-btn-wrapper {
    text-align: center;
  }


#s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee-atc-btn-wrapper {
    text-align: center;
  }


#s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee-atc-btn-wrapper {
    text-align: center;
  }


#s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee-atc-btn-wrapper {
    text-align: center;
  }


#s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-2ddb71c2-2f64-44aa-a11c-83d4cb63f3ee.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-fbec91f1-a1b0-44b1-8223-3ee1f80cba90 {
  margin-left: auto;
margin-right: auto;
}

#s-3d5a1e27-9b2d-4802-9cfe-9eba5f24cb08 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-3d5a1e27-9b2d-4802-9cfe-9eba5f24cb08 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3d5a1e27-9b2d-4802-9cfe-9eba5f24cb08 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-3d5a1e27-9b2d-4802-9cfe-9eba5f24cb08 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3d5a1e27-9b2d-4802-9cfe-9eba5f24cb08 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-3d5a1e27-9b2d-4802-9cfe-9eba5f24cb08 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3d5a1e27-9b2d-4802-9cfe-9eba5f24cb08 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-3d5a1e27-9b2d-4802-9cfe-9eba5f24cb08 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3d5a1e27-9b2d-4802-9cfe-9eba5f24cb08 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-3d5a1e27-9b2d-4802-9cfe-9eba5f24cb08 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3d5a1e27-9b2d-4802-9cfe-9eba5f24cb08 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-fddf68b2-a158-4686-b1a3-4a7b2dbe7e87 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-fddf68b2-a158-4686-b1a3-4a7b2dbe7e87 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-fdbc0a7c-6716-48e3-a35c-2d8a80da9f93 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-fdbc0a7c-6716-48e3-a35c-2d8a80da9f93 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-fdbc0a7c-6716-48e3-a35c-2d8a80da9f93 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-fdbc0a7c-6716-48e3-a35c-2d8a80da9f93 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-5210aa00-e89f-4648-870c-c8679e40eaf5 {
  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-5210aa00-e89f-4648-870c-c8679e40eaf5: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-5210aa00-e89f-4648-870c-c8679e40eaf5: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-5210aa00-e89f-4648-870c-c8679e40eaf5-atc-btn-wrapper {
    text-align: center;
  }


#s-5210aa00-e89f-4648-870c-c8679e40eaf5 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5210aa00-e89f-4648-870c-c8679e40eaf5.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5210aa00-e89f-4648-870c-c8679e40eaf5.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-5210aa00-e89f-4648-870c-c8679e40eaf5.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-5210aa00-e89f-4648-870c-c8679e40eaf5-atc-btn-wrapper {
    text-align: center;
  }


#s-5210aa00-e89f-4648-870c-c8679e40eaf5 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5210aa00-e89f-4648-870c-c8679e40eaf5.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5210aa00-e89f-4648-870c-c8679e40eaf5.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-5210aa00-e89f-4648-870c-c8679e40eaf5.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-5210aa00-e89f-4648-870c-c8679e40eaf5-atc-btn-wrapper {
    text-align: center;
  }


#s-5210aa00-e89f-4648-870c-c8679e40eaf5 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5210aa00-e89f-4648-870c-c8679e40eaf5.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5210aa00-e89f-4648-870c-c8679e40eaf5.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-5210aa00-e89f-4648-870c-c8679e40eaf5.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-5210aa00-e89f-4648-870c-c8679e40eaf5-atc-btn-wrapper {
    text-align: center;
  }


#s-5210aa00-e89f-4648-870c-c8679e40eaf5 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5210aa00-e89f-4648-870c-c8679e40eaf5.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5210aa00-e89f-4648-870c-c8679e40eaf5.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-5210aa00-e89f-4648-870c-c8679e40eaf5.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-5210aa00-e89f-4648-870c-c8679e40eaf5-atc-btn-wrapper {
    text-align: center;
  }


#s-5210aa00-e89f-4648-870c-c8679e40eaf5 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5210aa00-e89f-4648-870c-c8679e40eaf5.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5210aa00-e89f-4648-870c-c8679e40eaf5.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-5210aa00-e89f-4648-870c-c8679e40eaf5.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-8002a53a-3d9b-4f9d-80f8-8a97e2b47d42 {
  margin-left: auto;
margin-right: auto;
}

#s-d2a51302-e1f9-43f8-85ce-c87374309412 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-d2a51302-e1f9-43f8-85ce-c87374309412 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d2a51302-e1f9-43f8-85ce-c87374309412 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-d2a51302-e1f9-43f8-85ce-c87374309412 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d2a51302-e1f9-43f8-85ce-c87374309412 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-d2a51302-e1f9-43f8-85ce-c87374309412 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d2a51302-e1f9-43f8-85ce-c87374309412 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-d2a51302-e1f9-43f8-85ce-c87374309412 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d2a51302-e1f9-43f8-85ce-c87374309412 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-d2a51302-e1f9-43f8-85ce-c87374309412 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d2a51302-e1f9-43f8-85ce-c87374309412 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-d709a1db-2183-4921-9109-a148aa3998a9 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d709a1db-2183-4921-9109-a148aa3998a9 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-b4b3c17e-3f9e-4c30-b763-e62f2ec065af {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-b4b3c17e-3f9e-4c30-b763-e62f2ec065af .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-b4b3c17e-3f9e-4c30-b763-e62f2ec065af .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-b4b3c17e-3f9e-4c30-b763-e62f2ec065af .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-a2307cf5-2bca-4b00-8d57-9764838f74d6 {
  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-a2307cf5-2bca-4b00-8d57-9764838f74d6: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-a2307cf5-2bca-4b00-8d57-9764838f74d6: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-a2307cf5-2bca-4b00-8d57-9764838f74d6-atc-btn-wrapper {
    text-align: center;
  }


#s-a2307cf5-2bca-4b00-8d57-9764838f74d6 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a2307cf5-2bca-4b00-8d57-9764838f74d6.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a2307cf5-2bca-4b00-8d57-9764838f74d6.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-a2307cf5-2bca-4b00-8d57-9764838f74d6.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-a2307cf5-2bca-4b00-8d57-9764838f74d6-atc-btn-wrapper {
    text-align: center;
  }


#s-a2307cf5-2bca-4b00-8d57-9764838f74d6 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a2307cf5-2bca-4b00-8d57-9764838f74d6.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a2307cf5-2bca-4b00-8d57-9764838f74d6.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-a2307cf5-2bca-4b00-8d57-9764838f74d6.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-a2307cf5-2bca-4b00-8d57-9764838f74d6-atc-btn-wrapper {
    text-align: center;
  }


#s-a2307cf5-2bca-4b00-8d57-9764838f74d6 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a2307cf5-2bca-4b00-8d57-9764838f74d6.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a2307cf5-2bca-4b00-8d57-9764838f74d6.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-a2307cf5-2bca-4b00-8d57-9764838f74d6.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-a2307cf5-2bca-4b00-8d57-9764838f74d6-atc-btn-wrapper {
    text-align: center;
  }


#s-a2307cf5-2bca-4b00-8d57-9764838f74d6 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a2307cf5-2bca-4b00-8d57-9764838f74d6.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a2307cf5-2bca-4b00-8d57-9764838f74d6.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-a2307cf5-2bca-4b00-8d57-9764838f74d6.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-a2307cf5-2bca-4b00-8d57-9764838f74d6-atc-btn-wrapper {
    text-align: center;
  }


#s-a2307cf5-2bca-4b00-8d57-9764838f74d6 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a2307cf5-2bca-4b00-8d57-9764838f74d6.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a2307cf5-2bca-4b00-8d57-9764838f74d6.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-a2307cf5-2bca-4b00-8d57-9764838f74d6.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-8f069aee-ca5a-4d09-8946-8bbf7fa28f9c {
  margin-left: auto;
margin-right: auto;
}

#s-a990ee48-7b8a-4aba-83c7-47fbdc20df9d {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-a990ee48-7b8a-4aba-83c7-47fbdc20df9d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a990ee48-7b8a-4aba-83c7-47fbdc20df9d img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-a990ee48-7b8a-4aba-83c7-47fbdc20df9d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a990ee48-7b8a-4aba-83c7-47fbdc20df9d img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-a990ee48-7b8a-4aba-83c7-47fbdc20df9d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a990ee48-7b8a-4aba-83c7-47fbdc20df9d img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-a990ee48-7b8a-4aba-83c7-47fbdc20df9d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a990ee48-7b8a-4aba-83c7-47fbdc20df9d img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-a990ee48-7b8a-4aba-83c7-47fbdc20df9d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a990ee48-7b8a-4aba-83c7-47fbdc20df9d img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-07761059-724a-467e-b980-b62b9825e3f7 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-07761059-724a-467e-b980-b62b9825e3f7 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-3497b963-6fcb-4ca4-aed5-cdf143592379 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-3497b963-6fcb-4ca4-aed5-cdf143592379 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-3497b963-6fcb-4ca4-aed5-cdf143592379 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-3497b963-6fcb-4ca4-aed5-cdf143592379 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb {
  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-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb: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-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb: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-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb-atc-btn-wrapper {
    text-align: center;
  }


#s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb-atc-btn-wrapper {
    text-align: center;
  }


#s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb-atc-btn-wrapper {
    text-align: center;
  }


#s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb-atc-btn-wrapper {
    text-align: center;
  }


#s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb-atc-btn-wrapper {
    text-align: center;
  }


#s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-81c2fdbf-073a-4e0f-8146-e2e5ddfd76eb.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-dca62186-8888-4110-b320-4f97886a7637 {
  margin-left: auto;
margin-right: auto;
}

#s-c9a63503-c0f8-4d21-911b-ad1942a5f2e1 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-c9a63503-c0f8-4d21-911b-ad1942a5f2e1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c9a63503-c0f8-4d21-911b-ad1942a5f2e1 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-c9a63503-c0f8-4d21-911b-ad1942a5f2e1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c9a63503-c0f8-4d21-911b-ad1942a5f2e1 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-c9a63503-c0f8-4d21-911b-ad1942a5f2e1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c9a63503-c0f8-4d21-911b-ad1942a5f2e1 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-c9a63503-c0f8-4d21-911b-ad1942a5f2e1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c9a63503-c0f8-4d21-911b-ad1942a5f2e1 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-c9a63503-c0f8-4d21-911b-ad1942a5f2e1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c9a63503-c0f8-4d21-911b-ad1942a5f2e1 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-d4bc6d17-85b7-4c05-935b-0d946e1dcb5b {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d4bc6d17-85b7-4c05-935b-0d946e1dcb5b .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-8b6aaf68-485a-41d2-9f6b-81507c756ebe {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-8b6aaf68-485a-41d2-9f6b-81507c756ebe .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-8b6aaf68-485a-41d2-9f6b-81507c756ebe .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-8b6aaf68-485a-41d2-9f6b-81507c756ebe .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-f7981a26-d375-453d-ada7-9a95d85c2dff {
  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-f7981a26-d375-453d-ada7-9a95d85c2dff: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-f7981a26-d375-453d-ada7-9a95d85c2dff: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-f7981a26-d375-453d-ada7-9a95d85c2dff-atc-btn-wrapper {
    text-align: center;
  }


#s-f7981a26-d375-453d-ada7-9a95d85c2dff {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f7981a26-d375-453d-ada7-9a95d85c2dff.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f7981a26-d375-453d-ada7-9a95d85c2dff.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-f7981a26-d375-453d-ada7-9a95d85c2dff.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-f7981a26-d375-453d-ada7-9a95d85c2dff-atc-btn-wrapper {
    text-align: center;
  }


#s-f7981a26-d375-453d-ada7-9a95d85c2dff {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f7981a26-d375-453d-ada7-9a95d85c2dff.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f7981a26-d375-453d-ada7-9a95d85c2dff.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-f7981a26-d375-453d-ada7-9a95d85c2dff.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-f7981a26-d375-453d-ada7-9a95d85c2dff-atc-btn-wrapper {
    text-align: center;
  }


#s-f7981a26-d375-453d-ada7-9a95d85c2dff {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f7981a26-d375-453d-ada7-9a95d85c2dff.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f7981a26-d375-453d-ada7-9a95d85c2dff.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-f7981a26-d375-453d-ada7-9a95d85c2dff.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-f7981a26-d375-453d-ada7-9a95d85c2dff-atc-btn-wrapper {
    text-align: center;
  }


#s-f7981a26-d375-453d-ada7-9a95d85c2dff {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f7981a26-d375-453d-ada7-9a95d85c2dff.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f7981a26-d375-453d-ada7-9a95d85c2dff.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-f7981a26-d375-453d-ada7-9a95d85c2dff.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-f7981a26-d375-453d-ada7-9a95d85c2dff-atc-btn-wrapper {
    text-align: center;
  }


#s-f7981a26-d375-453d-ada7-9a95d85c2dff {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f7981a26-d375-453d-ada7-9a95d85c2dff.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f7981a26-d375-453d-ada7-9a95d85c2dff.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-f7981a26-d375-453d-ada7-9a95d85c2dff.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-b688dcc5-5719-4389-8297-028ac7356855 {
  margin-left: auto;
margin-right: auto;
}

#s-5a8b6ad2-e607-4d79-9ea7-fb490da4bd3c {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-5a8b6ad2-e607-4d79-9ea7-fb490da4bd3c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5a8b6ad2-e607-4d79-9ea7-fb490da4bd3c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-5a8b6ad2-e607-4d79-9ea7-fb490da4bd3c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5a8b6ad2-e607-4d79-9ea7-fb490da4bd3c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-5a8b6ad2-e607-4d79-9ea7-fb490da4bd3c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5a8b6ad2-e607-4d79-9ea7-fb490da4bd3c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-5a8b6ad2-e607-4d79-9ea7-fb490da4bd3c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5a8b6ad2-e607-4d79-9ea7-fb490da4bd3c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-5a8b6ad2-e607-4d79-9ea7-fb490da4bd3c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5a8b6ad2-e607-4d79-9ea7-fb490da4bd3c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-4a5f6d79-ea55-4cbc-b008-5d082bd03e5f {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4a5f6d79-ea55-4cbc-b008-5d082bd03e5f .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-fecf6c20-c36a-4d6b-b7dc-8b71d2498ccd {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-fecf6c20-c36a-4d6b-b7dc-8b71d2498ccd .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-fecf6c20-c36a-4d6b-b7dc-8b71d2498ccd .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-fecf6c20-c36a-4d6b-b7dc-8b71d2498ccd .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-5bb089b1-c174-4282-aa84-f57fc896109b {
  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-5bb089b1-c174-4282-aa84-f57fc896109b: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-5bb089b1-c174-4282-aa84-f57fc896109b: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-5bb089b1-c174-4282-aa84-f57fc896109b-atc-btn-wrapper {
    text-align: center;
  }


#s-5bb089b1-c174-4282-aa84-f57fc896109b {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5bb089b1-c174-4282-aa84-f57fc896109b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5bb089b1-c174-4282-aa84-f57fc896109b.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-5bb089b1-c174-4282-aa84-f57fc896109b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-5bb089b1-c174-4282-aa84-f57fc896109b-atc-btn-wrapper {
    text-align: center;
  }


#s-5bb089b1-c174-4282-aa84-f57fc896109b {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5bb089b1-c174-4282-aa84-f57fc896109b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5bb089b1-c174-4282-aa84-f57fc896109b.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-5bb089b1-c174-4282-aa84-f57fc896109b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-5bb089b1-c174-4282-aa84-f57fc896109b-atc-btn-wrapper {
    text-align: center;
  }


#s-5bb089b1-c174-4282-aa84-f57fc896109b {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5bb089b1-c174-4282-aa84-f57fc896109b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5bb089b1-c174-4282-aa84-f57fc896109b.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-5bb089b1-c174-4282-aa84-f57fc896109b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-5bb089b1-c174-4282-aa84-f57fc896109b-atc-btn-wrapper {
    text-align: center;
  }


#s-5bb089b1-c174-4282-aa84-f57fc896109b {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5bb089b1-c174-4282-aa84-f57fc896109b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5bb089b1-c174-4282-aa84-f57fc896109b.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-5bb089b1-c174-4282-aa84-f57fc896109b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-5bb089b1-c174-4282-aa84-f57fc896109b-atc-btn-wrapper {
    text-align: center;
  }


#s-5bb089b1-c174-4282-aa84-f57fc896109b {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5bb089b1-c174-4282-aa84-f57fc896109b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5bb089b1-c174-4282-aa84-f57fc896109b.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-5bb089b1-c174-4282-aa84-f57fc896109b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-8ce7122c-6aa2-4038-a24e-ab4cd2e00632 {
  margin-left: auto;
margin-right: auto;
}

#s-03ff7423-51c5-4532-9e01-13185e498a78 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-03ff7423-51c5-4532-9e01-13185e498a78 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-03ff7423-51c5-4532-9e01-13185e498a78 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-03ff7423-51c5-4532-9e01-13185e498a78 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-03ff7423-51c5-4532-9e01-13185e498a78 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-03ff7423-51c5-4532-9e01-13185e498a78 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-03ff7423-51c5-4532-9e01-13185e498a78 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-03ff7423-51c5-4532-9e01-13185e498a78 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-03ff7423-51c5-4532-9e01-13185e498a78 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-03ff7423-51c5-4532-9e01-13185e498a78 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-03ff7423-51c5-4532-9e01-13185e498a78 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-75515baa-a682-449f-9ded-2117b476f8b6 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-75515baa-a682-449f-9ded-2117b476f8b6 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-b9d23c9e-8d9d-4878-9f81-eee0f28350ab {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-b9d23c9e-8d9d-4878-9f81-eee0f28350ab .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-b9d23c9e-8d9d-4878-9f81-eee0f28350ab .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-b9d23c9e-8d9d-4878-9f81-eee0f28350ab .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-38a61c9b-7cff-445b-9f43-92701b7b07ca {
  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-38a61c9b-7cff-445b-9f43-92701b7b07ca: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-38a61c9b-7cff-445b-9f43-92701b7b07ca: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-38a61c9b-7cff-445b-9f43-92701b7b07ca-atc-btn-wrapper {
    text-align: center;
  }


#s-38a61c9b-7cff-445b-9f43-92701b7b07ca {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-38a61c9b-7cff-445b-9f43-92701b7b07ca.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-38a61c9b-7cff-445b-9f43-92701b7b07ca.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-38a61c9b-7cff-445b-9f43-92701b7b07ca.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-38a61c9b-7cff-445b-9f43-92701b7b07ca-atc-btn-wrapper {
    text-align: center;
  }


#s-38a61c9b-7cff-445b-9f43-92701b7b07ca {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-38a61c9b-7cff-445b-9f43-92701b7b07ca.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-38a61c9b-7cff-445b-9f43-92701b7b07ca.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-38a61c9b-7cff-445b-9f43-92701b7b07ca.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-38a61c9b-7cff-445b-9f43-92701b7b07ca-atc-btn-wrapper {
    text-align: center;
  }


#s-38a61c9b-7cff-445b-9f43-92701b7b07ca {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-38a61c9b-7cff-445b-9f43-92701b7b07ca.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-38a61c9b-7cff-445b-9f43-92701b7b07ca.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-38a61c9b-7cff-445b-9f43-92701b7b07ca.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-38a61c9b-7cff-445b-9f43-92701b7b07ca-atc-btn-wrapper {
    text-align: center;
  }


#s-38a61c9b-7cff-445b-9f43-92701b7b07ca {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-38a61c9b-7cff-445b-9f43-92701b7b07ca.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-38a61c9b-7cff-445b-9f43-92701b7b07ca.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-38a61c9b-7cff-445b-9f43-92701b7b07ca.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-38a61c9b-7cff-445b-9f43-92701b7b07ca-atc-btn-wrapper {
    text-align: center;
  }


#s-38a61c9b-7cff-445b-9f43-92701b7b07ca {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-38a61c9b-7cff-445b-9f43-92701b7b07ca.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-38a61c9b-7cff-445b-9f43-92701b7b07ca.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-38a61c9b-7cff-445b-9f43-92701b7b07ca.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-5d05f7c3-c621-42e2-8059-16bf53aa6238 {
  margin-left: auto;
margin-right: auto;
}

#s-e1b69a67-579f-4ef3-a609-16d6508138ac {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-e1b69a67-579f-4ef3-a609-16d6508138ac .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e1b69a67-579f-4ef3-a609-16d6508138ac img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-e1b69a67-579f-4ef3-a609-16d6508138ac .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e1b69a67-579f-4ef3-a609-16d6508138ac img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-e1b69a67-579f-4ef3-a609-16d6508138ac .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e1b69a67-579f-4ef3-a609-16d6508138ac img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-e1b69a67-579f-4ef3-a609-16d6508138ac .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e1b69a67-579f-4ef3-a609-16d6508138ac img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-e1b69a67-579f-4ef3-a609-16d6508138ac .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e1b69a67-579f-4ef3-a609-16d6508138ac img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-3eff1bcc-fb8e-42ea-9b50-ce38ce9d0acd {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3eff1bcc-fb8e-42ea-9b50-ce38ce9d0acd .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-25064726-027c-4aff-ae9b-ec07d28ef406 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-25064726-027c-4aff-ae9b-ec07d28ef406 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-25064726-027c-4aff-ae9b-ec07d28ef406 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-25064726-027c-4aff-ae9b-ec07d28ef406 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-a31532ff-90ed-428d-ba3a-07056d1a430a {
  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-a31532ff-90ed-428d-ba3a-07056d1a430a: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-a31532ff-90ed-428d-ba3a-07056d1a430a: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-a31532ff-90ed-428d-ba3a-07056d1a430a-atc-btn-wrapper {
    text-align: center;
  }


#s-a31532ff-90ed-428d-ba3a-07056d1a430a {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a31532ff-90ed-428d-ba3a-07056d1a430a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a31532ff-90ed-428d-ba3a-07056d1a430a.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-a31532ff-90ed-428d-ba3a-07056d1a430a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-a31532ff-90ed-428d-ba3a-07056d1a430a-atc-btn-wrapper {
    text-align: center;
  }


#s-a31532ff-90ed-428d-ba3a-07056d1a430a {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a31532ff-90ed-428d-ba3a-07056d1a430a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a31532ff-90ed-428d-ba3a-07056d1a430a.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-a31532ff-90ed-428d-ba3a-07056d1a430a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-a31532ff-90ed-428d-ba3a-07056d1a430a-atc-btn-wrapper {
    text-align: center;
  }


#s-a31532ff-90ed-428d-ba3a-07056d1a430a {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a31532ff-90ed-428d-ba3a-07056d1a430a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a31532ff-90ed-428d-ba3a-07056d1a430a.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-a31532ff-90ed-428d-ba3a-07056d1a430a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-a31532ff-90ed-428d-ba3a-07056d1a430a-atc-btn-wrapper {
    text-align: center;
  }


#s-a31532ff-90ed-428d-ba3a-07056d1a430a {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a31532ff-90ed-428d-ba3a-07056d1a430a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a31532ff-90ed-428d-ba3a-07056d1a430a.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-a31532ff-90ed-428d-ba3a-07056d1a430a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-a31532ff-90ed-428d-ba3a-07056d1a430a-atc-btn-wrapper {
    text-align: center;
  }


#s-a31532ff-90ed-428d-ba3a-07056d1a430a {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a31532ff-90ed-428d-ba3a-07056d1a430a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a31532ff-90ed-428d-ba3a-07056d1a430a.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-a31532ff-90ed-428d-ba3a-07056d1a430a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-e868890f-cc47-4e15-933e-62b4b1a38ced {
  margin-left: auto;
margin-right: auto;
}

#s-5d7c6192-7ee7-4945-8de4-322e7f5a1971 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-5d7c6192-7ee7-4945-8de4-322e7f5a1971 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5d7c6192-7ee7-4945-8de4-322e7f5a1971 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-5d7c6192-7ee7-4945-8de4-322e7f5a1971 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5d7c6192-7ee7-4945-8de4-322e7f5a1971 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-5d7c6192-7ee7-4945-8de4-322e7f5a1971 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5d7c6192-7ee7-4945-8de4-322e7f5a1971 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-5d7c6192-7ee7-4945-8de4-322e7f5a1971 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5d7c6192-7ee7-4945-8de4-322e7f5a1971 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-5d7c6192-7ee7-4945-8de4-322e7f5a1971 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5d7c6192-7ee7-4945-8de4-322e7f5a1971 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-ceb2f042-e60d-4f29-b8f3-5e6005e68bf9 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ceb2f042-e60d-4f29-b8f3-5e6005e68bf9 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-29a64a21-c9fa-43d4-9ef4-71cafbdc3c5f {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-29a64a21-c9fa-43d4-9ef4-71cafbdc3c5f .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-29a64a21-c9fa-43d4-9ef4-71cafbdc3c5f .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-29a64a21-c9fa-43d4-9ef4-71cafbdc3c5f .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba {
  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-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba: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-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba: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-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba-atc-btn-wrapper {
    text-align: center;
  }


#s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba-atc-btn-wrapper {
    text-align: center;
  }


#s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba-atc-btn-wrapper {
    text-align: center;
  }


#s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba-atc-btn-wrapper {
    text-align: center;
  }


#s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba-atc-btn-wrapper {
    text-align: center;
  }


#s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-21f8283f-f5d4-4429-a0c7-6e8238dfb9ba.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-ae11cd8f-4c23-49cd-8f7a-6a8ad45e00ca {
  margin-left: auto;
margin-right: auto;
}

#s-3bc7924f-a3d2-4d8d-bd12-0af6ac613585 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-3bc7924f-a3d2-4d8d-bd12-0af6ac613585 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3bc7924f-a3d2-4d8d-bd12-0af6ac613585 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-3bc7924f-a3d2-4d8d-bd12-0af6ac613585 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3bc7924f-a3d2-4d8d-bd12-0af6ac613585 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-3bc7924f-a3d2-4d8d-bd12-0af6ac613585 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3bc7924f-a3d2-4d8d-bd12-0af6ac613585 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-3bc7924f-a3d2-4d8d-bd12-0af6ac613585 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3bc7924f-a3d2-4d8d-bd12-0af6ac613585 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-3bc7924f-a3d2-4d8d-bd12-0af6ac613585 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3bc7924f-a3d2-4d8d-bd12-0af6ac613585 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-207c1684-2a81-4267-84ac-792c3b5fd358 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-207c1684-2a81-4267-84ac-792c3b5fd358 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-184a3940-661e-4f35-bbb7-5f84bd922248 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-184a3940-661e-4f35-bbb7-5f84bd922248 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-184a3940-661e-4f35-bbb7-5f84bd922248 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-184a3940-661e-4f35-bbb7-5f84bd922248 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-76c0840f-f92c-4198-9ef6-7a681e266745 {
  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-76c0840f-f92c-4198-9ef6-7a681e266745: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-76c0840f-f92c-4198-9ef6-7a681e266745: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-76c0840f-f92c-4198-9ef6-7a681e266745-atc-btn-wrapper {
    text-align: center;
  }


#s-76c0840f-f92c-4198-9ef6-7a681e266745 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-76c0840f-f92c-4198-9ef6-7a681e266745.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-76c0840f-f92c-4198-9ef6-7a681e266745.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-76c0840f-f92c-4198-9ef6-7a681e266745.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-76c0840f-f92c-4198-9ef6-7a681e266745-atc-btn-wrapper {
    text-align: center;
  }


#s-76c0840f-f92c-4198-9ef6-7a681e266745 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-76c0840f-f92c-4198-9ef6-7a681e266745.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-76c0840f-f92c-4198-9ef6-7a681e266745.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-76c0840f-f92c-4198-9ef6-7a681e266745.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-76c0840f-f92c-4198-9ef6-7a681e266745-atc-btn-wrapper {
    text-align: center;
  }


#s-76c0840f-f92c-4198-9ef6-7a681e266745 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-76c0840f-f92c-4198-9ef6-7a681e266745.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-76c0840f-f92c-4198-9ef6-7a681e266745.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-76c0840f-f92c-4198-9ef6-7a681e266745.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-76c0840f-f92c-4198-9ef6-7a681e266745-atc-btn-wrapper {
    text-align: center;
  }


#s-76c0840f-f92c-4198-9ef6-7a681e266745 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-76c0840f-f92c-4198-9ef6-7a681e266745.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-76c0840f-f92c-4198-9ef6-7a681e266745.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-76c0840f-f92c-4198-9ef6-7a681e266745.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-76c0840f-f92c-4198-9ef6-7a681e266745-atc-btn-wrapper {
    text-align: center;
  }


#s-76c0840f-f92c-4198-9ef6-7a681e266745 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-76c0840f-f92c-4198-9ef6-7a681e266745.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-76c0840f-f92c-4198-9ef6-7a681e266745.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-76c0840f-f92c-4198-9ef6-7a681e266745.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-af90764f-751d-4297-8842-9b15494cbe92 {
  margin-left: auto;
margin-right: auto;
}

#s-b715bb3d-68cf-4c57-b8da-f66425aa1125 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-b715bb3d-68cf-4c57-b8da-f66425aa1125 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b715bb3d-68cf-4c57-b8da-f66425aa1125 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-b715bb3d-68cf-4c57-b8da-f66425aa1125 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b715bb3d-68cf-4c57-b8da-f66425aa1125 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-b715bb3d-68cf-4c57-b8da-f66425aa1125 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b715bb3d-68cf-4c57-b8da-f66425aa1125 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-b715bb3d-68cf-4c57-b8da-f66425aa1125 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b715bb3d-68cf-4c57-b8da-f66425aa1125 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-b715bb3d-68cf-4c57-b8da-f66425aa1125 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b715bb3d-68cf-4c57-b8da-f66425aa1125 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-6d6141d4-c901-4609-a2b4-fedbccebb17d {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6d6141d4-c901-4609-a2b4-fedbccebb17d .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-d5f3da00-e298-453a-b776-658fd9622455 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-d5f3da00-e298-453a-b776-658fd9622455 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-d5f3da00-e298-453a-b776-658fd9622455 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-d5f3da00-e298-453a-b776-658fd9622455 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-2390bef0-759c-4d8c-9cdc-58a643667338 {
  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-2390bef0-759c-4d8c-9cdc-58a643667338: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-2390bef0-759c-4d8c-9cdc-58a643667338: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-2390bef0-759c-4d8c-9cdc-58a643667338-atc-btn-wrapper {
    text-align: center;
  }


#s-2390bef0-759c-4d8c-9cdc-58a643667338 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2390bef0-759c-4d8c-9cdc-58a643667338.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2390bef0-759c-4d8c-9cdc-58a643667338.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-2390bef0-759c-4d8c-9cdc-58a643667338.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-2390bef0-759c-4d8c-9cdc-58a643667338-atc-btn-wrapper {
    text-align: center;
  }


#s-2390bef0-759c-4d8c-9cdc-58a643667338 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2390bef0-759c-4d8c-9cdc-58a643667338.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2390bef0-759c-4d8c-9cdc-58a643667338.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-2390bef0-759c-4d8c-9cdc-58a643667338.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-2390bef0-759c-4d8c-9cdc-58a643667338-atc-btn-wrapper {
    text-align: center;
  }


#s-2390bef0-759c-4d8c-9cdc-58a643667338 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2390bef0-759c-4d8c-9cdc-58a643667338.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2390bef0-759c-4d8c-9cdc-58a643667338.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-2390bef0-759c-4d8c-9cdc-58a643667338.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-2390bef0-759c-4d8c-9cdc-58a643667338-atc-btn-wrapper {
    text-align: center;
  }


#s-2390bef0-759c-4d8c-9cdc-58a643667338 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2390bef0-759c-4d8c-9cdc-58a643667338.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2390bef0-759c-4d8c-9cdc-58a643667338.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-2390bef0-759c-4d8c-9cdc-58a643667338.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-2390bef0-759c-4d8c-9cdc-58a643667338-atc-btn-wrapper {
    text-align: center;
  }


#s-2390bef0-759c-4d8c-9cdc-58a643667338 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2390bef0-759c-4d8c-9cdc-58a643667338.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2390bef0-759c-4d8c-9cdc-58a643667338.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-2390bef0-759c-4d8c-9cdc-58a643667338.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-5d8d332b-eecf-4f58-8e1e-c94abc698a15 {
  margin-left: auto;
margin-right: auto;
}

#s-13eb03c3-029a-4ec7-b8bc-7e25641a9a63 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-13eb03c3-029a-4ec7-b8bc-7e25641a9a63 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-13eb03c3-029a-4ec7-b8bc-7e25641a9a63 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-13eb03c3-029a-4ec7-b8bc-7e25641a9a63 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-13eb03c3-029a-4ec7-b8bc-7e25641a9a63 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-13eb03c3-029a-4ec7-b8bc-7e25641a9a63 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-13eb03c3-029a-4ec7-b8bc-7e25641a9a63 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-13eb03c3-029a-4ec7-b8bc-7e25641a9a63 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-13eb03c3-029a-4ec7-b8bc-7e25641a9a63 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-13eb03c3-029a-4ec7-b8bc-7e25641a9a63 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-13eb03c3-029a-4ec7-b8bc-7e25641a9a63 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-b7027cfe-8fbd-435a-95f5-5a14ae202433 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b7027cfe-8fbd-435a-95f5-5a14ae202433 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-1a4387d0-4879-43be-9305-d926f8a8b3c5 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-1a4387d0-4879-43be-9305-d926f8a8b3c5 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-1a4387d0-4879-43be-9305-d926f8a8b3c5 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-1a4387d0-4879-43be-9305-d926f8a8b3c5 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686 {
  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-f9a7d6b0-9417-41d9-88e8-a8250cc2f686: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-f9a7d6b0-9417-41d9-88e8-a8250cc2f686: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-f9a7d6b0-9417-41d9-88e8-a8250cc2f686-atc-btn-wrapper {
    text-align: center;
  }


#s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686-atc-btn-wrapper {
    text-align: center;
  }


#s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686-atc-btn-wrapper {
    text-align: center;
  }


#s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686-atc-btn-wrapper {
    text-align: center;
  }


#s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686-atc-btn-wrapper {
    text-align: center;
  }


#s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-f9a7d6b0-9417-41d9-88e8-a8250cc2f686.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-3b23aeeb-d3bc-4bec-943d-3207e53e19be {
  margin-left: auto;
margin-right: auto;
}

#s-39cf9f2e-5961-4e65-a7a6-0c6fcf3af6b7 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-39cf9f2e-5961-4e65-a7a6-0c6fcf3af6b7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-39cf9f2e-5961-4e65-a7a6-0c6fcf3af6b7 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-39cf9f2e-5961-4e65-a7a6-0c6fcf3af6b7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-39cf9f2e-5961-4e65-a7a6-0c6fcf3af6b7 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-39cf9f2e-5961-4e65-a7a6-0c6fcf3af6b7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-39cf9f2e-5961-4e65-a7a6-0c6fcf3af6b7 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-39cf9f2e-5961-4e65-a7a6-0c6fcf3af6b7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-39cf9f2e-5961-4e65-a7a6-0c6fcf3af6b7 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-39cf9f2e-5961-4e65-a7a6-0c6fcf3af6b7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-39cf9f2e-5961-4e65-a7a6-0c6fcf3af6b7 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-96e73a8e-62f0-4925-84cc-f5e8bf89d664 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-96e73a8e-62f0-4925-84cc-f5e8bf89d664 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-19ce1027-b81f-44cb-a1ad-07124bd35022 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-19ce1027-b81f-44cb-a1ad-07124bd35022 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-19ce1027-b81f-44cb-a1ad-07124bd35022 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-19ce1027-b81f-44cb-a1ad-07124bd35022 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-e78de736-ef65-4e29-870f-54b3c34cfead {
  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-e78de736-ef65-4e29-870f-54b3c34cfead: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-e78de736-ef65-4e29-870f-54b3c34cfead: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-e78de736-ef65-4e29-870f-54b3c34cfead-atc-btn-wrapper {
    text-align: center;
  }


#s-e78de736-ef65-4e29-870f-54b3c34cfead {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-e78de736-ef65-4e29-870f-54b3c34cfead.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e78de736-ef65-4e29-870f-54b3c34cfead.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-e78de736-ef65-4e29-870f-54b3c34cfead.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-e78de736-ef65-4e29-870f-54b3c34cfead-atc-btn-wrapper {
    text-align: center;
  }


#s-e78de736-ef65-4e29-870f-54b3c34cfead {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-e78de736-ef65-4e29-870f-54b3c34cfead.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e78de736-ef65-4e29-870f-54b3c34cfead.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-e78de736-ef65-4e29-870f-54b3c34cfead.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-e78de736-ef65-4e29-870f-54b3c34cfead-atc-btn-wrapper {
    text-align: center;
  }


#s-e78de736-ef65-4e29-870f-54b3c34cfead {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-e78de736-ef65-4e29-870f-54b3c34cfead.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e78de736-ef65-4e29-870f-54b3c34cfead.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-e78de736-ef65-4e29-870f-54b3c34cfead.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-e78de736-ef65-4e29-870f-54b3c34cfead-atc-btn-wrapper {
    text-align: center;
  }


#s-e78de736-ef65-4e29-870f-54b3c34cfead {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-e78de736-ef65-4e29-870f-54b3c34cfead.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e78de736-ef65-4e29-870f-54b3c34cfead.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-e78de736-ef65-4e29-870f-54b3c34cfead.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-e78de736-ef65-4e29-870f-54b3c34cfead-atc-btn-wrapper {
    text-align: center;
  }


#s-e78de736-ef65-4e29-870f-54b3c34cfead {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-e78de736-ef65-4e29-870f-54b3c34cfead.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e78de736-ef65-4e29-870f-54b3c34cfead.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-e78de736-ef65-4e29-870f-54b3c34cfead.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-b5388d3d-c30f-4f5a-9229-15dd84c9959e {
  margin-left: auto;
margin-right: auto;
}

#s-5ed2ad7a-263c-4979-b171-6455b393905d {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-5ed2ad7a-263c-4979-b171-6455b393905d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5ed2ad7a-263c-4979-b171-6455b393905d img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-5ed2ad7a-263c-4979-b171-6455b393905d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5ed2ad7a-263c-4979-b171-6455b393905d img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-5ed2ad7a-263c-4979-b171-6455b393905d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5ed2ad7a-263c-4979-b171-6455b393905d img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-5ed2ad7a-263c-4979-b171-6455b393905d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5ed2ad7a-263c-4979-b171-6455b393905d img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-5ed2ad7a-263c-4979-b171-6455b393905d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5ed2ad7a-263c-4979-b171-6455b393905d img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-1ced893c-3a6b-4f69-a1c7-c856ad7ee654 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1ced893c-3a6b-4f69-a1c7-c856ad7ee654 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-996dacc2-9ced-4464-add8-e8fd2479854c {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-996dacc2-9ced-4464-add8-e8fd2479854c .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-996dacc2-9ced-4464-add8-e8fd2479854c .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-996dacc2-9ced-4464-add8-e8fd2479854c .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-65a962d9-49a2-404d-95c5-7dcf8860f50f {
  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-65a962d9-49a2-404d-95c5-7dcf8860f50f: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-65a962d9-49a2-404d-95c5-7dcf8860f50f: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-65a962d9-49a2-404d-95c5-7dcf8860f50f-atc-btn-wrapper {
    text-align: center;
  }


#s-65a962d9-49a2-404d-95c5-7dcf8860f50f {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-65a962d9-49a2-404d-95c5-7dcf8860f50f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-65a962d9-49a2-404d-95c5-7dcf8860f50f.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-65a962d9-49a2-404d-95c5-7dcf8860f50f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-65a962d9-49a2-404d-95c5-7dcf8860f50f-atc-btn-wrapper {
    text-align: center;
  }


#s-65a962d9-49a2-404d-95c5-7dcf8860f50f {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-65a962d9-49a2-404d-95c5-7dcf8860f50f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-65a962d9-49a2-404d-95c5-7dcf8860f50f.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-65a962d9-49a2-404d-95c5-7dcf8860f50f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-65a962d9-49a2-404d-95c5-7dcf8860f50f-atc-btn-wrapper {
    text-align: center;
  }


#s-65a962d9-49a2-404d-95c5-7dcf8860f50f {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-65a962d9-49a2-404d-95c5-7dcf8860f50f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-65a962d9-49a2-404d-95c5-7dcf8860f50f.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-65a962d9-49a2-404d-95c5-7dcf8860f50f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-65a962d9-49a2-404d-95c5-7dcf8860f50f-atc-btn-wrapper {
    text-align: center;
  }


#s-65a962d9-49a2-404d-95c5-7dcf8860f50f {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-65a962d9-49a2-404d-95c5-7dcf8860f50f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-65a962d9-49a2-404d-95c5-7dcf8860f50f.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-65a962d9-49a2-404d-95c5-7dcf8860f50f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-65a962d9-49a2-404d-95c5-7dcf8860f50f-atc-btn-wrapper {
    text-align: center;
  }


#s-65a962d9-49a2-404d-95c5-7dcf8860f50f {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-65a962d9-49a2-404d-95c5-7dcf8860f50f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-65a962d9-49a2-404d-95c5-7dcf8860f50f.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-65a962d9-49a2-404d-95c5-7dcf8860f50f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-c042bac5-5bf3-45c8-82ec-3d6f66546386 {
  margin-left: auto;
margin-right: auto;
}

#s-a1c7c5a0-eb28-48c3-a8c6-0d21243013ae {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-a1c7c5a0-eb28-48c3-a8c6-0d21243013ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a1c7c5a0-eb28-48c3-a8c6-0d21243013ae img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-a1c7c5a0-eb28-48c3-a8c6-0d21243013ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a1c7c5a0-eb28-48c3-a8c6-0d21243013ae img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-a1c7c5a0-eb28-48c3-a8c6-0d21243013ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a1c7c5a0-eb28-48c3-a8c6-0d21243013ae img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-a1c7c5a0-eb28-48c3-a8c6-0d21243013ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a1c7c5a0-eb28-48c3-a8c6-0d21243013ae img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-a1c7c5a0-eb28-48c3-a8c6-0d21243013ae .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a1c7c5a0-eb28-48c3-a8c6-0d21243013ae img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-c655bcef-cd86-4c0b-8cf3-7789199a32e6 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c655bcef-cd86-4c0b-8cf3-7789199a32e6 .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-018ef846-17e7-48ef-bb05-e3ccbf498869 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-018ef846-17e7-48ef-bb05-e3ccbf498869 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-018ef846-17e7-48ef-bb05-e3ccbf498869 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-018ef846-17e7-48ef-bb05-e3ccbf498869 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-cfd29707-2360-4dd1-87f5-ecf2118ec70e {
  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-cfd29707-2360-4dd1-87f5-ecf2118ec70e: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-cfd29707-2360-4dd1-87f5-ecf2118ec70e: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-cfd29707-2360-4dd1-87f5-ecf2118ec70e-atc-btn-wrapper {
    text-align: center;
  }


#s-cfd29707-2360-4dd1-87f5-ecf2118ec70e {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-cfd29707-2360-4dd1-87f5-ecf2118ec70e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-cfd29707-2360-4dd1-87f5-ecf2118ec70e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-cfd29707-2360-4dd1-87f5-ecf2118ec70e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-cfd29707-2360-4dd1-87f5-ecf2118ec70e-atc-btn-wrapper {
    text-align: center;
  }


#s-cfd29707-2360-4dd1-87f5-ecf2118ec70e {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-cfd29707-2360-4dd1-87f5-ecf2118ec70e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-cfd29707-2360-4dd1-87f5-ecf2118ec70e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-cfd29707-2360-4dd1-87f5-ecf2118ec70e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-cfd29707-2360-4dd1-87f5-ecf2118ec70e-atc-btn-wrapper {
    text-align: center;
  }


#s-cfd29707-2360-4dd1-87f5-ecf2118ec70e {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-cfd29707-2360-4dd1-87f5-ecf2118ec70e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-cfd29707-2360-4dd1-87f5-ecf2118ec70e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-cfd29707-2360-4dd1-87f5-ecf2118ec70e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-cfd29707-2360-4dd1-87f5-ecf2118ec70e-atc-btn-wrapper {
    text-align: center;
  }


#s-cfd29707-2360-4dd1-87f5-ecf2118ec70e {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-cfd29707-2360-4dd1-87f5-ecf2118ec70e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-cfd29707-2360-4dd1-87f5-ecf2118ec70e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-cfd29707-2360-4dd1-87f5-ecf2118ec70e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-cfd29707-2360-4dd1-87f5-ecf2118ec70e-atc-btn-wrapper {
    text-align: center;
  }


#s-cfd29707-2360-4dd1-87f5-ecf2118ec70e {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-cfd29707-2360-4dd1-87f5-ecf2118ec70e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-cfd29707-2360-4dd1-87f5-ecf2118ec70e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-cfd29707-2360-4dd1-87f5-ecf2118ec70e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-64c7f54e-42e3-4327-8997-312575141a36 {
  margin-left: auto;
margin-right: auto;
}

#s-13cc8934-d9ac-42d4-ac3c-52c11a8bb8d3 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-13cc8934-d9ac-42d4-ac3c-52c11a8bb8d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-13cc8934-d9ac-42d4-ac3c-52c11a8bb8d3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-13cc8934-d9ac-42d4-ac3c-52c11a8bb8d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-13cc8934-d9ac-42d4-ac3c-52c11a8bb8d3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-13cc8934-d9ac-42d4-ac3c-52c11a8bb8d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-13cc8934-d9ac-42d4-ac3c-52c11a8bb8d3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-13cc8934-d9ac-42d4-ac3c-52c11a8bb8d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-13cc8934-d9ac-42d4-ac3c-52c11a8bb8d3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-13cc8934-d9ac-42d4-ac3c-52c11a8bb8d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-13cc8934-d9ac-42d4-ac3c-52c11a8bb8d3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-5debba74-6f0b-4f74-904a-c4e98c884ecc {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5debba74-6f0b-4f74-904a-c4e98c884ecc .shg-product-title-component h3 span {
  
  
  
  
  font-size: 18px;
  
  
  
}

#s-c18a2cb4-18a3-4336-9f82-5eb2691ac5a1 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-c18a2cb4-18a3-4336-9f82-5eb2691ac5a1 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  
  
  font-style:  normal ;
}

#s-c18a2cb4-18a3-4336-9f82-5eb2691ac5a1 .shg-product-price {
  color: #000;
  
  
  font-style:  normal ;
  font-size: 14px;
}

#s-c18a2cb4-18a3-4336-9f82-5eb2691ac5a1 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-70bc3c49-f8ed-4a93-8875-c8c19271e60e {
  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-70bc3c49-f8ed-4a93-8875-c8c19271e60e: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-70bc3c49-f8ed-4a93-8875-c8c19271e60e: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-70bc3c49-f8ed-4a93-8875-c8c19271e60e-atc-btn-wrapper {
    text-align: center;
  }


#s-70bc3c49-f8ed-4a93-8875-c8c19271e60e {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-70bc3c49-f8ed-4a93-8875-c8c19271e60e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-70bc3c49-f8ed-4a93-8875-c8c19271e60e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-70bc3c49-f8ed-4a93-8875-c8c19271e60e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-70bc3c49-f8ed-4a93-8875-c8c19271e60e-atc-btn-wrapper {
    text-align: center;
  }


#s-70bc3c49-f8ed-4a93-8875-c8c19271e60e {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-70bc3c49-f8ed-4a93-8875-c8c19271e60e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-70bc3c49-f8ed-4a93-8875-c8c19271e60e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-70bc3c49-f8ed-4a93-8875-c8c19271e60e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-70bc3c49-f8ed-4a93-8875-c8c19271e60e-atc-btn-wrapper {
    text-align: center;
  }


#s-70bc3c49-f8ed-4a93-8875-c8c19271e60e {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-70bc3c49-f8ed-4a93-8875-c8c19271e60e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-70bc3c49-f8ed-4a93-8875-c8c19271e60e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-70bc3c49-f8ed-4a93-8875-c8c19271e60e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-70bc3c49-f8ed-4a93-8875-c8c19271e60e-atc-btn-wrapper {
    text-align: center;
  }


#s-70bc3c49-f8ed-4a93-8875-c8c19271e60e {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-70bc3c49-f8ed-4a93-8875-c8c19271e60e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-70bc3c49-f8ed-4a93-8875-c8c19271e60e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-70bc3c49-f8ed-4a93-8875-c8c19271e60e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-70bc3c49-f8ed-4a93-8875-c8c19271e60e-atc-btn-wrapper {
    text-align: center;
  }


#s-70bc3c49-f8ed-4a93-8875-c8c19271e60e {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-70bc3c49-f8ed-4a93-8875-c8c19271e60e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-70bc3c49-f8ed-4a93-8875-c8c19271e60e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-70bc3c49-f8ed-4a93-8875-c8c19271e60e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-d4b51d63-d434-4d52-a7ac-f5e8af333a2f {
  margin-left: auto;
margin-right: auto;
padding-top: 50px;
min-height: 50px;
background-color: rgba(249, 250, 252, 1);
}








#s-d4b51d63-d434-4d52-a7ac-f5e8af333a2f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d4b51d63-d434-4d52-a7ac-f5e8af333a2f.shg-box.shg-c {
  justify-content: center;
}

#s-338bd254-2df0-4c53-a1c5-2b847cf2eb81 {
  margin-left: auto;
margin-right: auto;
padding-left: 1%;
}

#s-338bd254-2df0-4c53-a1c5-2b847cf2eb81 .shg-proportional-font-size,
#s-338bd254-2df0-4c53-a1c5-2b847cf2eb81 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-a4b085f0-f54d-4888-9d01-859fce979387 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-5a489118-04da-428d-bd44-e3b9451687cb {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5a489118-04da-428d-bd44-e3b9451687cb .shogun-heading-component h1 {
  
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


@media (max-width: 767px){#s-5a489118-04da-428d-bd44-e3b9451687cb .shogun-heading-component h1 {
  
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
/* 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-a4f6ad06-00e6-40b8-8a2c-ed5dd25bf9b5 {
  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-a4f6ad06-00e6-40b8-8a2c-ed5dd25bf9b5 {
  margin-left: 5%;
margin-right: 5%;
}
}
/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-a4f6ad06-00e6-40b8-8a2c-ed5dd25bf9b5 {
  --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-a4f6ad06-00e6-40b8-8a2c-ed5dd25bf9b5 > .swiper-button-prev,
#slider-v3-s-a4f6ad06-00e6-40b8-8a2c-ed5dd25bf9b5 > .swiper-button-next {
  
}

#slider-v3-s-a4f6ad06-00e6-40b8-8a2c-ed5dd25bf9b5 > .swiper-button-prev svg,
#slider-v3-s-a4f6ad06-00e6-40b8-8a2c-ed5dd25bf9b5 > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-a4f6ad06-00e6-40b8-8a2c-ed5dd25bf9b5 > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-a4f6ad06-00e6-40b8-8a2c-ed5dd25bf9b5 > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-a4f6ad06-00e6-40b8-8a2c-ed5dd25bf9b5 > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-a4f6ad06-00e6-40b8-8a2c-ed5dd25bf9b5 .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-a4f6ad06-00e6-40b8-8a2c-ed5dd25bf9b5 .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-a4f6ad06-00e6-40b8-8a2c-ed5dd25bf9b5 .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-8a04052d-315a-4dd3-83bb-637eac689e53 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 50px;
padding-left: 6%;
padding-bottom: 50px;
padding-right: 6%;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(180, 180, 180, 1);
border-style: none;
border-radius: 15px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-8a04052d-315a-4dd3-83bb-637eac689e53 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8a04052d-315a-4dd3-83bb-637eac689e53.shg-box.shg-c {
  justify-content: center;
}

#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 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-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 img.shogun-image {
  width: 100%;
  
  
  

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




.s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 img.shogun-image {
  width: 100%;
  
  
  

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




.s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 img.shogun-image {
  width: 100%;
  
  
  

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




.s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 img.shogun-image {
  width: 100%;
  
  
  

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




.s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53f5825b-bb9d-43e4-81a4-86d7c044e0f3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-7c089d79-7f9b-4251-a196-424edd7b9d3c {
  margin-left: auto;
margin-right: auto;
}

#s-7c089d79-7f9b-4251-a196-424edd7b9d3c .shg-proportional-font-size,
#s-7c089d79-7f9b-4251-a196-424edd7b9d3c .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-f01604a6-0f54-4ee1-8a31-ee29cd799981 {
  margin-left: auto;
margin-right: auto;
}

#s-f01604a6-0f54-4ee1-8a31-ee29cd799981 .shg-proportional-font-size,
#s-f01604a6-0f54-4ee1-8a31-ee29cd799981 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-332b5402-4a4c-480b-ae3e-a76124e149cd {
  margin-left: 0%;
margin-right: 0%;
padding-top: 50px;
padding-left: 6%;
padding-bottom: 50px;
padding-right: 6%;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(180, 180, 180, 1);
border-style: none;
border-radius: 15px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-332b5402-4a4c-480b-ae3e-a76124e149cd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-332b5402-4a4c-480b-ae3e-a76124e149cd.shg-box.shg-c {
  justify-content: center;
}

#s-a41d8966-7875-41f2-a368-8556f6a84fc4 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-a41d8966-7875-41f2-a368-8556f6a84fc4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a41d8966-7875-41f2-a368-8556f6a84fc4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a41d8966-7875-41f2-a368-8556f6a84fc4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a41d8966-7875-41f2-a368-8556f6a84fc4 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-a41d8966-7875-41f2-a368-8556f6a84fc4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a41d8966-7875-41f2-a368-8556f6a84fc4 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-a41d8966-7875-41f2-a368-8556f6a84fc4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a41d8966-7875-41f2-a368-8556f6a84fc4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a41d8966-7875-41f2-a368-8556f6a84fc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a41d8966-7875-41f2-a368-8556f6a84fc4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-a41d8966-7875-41f2-a368-8556f6a84fc4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a41d8966-7875-41f2-a368-8556f6a84fc4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a41d8966-7875-41f2-a368-8556f6a84fc4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a41d8966-7875-41f2-a368-8556f6a84fc4 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-a41d8966-7875-41f2-a368-8556f6a84fc4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a41d8966-7875-41f2-a368-8556f6a84fc4 img.shogun-image {
  width: 100%;
  
  
  

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




.s-a41d8966-7875-41f2-a368-8556f6a84fc4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a41d8966-7875-41f2-a368-8556f6a84fc4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a41d8966-7875-41f2-a368-8556f6a84fc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a41d8966-7875-41f2-a368-8556f6a84fc4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-a41d8966-7875-41f2-a368-8556f6a84fc4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a41d8966-7875-41f2-a368-8556f6a84fc4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a41d8966-7875-41f2-a368-8556f6a84fc4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a41d8966-7875-41f2-a368-8556f6a84fc4 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-a41d8966-7875-41f2-a368-8556f6a84fc4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a41d8966-7875-41f2-a368-8556f6a84fc4 img.shogun-image {
  width: 100%;
  
  
  

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




.s-a41d8966-7875-41f2-a368-8556f6a84fc4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a41d8966-7875-41f2-a368-8556f6a84fc4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a41d8966-7875-41f2-a368-8556f6a84fc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a41d8966-7875-41f2-a368-8556f6a84fc4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-a41d8966-7875-41f2-a368-8556f6a84fc4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a41d8966-7875-41f2-a368-8556f6a84fc4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a41d8966-7875-41f2-a368-8556f6a84fc4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a41d8966-7875-41f2-a368-8556f6a84fc4 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-a41d8966-7875-41f2-a368-8556f6a84fc4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a41d8966-7875-41f2-a368-8556f6a84fc4 img.shogun-image {
  width: 100%;
  
  
  

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




.s-a41d8966-7875-41f2-a368-8556f6a84fc4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a41d8966-7875-41f2-a368-8556f6a84fc4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a41d8966-7875-41f2-a368-8556f6a84fc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a41d8966-7875-41f2-a368-8556f6a84fc4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-a41d8966-7875-41f2-a368-8556f6a84fc4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a41d8966-7875-41f2-a368-8556f6a84fc4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a41d8966-7875-41f2-a368-8556f6a84fc4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a41d8966-7875-41f2-a368-8556f6a84fc4 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-a41d8966-7875-41f2-a368-8556f6a84fc4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a41d8966-7875-41f2-a368-8556f6a84fc4 img.shogun-image {
  width: 100%;
  
  
  

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




.s-a41d8966-7875-41f2-a368-8556f6a84fc4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a41d8966-7875-41f2-a368-8556f6a84fc4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a41d8966-7875-41f2-a368-8556f6a84fc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a41d8966-7875-41f2-a368-8556f6a84fc4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-db974c78-742e-4425-af55-06e07909cf77 {
  margin-left: auto;
margin-right: auto;
}

#s-db974c78-742e-4425-af55-06e07909cf77 .shg-proportional-font-size,
#s-db974c78-742e-4425-af55-06e07909cf77 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-f834dd03-ae90-4330-88c8-cf4325334514 {
  margin-left: auto;
margin-right: auto;
}

#s-f834dd03-ae90-4330-88c8-cf4325334514 .shg-proportional-font-size,
#s-f834dd03-ae90-4330-88c8-cf4325334514 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-26e61627-c3b2-4f11-81cf-ea12bc20c4d0 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 50px;
padding-left: 6%;
padding-bottom: 50px;
padding-right: 6%;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(180, 180, 180, 1);
border-style: none;
border-radius: 15px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-26e61627-c3b2-4f11-81cf-ea12bc20c4d0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-26e61627-c3b2-4f11-81cf-ea12bc20c4d0.shg-box.shg-c {
  justify-content: center;
}

#s-a357797e-a3d9-4ac7-9591-19737f908a38 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-a357797e-a3d9-4ac7-9591-19737f908a38 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a357797e-a3d9-4ac7-9591-19737f908a38-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a357797e-a3d9-4ac7-9591-19737f908a38 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a357797e-a3d9-4ac7-9591-19737f908a38 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-a357797e-a3d9-4ac7-9591-19737f908a38 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a357797e-a3d9-4ac7-9591-19737f908a38 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-a357797e-a3d9-4ac7-9591-19737f908a38 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a357797e-a3d9-4ac7-9591-19737f908a38.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a357797e-a3d9-4ac7-9591-19737f908a38.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a357797e-a3d9-4ac7-9591-19737f908a38.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-a357797e-a3d9-4ac7-9591-19737f908a38 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a357797e-a3d9-4ac7-9591-19737f908a38-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a357797e-a3d9-4ac7-9591-19737f908a38 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a357797e-a3d9-4ac7-9591-19737f908a38 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-a357797e-a3d9-4ac7-9591-19737f908a38 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a357797e-a3d9-4ac7-9591-19737f908a38 img.shogun-image {
  width: 100%;
  
  
  

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




.s-a357797e-a3d9-4ac7-9591-19737f908a38 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a357797e-a3d9-4ac7-9591-19737f908a38.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a357797e-a3d9-4ac7-9591-19737f908a38.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a357797e-a3d9-4ac7-9591-19737f908a38.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-a357797e-a3d9-4ac7-9591-19737f908a38 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a357797e-a3d9-4ac7-9591-19737f908a38-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a357797e-a3d9-4ac7-9591-19737f908a38 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a357797e-a3d9-4ac7-9591-19737f908a38 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-a357797e-a3d9-4ac7-9591-19737f908a38 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a357797e-a3d9-4ac7-9591-19737f908a38 img.shogun-image {
  width: 100%;
  
  
  

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




.s-a357797e-a3d9-4ac7-9591-19737f908a38 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a357797e-a3d9-4ac7-9591-19737f908a38.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a357797e-a3d9-4ac7-9591-19737f908a38.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a357797e-a3d9-4ac7-9591-19737f908a38.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-a357797e-a3d9-4ac7-9591-19737f908a38 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a357797e-a3d9-4ac7-9591-19737f908a38-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a357797e-a3d9-4ac7-9591-19737f908a38 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a357797e-a3d9-4ac7-9591-19737f908a38 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-a357797e-a3d9-4ac7-9591-19737f908a38 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a357797e-a3d9-4ac7-9591-19737f908a38 img.shogun-image {
  width: 100%;
  
  
  

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




.s-a357797e-a3d9-4ac7-9591-19737f908a38 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a357797e-a3d9-4ac7-9591-19737f908a38.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a357797e-a3d9-4ac7-9591-19737f908a38.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a357797e-a3d9-4ac7-9591-19737f908a38.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-a357797e-a3d9-4ac7-9591-19737f908a38 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a357797e-a3d9-4ac7-9591-19737f908a38-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a357797e-a3d9-4ac7-9591-19737f908a38 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a357797e-a3d9-4ac7-9591-19737f908a38 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-a357797e-a3d9-4ac7-9591-19737f908a38 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a357797e-a3d9-4ac7-9591-19737f908a38 img.shogun-image {
  width: 100%;
  
  
  

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




.s-a357797e-a3d9-4ac7-9591-19737f908a38 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a357797e-a3d9-4ac7-9591-19737f908a38.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a357797e-a3d9-4ac7-9591-19737f908a38.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a357797e-a3d9-4ac7-9591-19737f908a38.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-4353d8fe-4d64-4013-8263-3d2937460947 {
  margin-left: auto;
margin-right: auto;
}

#s-4353d8fe-4d64-4013-8263-3d2937460947 .shg-proportional-font-size,
#s-4353d8fe-4d64-4013-8263-3d2937460947 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-60b18887-1cb2-4ea3-8046-80ecaa189fe0 {
  margin-left: auto;
margin-right: auto;
}

#s-60b18887-1cb2-4ea3-8046-80ecaa189fe0 .shg-proportional-font-size,
#s-60b18887-1cb2-4ea3-8046-80ecaa189fe0 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-57437e96-ca68-4bea-a78e-fcaa71585a6b {
  margin-left: 0%;
margin-right: 0%;
padding-top: 50px;
padding-left: 6%;
padding-bottom: 50px;
padding-right: 6%;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(180, 180, 180, 1);
border-style: none;
border-radius: 15px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-57437e96-ca68-4bea-a78e-fcaa71585a6b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-57437e96-ca68-4bea-a78e-fcaa71585a6b.shg-box.shg-c {
  justify-content: center;
}

#s-0775b540-08fd-489f-8502-aebee2ba1142 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-0775b540-08fd-489f-8502-aebee2ba1142 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0775b540-08fd-489f-8502-aebee2ba1142-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-0775b540-08fd-489f-8502-aebee2ba1142 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0775b540-08fd-489f-8502-aebee2ba1142 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-0775b540-08fd-489f-8502-aebee2ba1142 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-0775b540-08fd-489f-8502-aebee2ba1142 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-0775b540-08fd-489f-8502-aebee2ba1142 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-0775b540-08fd-489f-8502-aebee2ba1142.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0775b540-08fd-489f-8502-aebee2ba1142.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0775b540-08fd-489f-8502-aebee2ba1142.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-0775b540-08fd-489f-8502-aebee2ba1142 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0775b540-08fd-489f-8502-aebee2ba1142-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-0775b540-08fd-489f-8502-aebee2ba1142 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0775b540-08fd-489f-8502-aebee2ba1142 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-0775b540-08fd-489f-8502-aebee2ba1142 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-0775b540-08fd-489f-8502-aebee2ba1142 img.shogun-image {
  width: 100%;
  
  
  

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




.s-0775b540-08fd-489f-8502-aebee2ba1142 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-0775b540-08fd-489f-8502-aebee2ba1142.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0775b540-08fd-489f-8502-aebee2ba1142.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0775b540-08fd-489f-8502-aebee2ba1142.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-0775b540-08fd-489f-8502-aebee2ba1142 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0775b540-08fd-489f-8502-aebee2ba1142-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-0775b540-08fd-489f-8502-aebee2ba1142 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0775b540-08fd-489f-8502-aebee2ba1142 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-0775b540-08fd-489f-8502-aebee2ba1142 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-0775b540-08fd-489f-8502-aebee2ba1142 img.shogun-image {
  width: 100%;
  
  
  

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




.s-0775b540-08fd-489f-8502-aebee2ba1142 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-0775b540-08fd-489f-8502-aebee2ba1142.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0775b540-08fd-489f-8502-aebee2ba1142.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0775b540-08fd-489f-8502-aebee2ba1142.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-0775b540-08fd-489f-8502-aebee2ba1142 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0775b540-08fd-489f-8502-aebee2ba1142-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-0775b540-08fd-489f-8502-aebee2ba1142 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0775b540-08fd-489f-8502-aebee2ba1142 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-0775b540-08fd-489f-8502-aebee2ba1142 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-0775b540-08fd-489f-8502-aebee2ba1142 img.shogun-image {
  width: 100%;
  
  
  

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




.s-0775b540-08fd-489f-8502-aebee2ba1142 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-0775b540-08fd-489f-8502-aebee2ba1142.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0775b540-08fd-489f-8502-aebee2ba1142.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0775b540-08fd-489f-8502-aebee2ba1142.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-0775b540-08fd-489f-8502-aebee2ba1142 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0775b540-08fd-489f-8502-aebee2ba1142-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-0775b540-08fd-489f-8502-aebee2ba1142 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0775b540-08fd-489f-8502-aebee2ba1142 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-0775b540-08fd-489f-8502-aebee2ba1142 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-0775b540-08fd-489f-8502-aebee2ba1142 img.shogun-image {
  width: 100%;
  
  
  

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




.s-0775b540-08fd-489f-8502-aebee2ba1142 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-0775b540-08fd-489f-8502-aebee2ba1142.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0775b540-08fd-489f-8502-aebee2ba1142.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0775b540-08fd-489f-8502-aebee2ba1142.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-76803d86-990f-4ea3-99d9-bf0d0316610b {
  margin-left: auto;
margin-right: auto;
}

#s-76803d86-990f-4ea3-99d9-bf0d0316610b .shg-proportional-font-size,
#s-76803d86-990f-4ea3-99d9-bf0d0316610b .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-c1b5d178-a87d-4b42-b4e1-3c655c96771d {
  margin-left: auto;
margin-right: auto;
}

#s-c1b5d178-a87d-4b42-b4e1-3c655c96771d .shg-proportional-font-size,
#s-c1b5d178-a87d-4b42-b4e1-3c655c96771d .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-329c6a19-da4c-448e-b0ed-f1a0157d08a9 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 50px;
padding-left: 6%;
padding-bottom: 50px;
padding-right: 6%;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(180, 180, 180, 1);
border-style: none;
border-radius: 15px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-329c6a19-da4c-448e-b0ed-f1a0157d08a9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-329c6a19-da4c-448e-b0ed-f1a0157d08a9.shg-box.shg-c {
  justify-content: center;
}

#s-8fae05cf-2d42-4549-8451-3724033acbd8 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-8fae05cf-2d42-4549-8451-3724033acbd8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8fae05cf-2d42-4549-8451-3724033acbd8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-8fae05cf-2d42-4549-8451-3724033acbd8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8fae05cf-2d42-4549-8451-3724033acbd8 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-8fae05cf-2d42-4549-8451-3724033acbd8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8fae05cf-2d42-4549-8451-3724033acbd8 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-8fae05cf-2d42-4549-8451-3724033acbd8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8fae05cf-2d42-4549-8451-3724033acbd8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fae05cf-2d42-4549-8451-3724033acbd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fae05cf-2d42-4549-8451-3724033acbd8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-8fae05cf-2d42-4549-8451-3724033acbd8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8fae05cf-2d42-4549-8451-3724033acbd8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-8fae05cf-2d42-4549-8451-3724033acbd8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8fae05cf-2d42-4549-8451-3724033acbd8 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-8fae05cf-2d42-4549-8451-3724033acbd8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8fae05cf-2d42-4549-8451-3724033acbd8 img.shogun-image {
  width: 100%;
  
  
  

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




.s-8fae05cf-2d42-4549-8451-3724033acbd8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8fae05cf-2d42-4549-8451-3724033acbd8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fae05cf-2d42-4549-8451-3724033acbd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fae05cf-2d42-4549-8451-3724033acbd8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-8fae05cf-2d42-4549-8451-3724033acbd8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8fae05cf-2d42-4549-8451-3724033acbd8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-8fae05cf-2d42-4549-8451-3724033acbd8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8fae05cf-2d42-4549-8451-3724033acbd8 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-8fae05cf-2d42-4549-8451-3724033acbd8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8fae05cf-2d42-4549-8451-3724033acbd8 img.shogun-image {
  width: 100%;
  
  
  

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




.s-8fae05cf-2d42-4549-8451-3724033acbd8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8fae05cf-2d42-4549-8451-3724033acbd8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fae05cf-2d42-4549-8451-3724033acbd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fae05cf-2d42-4549-8451-3724033acbd8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-8fae05cf-2d42-4549-8451-3724033acbd8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8fae05cf-2d42-4549-8451-3724033acbd8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-8fae05cf-2d42-4549-8451-3724033acbd8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8fae05cf-2d42-4549-8451-3724033acbd8 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-8fae05cf-2d42-4549-8451-3724033acbd8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8fae05cf-2d42-4549-8451-3724033acbd8 img.shogun-image {
  width: 100%;
  
  
  

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




.s-8fae05cf-2d42-4549-8451-3724033acbd8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8fae05cf-2d42-4549-8451-3724033acbd8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fae05cf-2d42-4549-8451-3724033acbd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fae05cf-2d42-4549-8451-3724033acbd8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-8fae05cf-2d42-4549-8451-3724033acbd8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8fae05cf-2d42-4549-8451-3724033acbd8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-8fae05cf-2d42-4549-8451-3724033acbd8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8fae05cf-2d42-4549-8451-3724033acbd8 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-8fae05cf-2d42-4549-8451-3724033acbd8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8fae05cf-2d42-4549-8451-3724033acbd8 img.shogun-image {
  width: 100%;
  
  
  

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




.s-8fae05cf-2d42-4549-8451-3724033acbd8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8fae05cf-2d42-4549-8451-3724033acbd8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fae05cf-2d42-4549-8451-3724033acbd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fae05cf-2d42-4549-8451-3724033acbd8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-762103b6-a97d-404d-8df1-8dd9660717d9 {
  margin-left: auto;
margin-right: auto;
}

#s-762103b6-a97d-404d-8df1-8dd9660717d9 .shg-proportional-font-size,
#s-762103b6-a97d-404d-8df1-8dd9660717d9 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-bd10b48b-fb5b-422a-92ca-19658d26121c {
  margin-left: auto;
margin-right: auto;
}

#s-bd10b48b-fb5b-422a-92ca-19658d26121c .shg-proportional-font-size,
#s-bd10b48b-fb5b-422a-92ca-19658d26121c .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-7a0cb5d9-1d4c-4111-aaeb-ebd18b87c77f {
  margin-left: 0%;
margin-right: 0%;
padding-top: 50px;
padding-left: 6%;
padding-bottom: 50px;
padding-right: 6%;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(180, 180, 180, 1);
border-style: none;
border-radius: 15px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-7a0cb5d9-1d4c-4111-aaeb-ebd18b87c77f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7a0cb5d9-1d4c-4111-aaeb-ebd18b87c77f.shg-box.shg-c {
  justify-content: center;
}

#s-23346d55-fb23-423e-ad73-b62c26b6f9c4 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-23346d55-fb23-423e-ad73-b62c26b6f9c4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-23346d55-fb23-423e-ad73-b62c26b6f9c4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-23346d55-fb23-423e-ad73-b62c26b6f9c4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-23346d55-fb23-423e-ad73-b62c26b6f9c4 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-23346d55-fb23-423e-ad73-b62c26b6f9c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-23346d55-fb23-423e-ad73-b62c26b6f9c4 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-23346d55-fb23-423e-ad73-b62c26b6f9c4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-23346d55-fb23-423e-ad73-b62c26b6f9c4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23346d55-fb23-423e-ad73-b62c26b6f9c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23346d55-fb23-423e-ad73-b62c26b6f9c4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-23346d55-fb23-423e-ad73-b62c26b6f9c4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-23346d55-fb23-423e-ad73-b62c26b6f9c4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-23346d55-fb23-423e-ad73-b62c26b6f9c4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-23346d55-fb23-423e-ad73-b62c26b6f9c4 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-23346d55-fb23-423e-ad73-b62c26b6f9c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-23346d55-fb23-423e-ad73-b62c26b6f9c4 img.shogun-image {
  width: 100%;
  
  
  

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




.s-23346d55-fb23-423e-ad73-b62c26b6f9c4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-23346d55-fb23-423e-ad73-b62c26b6f9c4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23346d55-fb23-423e-ad73-b62c26b6f9c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23346d55-fb23-423e-ad73-b62c26b6f9c4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-23346d55-fb23-423e-ad73-b62c26b6f9c4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-23346d55-fb23-423e-ad73-b62c26b6f9c4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-23346d55-fb23-423e-ad73-b62c26b6f9c4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-23346d55-fb23-423e-ad73-b62c26b6f9c4 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-23346d55-fb23-423e-ad73-b62c26b6f9c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-23346d55-fb23-423e-ad73-b62c26b6f9c4 img.shogun-image {
  width: 100%;
  
  
  

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




.s-23346d55-fb23-423e-ad73-b62c26b6f9c4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-23346d55-fb23-423e-ad73-b62c26b6f9c4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23346d55-fb23-423e-ad73-b62c26b6f9c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23346d55-fb23-423e-ad73-b62c26b6f9c4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-23346d55-fb23-423e-ad73-b62c26b6f9c4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-23346d55-fb23-423e-ad73-b62c26b6f9c4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-23346d55-fb23-423e-ad73-b62c26b6f9c4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-23346d55-fb23-423e-ad73-b62c26b6f9c4 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-23346d55-fb23-423e-ad73-b62c26b6f9c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-23346d55-fb23-423e-ad73-b62c26b6f9c4 img.shogun-image {
  width: 100%;
  
  
  

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




.s-23346d55-fb23-423e-ad73-b62c26b6f9c4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-23346d55-fb23-423e-ad73-b62c26b6f9c4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23346d55-fb23-423e-ad73-b62c26b6f9c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23346d55-fb23-423e-ad73-b62c26b6f9c4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-23346d55-fb23-423e-ad73-b62c26b6f9c4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-23346d55-fb23-423e-ad73-b62c26b6f9c4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-23346d55-fb23-423e-ad73-b62c26b6f9c4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-23346d55-fb23-423e-ad73-b62c26b6f9c4 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-23346d55-fb23-423e-ad73-b62c26b6f9c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-23346d55-fb23-423e-ad73-b62c26b6f9c4 img.shogun-image {
  width: 100%;
  
  
  

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




.s-23346d55-fb23-423e-ad73-b62c26b6f9c4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-23346d55-fb23-423e-ad73-b62c26b6f9c4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23346d55-fb23-423e-ad73-b62c26b6f9c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23346d55-fb23-423e-ad73-b62c26b6f9c4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-26b71c29-02f5-4182-92e7-8b654b0e14ad {
  margin-left: auto;
margin-right: auto;
}

#s-26b71c29-02f5-4182-92e7-8b654b0e14ad .shg-proportional-font-size,
#s-26b71c29-02f5-4182-92e7-8b654b0e14ad .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-904fb656-49fe-4bd5-8e89-a973cc28cd84 {
  margin-left: auto;
margin-right: auto;
}

#s-904fb656-49fe-4bd5-8e89-a973cc28cd84 .shg-proportional-font-size,
#s-904fb656-49fe-4bd5-8e89-a973cc28cd84 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-28e2d47a-8105-492f-8a74-b0a8c25b68d2 {
  background-repeat: no-repeat;
margin-left: auto;
margin-right: auto;
min-height: 50px;
}

#s-28e2d47a-8105-492f-8a74-b0a8c25b68d2 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNzIzMGZhYWItMWY3NS00ZmNjLTlhNWYtMzZmYTJkOWQ0OWNhIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojMWI0Mzc2O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojMTczODU5O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM3MjMwZmFhYi0xZjc1LTRmY2MtOWE1Zi0zNmZhMmQ5ZDQ5Y2EpIi8+PC9zdmc+);
}








#s-28e2d47a-8105-492f-8a74-b0a8c25b68d2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-28e2d47a-8105-492f-8a74-b0a8c25b68d2.shg-box.shg-c {
  justify-content: center;
}

#s-40fb85d3-5184-4e46-9ab3-8d2877a9f35f {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-6c973790-68be-4145-89a4-fc5eb0f90961 {
  margin-top: 50px;
margin-left: 15%;
margin-bottom: 50px;
margin-right: 15%;
}
@media (min-width: 768px) and (max-width: 991px){#s-6c973790-68be-4145-89a4-fc5eb0f90961 {
  margin-left: 5%;
margin-right: 5%;
}
}@media (max-width: 767px){#s-6c973790-68be-4145-89a4-fc5eb0f90961 {
  margin-left: 3%;
margin-right: 3%;
}
}
@media (min-width: 0px) {
[id="s-6c973790-68be-4145-89a4-fc5eb0f90961"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6c973790-68be-4145-89a4-fc5eb0f90961"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-6c973790-68be-4145-89a4-fc5eb0f90961"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6c973790-68be-4145-89a4-fc5eb0f90961"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-6c973790-68be-4145-89a4-fc5eb0f90961"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6c973790-68be-4145-89a4-fc5eb0f90961"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-6c973790-68be-4145-89a4-fc5eb0f90961"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

#s-4bebdec0-e517-440b-84ca-152886227b63 {
  margin-left: auto;
margin-right: auto;
padding-left: 1%;
}

#s-4bebdec0-e517-440b-84ca-152886227b63 .shg-proportional-font-size,
#s-4bebdec0-e517-440b-84ca-152886227b63 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-cc97f817-eb4c-44f2-a278-297376edec1d {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-cc97f817-eb4c-44f2-a278-297376edec1d .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-cc97f817-eb4c-44f2-a278-297376edec1d .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
#s-306a9917-8588-4f7f-ae50-0478c2d742b8 {
  margin-left: 0%;
margin-right: 0%;
}

#s-306a9917-8588-4f7f-ae50-0478c2d742b8 .shg-proportional-font-size,
#s-306a9917-8588-4f7f-ae50-0478c2d742b8 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-e5d365f5-2f68-4b43-a55d-b15b54dffc0e {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-e5d365f5-2f68-4b43-a55d-b15b54dffc0e {
  display: none;
}
#s-e5d365f5-2f68-4b43-a55d-b15b54dffc0e, #wrap-s-e5d365f5-2f68-4b43-a55d-b15b54dffc0e, #wrap-content-s-e5d365f5-2f68-4b43-a55d-b15b54dffc0e { display: none !important; }}
@media (min-width: 0px) {
[id="s-e5d365f5-2f68-4b43-a55d-b15b54dffc0e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-e5d365f5-2f68-4b43-a55d-b15b54dffc0e"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-e5d365f5-2f68-4b43-a55d-b15b54dffc0e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-e5d365f5-2f68-4b43-a55d-b15b54dffc0e"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-e5d365f5-2f68-4b43-a55d-b15b54dffc0e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-e5d365f5-2f68-4b43-a55d-b15b54dffc0e"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-e5d365f5-2f68-4b43-a55d-b15b54dffc0e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 22.5px);
}

}

#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
max-width: 145px;
text-align: center;
}

#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 .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: 5px;
  /* Add background color handling */
  background: rgba(46, 67, 89, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 img.shogun-image {
  width: 100%;
  
  
  max-width: 145px;

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




.s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 img.shogun-image {
  width: 100%;
  
  
  

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




.s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 img.shogun-image {
  width: 100%;
  
  
  

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




.s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 img.shogun-image {
  width: 100%;
  
  
  

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




.s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 img.shogun-image {
  width: 100%;
  
  
  

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




.s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f69cdf3e-a86d-4015-b5b5-8c40b91a89d5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-8db896c8-3e19-4fc9-9759-85ce6633d01b {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
max-width: 145px;
text-align: center;
}
@media (min-width: 1200px){#s-8db896c8-3e19-4fc9-9759-85ce6633d01b {
  display: none;
}
#s-8db896c8-3e19-4fc9-9759-85ce6633d01b, #wrap-s-8db896c8-3e19-4fc9-9759-85ce6633d01b, #wrap-content-s-8db896c8-3e19-4fc9-9759-85ce6633d01b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8db896c8-3e19-4fc9-9759-85ce6633d01b {
  display: none;
}
#s-8db896c8-3e19-4fc9-9759-85ce6633d01b, #wrap-s-8db896c8-3e19-4fc9-9759-85ce6633d01b, #wrap-content-s-8db896c8-3e19-4fc9-9759-85ce6633d01b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8db896c8-3e19-4fc9-9759-85ce6633d01b {
  display: none;
}
#s-8db896c8-3e19-4fc9-9759-85ce6633d01b, #wrap-s-8db896c8-3e19-4fc9-9759-85ce6633d01b, #wrap-content-s-8db896c8-3e19-4fc9-9759-85ce6633d01b { display: none !important; }}
#s-8db896c8-3e19-4fc9-9759-85ce6633d01b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8db896c8-3e19-4fc9-9759-85ce6633d01b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-8db896c8-3e19-4fc9-9759-85ce6633d01b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-8db896c8-3e19-4fc9-9759-85ce6633d01b .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: 5px;
  /* Add background color handling */
  background: rgba(46, 67, 89, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-8db896c8-3e19-4fc9-9759-85ce6633d01b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8db896c8-3e19-4fc9-9759-85ce6633d01b img.shogun-image {
  width: 100%;
  
  
  max-width: 145px;

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




.s-8db896c8-3e19-4fc9-9759-85ce6633d01b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8db896c8-3e19-4fc9-9759-85ce6633d01b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8db896c8-3e19-4fc9-9759-85ce6633d01b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8db896c8-3e19-4fc9-9759-85ce6633d01b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-8db896c8-3e19-4fc9-9759-85ce6633d01b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8db896c8-3e19-4fc9-9759-85ce6633d01b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-8db896c8-3e19-4fc9-9759-85ce6633d01b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8db896c8-3e19-4fc9-9759-85ce6633d01b .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-8db896c8-3e19-4fc9-9759-85ce6633d01b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8db896c8-3e19-4fc9-9759-85ce6633d01b img.shogun-image {
  width: 100%;
  
  
  

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




.s-8db896c8-3e19-4fc9-9759-85ce6633d01b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8db896c8-3e19-4fc9-9759-85ce6633d01b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8db896c8-3e19-4fc9-9759-85ce6633d01b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8db896c8-3e19-4fc9-9759-85ce6633d01b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-8db896c8-3e19-4fc9-9759-85ce6633d01b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8db896c8-3e19-4fc9-9759-85ce6633d01b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-8db896c8-3e19-4fc9-9759-85ce6633d01b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8db896c8-3e19-4fc9-9759-85ce6633d01b .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-8db896c8-3e19-4fc9-9759-85ce6633d01b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8db896c8-3e19-4fc9-9759-85ce6633d01b img.shogun-image {
  width: 100%;
  
  
  

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




.s-8db896c8-3e19-4fc9-9759-85ce6633d01b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8db896c8-3e19-4fc9-9759-85ce6633d01b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8db896c8-3e19-4fc9-9759-85ce6633d01b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8db896c8-3e19-4fc9-9759-85ce6633d01b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-8db896c8-3e19-4fc9-9759-85ce6633d01b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8db896c8-3e19-4fc9-9759-85ce6633d01b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-8db896c8-3e19-4fc9-9759-85ce6633d01b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8db896c8-3e19-4fc9-9759-85ce6633d01b .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-8db896c8-3e19-4fc9-9759-85ce6633d01b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8db896c8-3e19-4fc9-9759-85ce6633d01b img.shogun-image {
  width: 100%;
  
  
  

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




.s-8db896c8-3e19-4fc9-9759-85ce6633d01b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8db896c8-3e19-4fc9-9759-85ce6633d01b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8db896c8-3e19-4fc9-9759-85ce6633d01b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8db896c8-3e19-4fc9-9759-85ce6633d01b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-8db896c8-3e19-4fc9-9759-85ce6633d01b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8db896c8-3e19-4fc9-9759-85ce6633d01b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-8db896c8-3e19-4fc9-9759-85ce6633d01b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8db896c8-3e19-4fc9-9759-85ce6633d01b .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-8db896c8-3e19-4fc9-9759-85ce6633d01b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-8db896c8-3e19-4fc9-9759-85ce6633d01b img.shogun-image {
  width: 100%;
  
  
  

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




.s-8db896c8-3e19-4fc9-9759-85ce6633d01b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8db896c8-3e19-4fc9-9759-85ce6633d01b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8db896c8-3e19-4fc9-9759-85ce6633d01b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8db896c8-3e19-4fc9-9759-85ce6633d01b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-1c4d5650-d62d-48a9-ae4f-232d75e4315e {
  margin-left: auto;
margin-right: auto;
}

#s-1c4d5650-d62d-48a9-ae4f-232d75e4315e .shg-proportional-font-size,
#s-1c4d5650-d62d-48a9-ae4f-232d75e4315e .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-a26f1ed1-37f3-4e67-a940-ff808be1028c {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
max-width: 144px;
text-align: center;
}

#s-a26f1ed1-37f3-4e67-a940-ff808be1028c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a26f1ed1-37f3-4e67-a940-ff808be1028c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a26f1ed1-37f3-4e67-a940-ff808be1028c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-a26f1ed1-37f3-4e67-a940-ff808be1028c .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: 5px;
  /* Add background color handling */
  background: rgba(46, 67, 89, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-a26f1ed1-37f3-4e67-a940-ff808be1028c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a26f1ed1-37f3-4e67-a940-ff808be1028c img.shogun-image {
  width: 100%;
  
  
  max-width: 144px;

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




.s-a26f1ed1-37f3-4e67-a940-ff808be1028c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a26f1ed1-37f3-4e67-a940-ff808be1028c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a26f1ed1-37f3-4e67-a940-ff808be1028c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a26f1ed1-37f3-4e67-a940-ff808be1028c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-a26f1ed1-37f3-4e67-a940-ff808be1028c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a26f1ed1-37f3-4e67-a940-ff808be1028c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a26f1ed1-37f3-4e67-a940-ff808be1028c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a26f1ed1-37f3-4e67-a940-ff808be1028c .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-a26f1ed1-37f3-4e67-a940-ff808be1028c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a26f1ed1-37f3-4e67-a940-ff808be1028c img.shogun-image {
  width: 100%;
  
  
  

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




.s-a26f1ed1-37f3-4e67-a940-ff808be1028c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a26f1ed1-37f3-4e67-a940-ff808be1028c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a26f1ed1-37f3-4e67-a940-ff808be1028c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a26f1ed1-37f3-4e67-a940-ff808be1028c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-a26f1ed1-37f3-4e67-a940-ff808be1028c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a26f1ed1-37f3-4e67-a940-ff808be1028c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a26f1ed1-37f3-4e67-a940-ff808be1028c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a26f1ed1-37f3-4e67-a940-ff808be1028c .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-a26f1ed1-37f3-4e67-a940-ff808be1028c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a26f1ed1-37f3-4e67-a940-ff808be1028c img.shogun-image {
  width: 100%;
  
  
  

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




.s-a26f1ed1-37f3-4e67-a940-ff808be1028c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a26f1ed1-37f3-4e67-a940-ff808be1028c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a26f1ed1-37f3-4e67-a940-ff808be1028c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a26f1ed1-37f3-4e67-a940-ff808be1028c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-a26f1ed1-37f3-4e67-a940-ff808be1028c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a26f1ed1-37f3-4e67-a940-ff808be1028c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a26f1ed1-37f3-4e67-a940-ff808be1028c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a26f1ed1-37f3-4e67-a940-ff808be1028c .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-a26f1ed1-37f3-4e67-a940-ff808be1028c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a26f1ed1-37f3-4e67-a940-ff808be1028c img.shogun-image {
  width: 100%;
  
  
  

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




.s-a26f1ed1-37f3-4e67-a940-ff808be1028c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a26f1ed1-37f3-4e67-a940-ff808be1028c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a26f1ed1-37f3-4e67-a940-ff808be1028c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a26f1ed1-37f3-4e67-a940-ff808be1028c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-a26f1ed1-37f3-4e67-a940-ff808be1028c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a26f1ed1-37f3-4e67-a940-ff808be1028c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a26f1ed1-37f3-4e67-a940-ff808be1028c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a26f1ed1-37f3-4e67-a940-ff808be1028c .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-a26f1ed1-37f3-4e67-a940-ff808be1028c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a26f1ed1-37f3-4e67-a940-ff808be1028c img.shogun-image {
  width: 100%;
  
  
  

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




.s-a26f1ed1-37f3-4e67-a940-ff808be1028c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a26f1ed1-37f3-4e67-a940-ff808be1028c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a26f1ed1-37f3-4e67-a940-ff808be1028c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a26f1ed1-37f3-4e67-a940-ff808be1028c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-1341f819-0c0e-4530-8d51-80032d240b0e {
  margin-left: auto;
margin-right: auto;
}

#s-1341f819-0c0e-4530-8d51-80032d240b0e .shg-proportional-font-size,
#s-1341f819-0c0e-4530-8d51-80032d240b0e .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-7c4c7aee-f912-4ae4-81b0-acd1cdc9ca8b {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-7c4c7aee-f912-4ae4-81b0-acd1cdc9ca8b {
  display: none;
}
#s-7c4c7aee-f912-4ae4-81b0-acd1cdc9ca8b, #wrap-s-7c4c7aee-f912-4ae4-81b0-acd1cdc9ca8b, #wrap-content-s-7c4c7aee-f912-4ae4-81b0-acd1cdc9ca8b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7c4c7aee-f912-4ae4-81b0-acd1cdc9ca8b {
  display: none;
}
#s-7c4c7aee-f912-4ae4-81b0-acd1cdc9ca8b, #wrap-s-7c4c7aee-f912-4ae4-81b0-acd1cdc9ca8b, #wrap-content-s-7c4c7aee-f912-4ae4-81b0-acd1cdc9ca8b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7c4c7aee-f912-4ae4-81b0-acd1cdc9ca8b {
  display: none;
}
#s-7c4c7aee-f912-4ae4-81b0-acd1cdc9ca8b, #wrap-s-7c4c7aee-f912-4ae4-81b0-acd1cdc9ca8b, #wrap-content-s-7c4c7aee-f912-4ae4-81b0-acd1cdc9ca8b { display: none !important; }}
@media (min-width: 0px) {
[id="s-7c4c7aee-f912-4ae4-81b0-acd1cdc9ca8b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7c4c7aee-f912-4ae4-81b0-acd1cdc9ca8b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7c4c7aee-f912-4ae4-81b0-acd1cdc9ca8b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7c4c7aee-f912-4ae4-81b0-acd1cdc9ca8b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
max-width: 50px;
text-align: center;
}

#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b .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: 5px;
  /* Add background color handling */
  background: rgba(46, 67, 89, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b 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-bcab5d53-2659-4ff1-ab41-d776d4e9a20b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b img.shogun-image {
  width: 100%;
  
  
  

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




.s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b img.shogun-image {
  width: 100%;
  
  
  

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




.s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b img.shogun-image {
  width: 100%;
  
  
  

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




.s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b img.shogun-image {
  width: 100%;
  
  
  

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




.s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bcab5d53-2659-4ff1-ab41-d776d4e9a20b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-a270e665-4a50-43b7-b7c1-4ea5358f0000 {
  margin-left: auto;
margin-right: auto;
}

#s-a270e665-4a50-43b7-b7c1-4ea5358f0000 .shg-proportional-font-size,
#s-a270e665-4a50-43b7-b7c1-4ea5358f0000 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-9ae2ea47-0551-4c12-aa71-7d8c9b75eab1 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-9ae2ea47-0551-4c12-aa71-7d8c9b75eab1 {
  display: none;
}
#s-9ae2ea47-0551-4c12-aa71-7d8c9b75eab1, #wrap-s-9ae2ea47-0551-4c12-aa71-7d8c9b75eab1, #wrap-content-s-9ae2ea47-0551-4c12-aa71-7d8c9b75eab1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9ae2ea47-0551-4c12-aa71-7d8c9b75eab1 {
  display: none;
}
#s-9ae2ea47-0551-4c12-aa71-7d8c9b75eab1, #wrap-s-9ae2ea47-0551-4c12-aa71-7d8c9b75eab1, #wrap-content-s-9ae2ea47-0551-4c12-aa71-7d8c9b75eab1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9ae2ea47-0551-4c12-aa71-7d8c9b75eab1 {
  display: none;
}
#s-9ae2ea47-0551-4c12-aa71-7d8c9b75eab1, #wrap-s-9ae2ea47-0551-4c12-aa71-7d8c9b75eab1, #wrap-content-s-9ae2ea47-0551-4c12-aa71-7d8c9b75eab1 { display: none !important; }}
@media (min-width: 0px) {
[id="s-9ae2ea47-0551-4c12-aa71-7d8c9b75eab1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9ae2ea47-0551-4c12-aa71-7d8c9b75eab1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9ae2ea47-0551-4c12-aa71-7d8c9b75eab1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9ae2ea47-0551-4c12-aa71-7d8c9b75eab1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
max-width: 50px;
text-align: center;
}

#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-26df78f0-02bc-4de9-935a-1a4b36e48a4d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d .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: 5px;
  /* Add background color handling */
  background: rgba(46, 67, 89, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-26df78f0-02bc-4de9-935a-1a4b36e48a4d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d 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-26df78f0-02bc-4de9-935a-1a4b36e48a4d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-26df78f0-02bc-4de9-935a-1a4b36e48a4d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26df78f0-02bc-4de9-935a-1a4b36e48a4d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-26df78f0-02bc-4de9-935a-1a4b36e48a4d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-26df78f0-02bc-4de9-935a-1a4b36e48a4d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d img.shogun-image {
  width: 100%;
  
  
  

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




.s-26df78f0-02bc-4de9-935a-1a4b36e48a4d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-26df78f0-02bc-4de9-935a-1a4b36e48a4d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26df78f0-02bc-4de9-935a-1a4b36e48a4d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-26df78f0-02bc-4de9-935a-1a4b36e48a4d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-26df78f0-02bc-4de9-935a-1a4b36e48a4d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d img.shogun-image {
  width: 100%;
  
  
  

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




.s-26df78f0-02bc-4de9-935a-1a4b36e48a4d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-26df78f0-02bc-4de9-935a-1a4b36e48a4d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26df78f0-02bc-4de9-935a-1a4b36e48a4d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-26df78f0-02bc-4de9-935a-1a4b36e48a4d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-26df78f0-02bc-4de9-935a-1a4b36e48a4d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d img.shogun-image {
  width: 100%;
  
  
  

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




.s-26df78f0-02bc-4de9-935a-1a4b36e48a4d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-26df78f0-02bc-4de9-935a-1a4b36e48a4d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26df78f0-02bc-4de9-935a-1a4b36e48a4d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-26df78f0-02bc-4de9-935a-1a4b36e48a4d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-26df78f0-02bc-4de9-935a-1a4b36e48a4d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d img.shogun-image {
  width: 100%;
  
  
  

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




.s-26df78f0-02bc-4de9-935a-1a4b36e48a4d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-26df78f0-02bc-4de9-935a-1a4b36e48a4d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26df78f0-02bc-4de9-935a-1a4b36e48a4d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26df78f0-02bc-4de9-935a-1a4b36e48a4d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-8c506fed-3220-445e-a933-9df6a6b682cb {
  margin-left: auto;
margin-right: auto;
}

#s-8c506fed-3220-445e-a933-9df6a6b682cb .shg-proportional-font-size,
#s-8c506fed-3220-445e-a933-9df6a6b682cb .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-43629335-d46b-4433-9fc3-2996f8f04955 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-43629335-d46b-4433-9fc3-2996f8f04955 {
  display: none;
}
#s-43629335-d46b-4433-9fc3-2996f8f04955, #wrap-s-43629335-d46b-4433-9fc3-2996f8f04955, #wrap-content-s-43629335-d46b-4433-9fc3-2996f8f04955 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-43629335-d46b-4433-9fc3-2996f8f04955 {
  display: none;
}
#s-43629335-d46b-4433-9fc3-2996f8f04955, #wrap-s-43629335-d46b-4433-9fc3-2996f8f04955, #wrap-content-s-43629335-d46b-4433-9fc3-2996f8f04955 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-43629335-d46b-4433-9fc3-2996f8f04955 {
  display: none;
}
#s-43629335-d46b-4433-9fc3-2996f8f04955, #wrap-s-43629335-d46b-4433-9fc3-2996f8f04955, #wrap-content-s-43629335-d46b-4433-9fc3-2996f8f04955 { display: none !important; }}
@media (min-width: 0px) {
[id="s-43629335-d46b-4433-9fc3-2996f8f04955"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-43629335-d46b-4433-9fc3-2996f8f04955"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-43629335-d46b-4433-9fc3-2996f8f04955"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-43629335-d46b-4433-9fc3-2996f8f04955"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
max-width: 145px;
text-align: center;
}
@media (min-width: 1200px){#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 {
  display: none;
}
#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8, #wrap-s-5a5370b0-c43a-491b-bb56-90424b1ff9c8, #wrap-content-s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 {
  display: none;
}
#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8, #wrap-s-5a5370b0-c43a-491b-bb56-90424b1ff9c8, #wrap-content-s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 {
  display: none;
}
#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8, #wrap-s-5a5370b0-c43a-491b-bb56-90424b1ff9c8, #wrap-content-s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 { display: none !important; }}@media (max-width: 767px){#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 {
  max-width: 50px;
}
}
#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 .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: 5px;
  /* Add background color handling */
  background: rgba(46, 67, 89, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 img.shogun-image {
  width: 100%;
  
  
  max-width: 145px;

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




.s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5a5370b0-c43a-491b-bb56-90424b1ff9c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a5370b0-c43a-491b-bb56-90424b1ff9c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 img.shogun-image {
  width: 100%;
  
  
  

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




.s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5a5370b0-c43a-491b-bb56-90424b1ff9c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a5370b0-c43a-491b-bb56-90424b1ff9c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 img.shogun-image {
  width: 100%;
  
  
  

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




.s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5a5370b0-c43a-491b-bb56-90424b1ff9c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a5370b0-c43a-491b-bb56-90424b1ff9c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 img.shogun-image {
  width: 100%;
  
  
  

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




.s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5a5370b0-c43a-491b-bb56-90424b1ff9c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a5370b0-c43a-491b-bb56-90424b1ff9c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8 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-5a5370b0-c43a-491b-bb56-90424b1ff9c8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5a5370b0-c43a-491b-bb56-90424b1ff9c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a5370b0-c43a-491b-bb56-90424b1ff9c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a5370b0-c43a-491b-bb56-90424b1ff9c8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-32964dbf-6d58-474e-831b-4c3c222f70a2 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-32964dbf-6d58-474e-831b-4c3c222f70a2 {
  display: none;
}
#s-32964dbf-6d58-474e-831b-4c3c222f70a2, #wrap-s-32964dbf-6d58-474e-831b-4c3c222f70a2, #wrap-content-s-32964dbf-6d58-474e-831b-4c3c222f70a2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-32964dbf-6d58-474e-831b-4c3c222f70a2 {
  display: none;
}
#s-32964dbf-6d58-474e-831b-4c3c222f70a2, #wrap-s-32964dbf-6d58-474e-831b-4c3c222f70a2, #wrap-content-s-32964dbf-6d58-474e-831b-4c3c222f70a2 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-32964dbf-6d58-474e-831b-4c3c222f70a2 {
  display: none;
}
#s-32964dbf-6d58-474e-831b-4c3c222f70a2, #wrap-s-32964dbf-6d58-474e-831b-4c3c222f70a2, #wrap-content-s-32964dbf-6d58-474e-831b-4c3c222f70a2 { display: none !important; }}
#s-32964dbf-6d58-474e-831b-4c3c222f70a2 .shg-proportional-font-size,
#s-32964dbf-6d58-474e-831b-4c3c222f70a2 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-3a90f701-84c7-4c8f-9cac-504530eb948b {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-3a90f701-84c7-4c8f-9cac-504530eb948b {
  display: none;
}
#s-3a90f701-84c7-4c8f-9cac-504530eb948b, #wrap-s-3a90f701-84c7-4c8f-9cac-504530eb948b, #wrap-content-s-3a90f701-84c7-4c8f-9cac-504530eb948b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3a90f701-84c7-4c8f-9cac-504530eb948b {
  display: none;
}
#s-3a90f701-84c7-4c8f-9cac-504530eb948b, #wrap-s-3a90f701-84c7-4c8f-9cac-504530eb948b, #wrap-content-s-3a90f701-84c7-4c8f-9cac-504530eb948b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3a90f701-84c7-4c8f-9cac-504530eb948b {
  display: none;
}
#s-3a90f701-84c7-4c8f-9cac-504530eb948b, #wrap-s-3a90f701-84c7-4c8f-9cac-504530eb948b, #wrap-content-s-3a90f701-84c7-4c8f-9cac-504530eb948b { display: none !important; }}
@media (min-width: 0px) {
[id="s-3a90f701-84c7-4c8f-9cac-504530eb948b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3a90f701-84c7-4c8f-9cac-504530eb948b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3a90f701-84c7-4c8f-9cac-504530eb948b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3a90f701-84c7-4c8f-9cac-504530eb948b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
max-width: 145px;
text-align: center;
}
@media (min-width: 1200px){#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f {
  display: none;
}
#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f, #wrap-s-638dd78a-9e62-4f61-9d9a-b5457a8b268f, #wrap-content-s-638dd78a-9e62-4f61-9d9a-b5457a8b268f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f {
  display: none;
}
#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f, #wrap-s-638dd78a-9e62-4f61-9d9a-b5457a8b268f, #wrap-content-s-638dd78a-9e62-4f61-9d9a-b5457a8b268f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f {
  display: none;
}
#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f, #wrap-s-638dd78a-9e62-4f61-9d9a-b5457a8b268f, #wrap-content-s-638dd78a-9e62-4f61-9d9a-b5457a8b268f { display: none !important; }}@media (max-width: 767px){#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f {
  max-width: 50px;
}
}
#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-638dd78a-9e62-4f61-9d9a-b5457a8b268f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f .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: 5px;
  /* Add background color handling */
  background: rgba(46, 67, 89, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-638dd78a-9e62-4f61-9d9a-b5457a8b268f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f img.shogun-image {
  width: 100%;
  
  
  max-width: 145px;

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




.s-638dd78a-9e62-4f61-9d9a-b5457a8b268f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-638dd78a-9e62-4f61-9d9a-b5457a8b268f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-638dd78a-9e62-4f61-9d9a-b5457a8b268f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-638dd78a-9e62-4f61-9d9a-b5457a8b268f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-638dd78a-9e62-4f61-9d9a-b5457a8b268f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f img.shogun-image {
  width: 100%;
  
  
  

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




.s-638dd78a-9e62-4f61-9d9a-b5457a8b268f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-638dd78a-9e62-4f61-9d9a-b5457a8b268f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-638dd78a-9e62-4f61-9d9a-b5457a8b268f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-638dd78a-9e62-4f61-9d9a-b5457a8b268f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-638dd78a-9e62-4f61-9d9a-b5457a8b268f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f img.shogun-image {
  width: 100%;
  
  
  

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




.s-638dd78a-9e62-4f61-9d9a-b5457a8b268f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-638dd78a-9e62-4f61-9d9a-b5457a8b268f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-638dd78a-9e62-4f61-9d9a-b5457a8b268f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-638dd78a-9e62-4f61-9d9a-b5457a8b268f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-638dd78a-9e62-4f61-9d9a-b5457a8b268f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f img.shogun-image {
  width: 100%;
  
  
  

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




.s-638dd78a-9e62-4f61-9d9a-b5457a8b268f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-638dd78a-9e62-4f61-9d9a-b5457a8b268f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-638dd78a-9e62-4f61-9d9a-b5457a8b268f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-638dd78a-9e62-4f61-9d9a-b5457a8b268f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-638dd78a-9e62-4f61-9d9a-b5457a8b268f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f 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-638dd78a-9e62-4f61-9d9a-b5457a8b268f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-638dd78a-9e62-4f61-9d9a-b5457a8b268f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-638dd78a-9e62-4f61-9d9a-b5457a8b268f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-638dd78a-9e62-4f61-9d9a-b5457a8b268f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-79664fa6-ae28-44de-ae61-095f544ba130 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-79664fa6-ae28-44de-ae61-095f544ba130 {
  display: none;
}
#s-79664fa6-ae28-44de-ae61-095f544ba130, #wrap-s-79664fa6-ae28-44de-ae61-095f544ba130, #wrap-content-s-79664fa6-ae28-44de-ae61-095f544ba130 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-79664fa6-ae28-44de-ae61-095f544ba130 {
  display: none;
}
#s-79664fa6-ae28-44de-ae61-095f544ba130, #wrap-s-79664fa6-ae28-44de-ae61-095f544ba130, #wrap-content-s-79664fa6-ae28-44de-ae61-095f544ba130 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-79664fa6-ae28-44de-ae61-095f544ba130 {
  display: none;
}
#s-79664fa6-ae28-44de-ae61-095f544ba130, #wrap-s-79664fa6-ae28-44de-ae61-095f544ba130, #wrap-content-s-79664fa6-ae28-44de-ae61-095f544ba130 { display: none !important; }}
#s-79664fa6-ae28-44de-ae61-095f544ba130 .shg-proportional-font-size,
#s-79664fa6-ae28-44de-ae61-095f544ba130 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a {
  display: none;
}
#s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a, #wrap-s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a, #wrap-content-s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a {
  display: none;
}
#s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a, #wrap-s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a, #wrap-content-s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a {
  display: none;
}
#s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a, #wrap-s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a, #wrap-content-s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a { display: none !important; }}@media (max-width: 767px){#s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a {
  display: none;
}
#s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a, #wrap-s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a, #wrap-content-s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a { display: none !important; }}
@media (min-width: 0px) {
[id="s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-6c9c13ee-9b01-4156-a2f9-9a2bd1d3865a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 22.5px);
}

}

#s-e7143dc1-1f91-4483-b7a1-444f810502f3 {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
max-width: 800px;
text-align: center;
}
@media (max-width: 767px){#s-e7143dc1-1f91-4483-b7a1-444f810502f3 {
  max-width: 50px;
}
}
#s-e7143dc1-1f91-4483-b7a1-444f810502f3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e7143dc1-1f91-4483-b7a1-444f810502f3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e7143dc1-1f91-4483-b7a1-444f810502f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-e7143dc1-1f91-4483-b7a1-444f810502f3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-e7143dc1-1f91-4483-b7a1-444f810502f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e7143dc1-1f91-4483-b7a1-444f810502f3 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-e7143dc1-1f91-4483-b7a1-444f810502f3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e7143dc1-1f91-4483-b7a1-444f810502f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7143dc1-1f91-4483-b7a1-444f810502f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7143dc1-1f91-4483-b7a1-444f810502f3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-e7143dc1-1f91-4483-b7a1-444f810502f3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e7143dc1-1f91-4483-b7a1-444f810502f3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e7143dc1-1f91-4483-b7a1-444f810502f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e7143dc1-1f91-4483-b7a1-444f810502f3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-e7143dc1-1f91-4483-b7a1-444f810502f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e7143dc1-1f91-4483-b7a1-444f810502f3 img.shogun-image {
  width: 100%;
  
  
  

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




.s-e7143dc1-1f91-4483-b7a1-444f810502f3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e7143dc1-1f91-4483-b7a1-444f810502f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7143dc1-1f91-4483-b7a1-444f810502f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7143dc1-1f91-4483-b7a1-444f810502f3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-e7143dc1-1f91-4483-b7a1-444f810502f3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e7143dc1-1f91-4483-b7a1-444f810502f3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e7143dc1-1f91-4483-b7a1-444f810502f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e7143dc1-1f91-4483-b7a1-444f810502f3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-e7143dc1-1f91-4483-b7a1-444f810502f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e7143dc1-1f91-4483-b7a1-444f810502f3 img.shogun-image {
  width: 100%;
  
  
  

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




.s-e7143dc1-1f91-4483-b7a1-444f810502f3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e7143dc1-1f91-4483-b7a1-444f810502f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7143dc1-1f91-4483-b7a1-444f810502f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7143dc1-1f91-4483-b7a1-444f810502f3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-e7143dc1-1f91-4483-b7a1-444f810502f3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e7143dc1-1f91-4483-b7a1-444f810502f3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e7143dc1-1f91-4483-b7a1-444f810502f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e7143dc1-1f91-4483-b7a1-444f810502f3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-e7143dc1-1f91-4483-b7a1-444f810502f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e7143dc1-1f91-4483-b7a1-444f810502f3 img.shogun-image {
  width: 100%;
  
  
  

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




.s-e7143dc1-1f91-4483-b7a1-444f810502f3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e7143dc1-1f91-4483-b7a1-444f810502f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7143dc1-1f91-4483-b7a1-444f810502f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7143dc1-1f91-4483-b7a1-444f810502f3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-e7143dc1-1f91-4483-b7a1-444f810502f3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e7143dc1-1f91-4483-b7a1-444f810502f3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e7143dc1-1f91-4483-b7a1-444f810502f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e7143dc1-1f91-4483-b7a1-444f810502f3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-e7143dc1-1f91-4483-b7a1-444f810502f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e7143dc1-1f91-4483-b7a1-444f810502f3 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-e7143dc1-1f91-4483-b7a1-444f810502f3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e7143dc1-1f91-4483-b7a1-444f810502f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7143dc1-1f91-4483-b7a1-444f810502f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7143dc1-1f91-4483-b7a1-444f810502f3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-8066c25c-18bb-4f0a-b0aa-0cae36635404 {
  margin-left: auto;
margin-right: auto;
}

#s-8066c25c-18bb-4f0a-b0aa-0cae36635404 .shg-proportional-font-size,
#s-8066c25c-18bb-4f0a-b0aa-0cae36635404 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
max-width: 800px;
text-align: center;
}
@media (max-width: 767px){#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 {
  max-width: 50px;
}
}
#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 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-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 img.shogun-image {
  width: 100%;
  
  
  

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




.s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 img.shogun-image {
  width: 100%;
  
  
  

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




.s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 img.shogun-image {
  width: 100%;
  
  
  

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




.s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 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-c304f618-ac77-48d6-ae8b-1b4da2e49cb4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c304f618-ac77-48d6-ae8b-1b4da2e49cb4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-89daea6f-b1a4-4895-9505-20f973f43248 {
  margin-left: auto;
margin-right: auto;
}

#s-89daea6f-b1a4-4895-9505-20f973f43248 .shg-proportional-font-size,
#s-89daea6f-b1a4-4895-9505-20f973f43248 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-83f26ffa-4e0c-4df1-bfcc-aa3818de9c60 {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-83f26ffa-4e0c-4df1-bfcc-aa3818de9c60 {
  display: none;
}
#s-83f26ffa-4e0c-4df1-bfcc-aa3818de9c60, #wrap-s-83f26ffa-4e0c-4df1-bfcc-aa3818de9c60, #wrap-content-s-83f26ffa-4e0c-4df1-bfcc-aa3818de9c60 { display: none !important; }}
@media (min-width: 0px) {
[id="s-83f26ffa-4e0c-4df1-bfcc-aa3818de9c60"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-83f26ffa-4e0c-4df1-bfcc-aa3818de9c60"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-83f26ffa-4e0c-4df1-bfcc-aa3818de9c60"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-83f26ffa-4e0c-4df1-bfcc-aa3818de9c60"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-83f26ffa-4e0c-4df1-bfcc-aa3818de9c60"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-83f26ffa-4e0c-4df1-bfcc-aa3818de9c60"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-83f26ffa-4e0c-4df1-bfcc-aa3818de9c60"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 22.5px);
}

}

#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
max-width: 145px;
text-align: center;
}
@media (max-width: 767px){#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 {
  max-width: 50px;
}
}
#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 .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: 5px;
  /* Add background color handling */
  background: rgba(46, 67, 89, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 img.shogun-image {
  width: 100%;
  
  
  max-width: 145px;

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




.s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-38cb08da-6a75-45fa-b72d-d72b54f17bc3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38cb08da-6a75-45fa-b72d-d72b54f17bc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 img.shogun-image {
  width: 100%;
  
  
  

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




.s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-38cb08da-6a75-45fa-b72d-d72b54f17bc3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38cb08da-6a75-45fa-b72d-d72b54f17bc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 img.shogun-image {
  width: 100%;
  
  
  

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




.s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-38cb08da-6a75-45fa-b72d-d72b54f17bc3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38cb08da-6a75-45fa-b72d-d72b54f17bc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 img.shogun-image {
  width: 100%;
  
  
  

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




.s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-38cb08da-6a75-45fa-b72d-d72b54f17bc3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38cb08da-6a75-45fa-b72d-d72b54f17bc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3 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-38cb08da-6a75-45fa-b72d-d72b54f17bc3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-38cb08da-6a75-45fa-b72d-d72b54f17bc3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-38cb08da-6a75-45fa-b72d-d72b54f17bc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-38cb08da-6a75-45fa-b72d-d72b54f17bc3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-b10905ec-9e0e-4215-b12d-50cc78e09033 {
  margin-left: auto;
margin-right: auto;
}

#s-b10905ec-9e0e-4215-b12d-50cc78e09033 .shg-proportional-font-size,
#s-b10905ec-9e0e-4215-b12d-50cc78e09033 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
max-width: 145px;
text-align: center;
}
@media (max-width: 767px){#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f {
  max-width: 50px;
}
}
#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9620f6e0-64c5-45ae-a202-50aeeef28d9f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f .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: 5px;
  /* Add background color handling */
  background: rgba(46, 67, 89, 1);
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-9620f6e0-64c5-45ae-a202-50aeeef28d9f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f img.shogun-image {
  width: 100%;
  
  
  max-width: 145px;

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




.s-9620f6e0-64c5-45ae-a202-50aeeef28d9f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9620f6e0-64c5-45ae-a202-50aeeef28d9f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9620f6e0-64c5-45ae-a202-50aeeef28d9f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9620f6e0-64c5-45ae-a202-50aeeef28d9f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-9620f6e0-64c5-45ae-a202-50aeeef28d9f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f img.shogun-image {
  width: 100%;
  
  
  

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




.s-9620f6e0-64c5-45ae-a202-50aeeef28d9f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9620f6e0-64c5-45ae-a202-50aeeef28d9f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9620f6e0-64c5-45ae-a202-50aeeef28d9f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9620f6e0-64c5-45ae-a202-50aeeef28d9f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-9620f6e0-64c5-45ae-a202-50aeeef28d9f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f img.shogun-image {
  width: 100%;
  
  
  

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




.s-9620f6e0-64c5-45ae-a202-50aeeef28d9f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9620f6e0-64c5-45ae-a202-50aeeef28d9f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9620f6e0-64c5-45ae-a202-50aeeef28d9f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9620f6e0-64c5-45ae-a202-50aeeef28d9f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-9620f6e0-64c5-45ae-a202-50aeeef28d9f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f img.shogun-image {
  width: 100%;
  
  
  

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




.s-9620f6e0-64c5-45ae-a202-50aeeef28d9f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9620f6e0-64c5-45ae-a202-50aeeef28d9f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9620f6e0-64c5-45ae-a202-50aeeef28d9f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9620f6e0-64c5-45ae-a202-50aeeef28d9f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-9620f6e0-64c5-45ae-a202-50aeeef28d9f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f 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-9620f6e0-64c5-45ae-a202-50aeeef28d9f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9620f6e0-64c5-45ae-a202-50aeeef28d9f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9620f6e0-64c5-45ae-a202-50aeeef28d9f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9620f6e0-64c5-45ae-a202-50aeeef28d9f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-58cde3d4-2942-4843-990e-a5a37e18fd4e {
  margin-left: auto;
margin-right: auto;
}

#s-58cde3d4-2942-4843-990e-a5a37e18fd4e .shg-proportional-font-size,
#s-58cde3d4-2942-4843-990e-a5a37e18fd4e .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 400px;
text-align: center;
}
@media (min-width: 1200px){#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e {
  max-width: 350px;
}
}@media (max-width: 767px){#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e {
  max-width: 300px;
display: none;
}
#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e, #wrap-s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e, #wrap-content-s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e { display: none !important; }}
#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 50px;
  margin-bottom: 0px;
}

#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e .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-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e 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-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e img.shogun-image {
  width: 100%;
  
  
  max-width: 350px;

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




.s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e img.shogun-image {
  width: 100%;
  
  
  

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




.s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e img.shogun-image {
  width: 100%;
  
  
  

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




.s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e 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-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f0ecdea-8a77-45ed-bbd4-9a322fc2b16e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-dde63eb8-54f3-46a3-9f45-4850392f6276 {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 450px;
text-align: center;
}
@media (min-width: 1200px){#s-dde63eb8-54f3-46a3-9f45-4850392f6276 {
  display: none;
}
#s-dde63eb8-54f3-46a3-9f45-4850392f6276, #wrap-s-dde63eb8-54f3-46a3-9f45-4850392f6276, #wrap-content-s-dde63eb8-54f3-46a3-9f45-4850392f6276 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-dde63eb8-54f3-46a3-9f45-4850392f6276 {
  display: none;
}
#s-dde63eb8-54f3-46a3-9f45-4850392f6276, #wrap-s-dde63eb8-54f3-46a3-9f45-4850392f6276, #wrap-content-s-dde63eb8-54f3-46a3-9f45-4850392f6276 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-dde63eb8-54f3-46a3-9f45-4850392f6276 {
  display: none;
}
#s-dde63eb8-54f3-46a3-9f45-4850392f6276, #wrap-s-dde63eb8-54f3-46a3-9f45-4850392f6276, #wrap-content-s-dde63eb8-54f3-46a3-9f45-4850392f6276 { display: none !important; }}
#s-dde63eb8-54f3-46a3-9f45-4850392f6276 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dde63eb8-54f3-46a3-9f45-4850392f6276-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-dde63eb8-54f3-46a3-9f45-4850392f6276 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 50px;
  margin-bottom: 0px;
}

#s-dde63eb8-54f3-46a3-9f45-4850392f6276 .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-dde63eb8-54f3-46a3-9f45-4850392f6276 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-dde63eb8-54f3-46a3-9f45-4850392f6276 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-dde63eb8-54f3-46a3-9f45-4850392f6276 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-dde63eb8-54f3-46a3-9f45-4850392f6276.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dde63eb8-54f3-46a3-9f45-4850392f6276.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dde63eb8-54f3-46a3-9f45-4850392f6276.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-dde63eb8-54f3-46a3-9f45-4850392f6276 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dde63eb8-54f3-46a3-9f45-4850392f6276-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-dde63eb8-54f3-46a3-9f45-4850392f6276 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-dde63eb8-54f3-46a3-9f45-4850392f6276 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-dde63eb8-54f3-46a3-9f45-4850392f6276 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-dde63eb8-54f3-46a3-9f45-4850392f6276 img.shogun-image {
  width: 100%;
  
  
  

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




.s-dde63eb8-54f3-46a3-9f45-4850392f6276 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-dde63eb8-54f3-46a3-9f45-4850392f6276.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dde63eb8-54f3-46a3-9f45-4850392f6276.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dde63eb8-54f3-46a3-9f45-4850392f6276.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-dde63eb8-54f3-46a3-9f45-4850392f6276 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dde63eb8-54f3-46a3-9f45-4850392f6276-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-dde63eb8-54f3-46a3-9f45-4850392f6276 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-dde63eb8-54f3-46a3-9f45-4850392f6276 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-dde63eb8-54f3-46a3-9f45-4850392f6276 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-dde63eb8-54f3-46a3-9f45-4850392f6276 img.shogun-image {
  width: 100%;
  
  
  

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




.s-dde63eb8-54f3-46a3-9f45-4850392f6276 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-dde63eb8-54f3-46a3-9f45-4850392f6276.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dde63eb8-54f3-46a3-9f45-4850392f6276.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dde63eb8-54f3-46a3-9f45-4850392f6276.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-dde63eb8-54f3-46a3-9f45-4850392f6276 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dde63eb8-54f3-46a3-9f45-4850392f6276-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-dde63eb8-54f3-46a3-9f45-4850392f6276 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-dde63eb8-54f3-46a3-9f45-4850392f6276 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-dde63eb8-54f3-46a3-9f45-4850392f6276 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-dde63eb8-54f3-46a3-9f45-4850392f6276 img.shogun-image {
  width: 100%;
  
  
  

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




.s-dde63eb8-54f3-46a3-9f45-4850392f6276 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-dde63eb8-54f3-46a3-9f45-4850392f6276.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dde63eb8-54f3-46a3-9f45-4850392f6276.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dde63eb8-54f3-46a3-9f45-4850392f6276.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-dde63eb8-54f3-46a3-9f45-4850392f6276 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dde63eb8-54f3-46a3-9f45-4850392f6276-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-dde63eb8-54f3-46a3-9f45-4850392f6276 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-dde63eb8-54f3-46a3-9f45-4850392f6276 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-dde63eb8-54f3-46a3-9f45-4850392f6276 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-dde63eb8-54f3-46a3-9f45-4850392f6276 img.shogun-image {
  width: 100%;
  
  
  

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




.s-dde63eb8-54f3-46a3-9f45-4850392f6276 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-dde63eb8-54f3-46a3-9f45-4850392f6276.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dde63eb8-54f3-46a3-9f45-4850392f6276.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dde63eb8-54f3-46a3-9f45-4850392f6276.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-73fc4157-0145-4f88-a719-6703c9381f37 {
  margin-left: auto;
margin-right: auto;
padding-top: 50px;
padding-bottom: 75px;
min-height: 50px;
background-color: rgb(255, 255, 255);
}








#s-73fc4157-0145-4f88-a719-6703c9381f37 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-73fc4157-0145-4f88-a719-6703c9381f37.shg-box.shg-c {
  justify-content: center;
}

#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 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-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 img.shogun-image {
  width: 100%;
  
  
  

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




.s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 img.shogun-image {
  width: 100%;
  
  
  

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




.s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 img.shogun-image {
  width: 100%;
  
  
  

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




.s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 img.shogun-image {
  width: 100%;
  
  
  

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




.s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e2d1b672-e880-47b0-b3ef-94f8ea0ea962.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-b6c54adc-1f9f-4a76-9a0e-83a2c7c6a9b0 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 1%;
padding-bottom: 0px;
}

#s-b6c54adc-1f9f-4a76-9a0e-83a2c7c6a9b0 .shg-proportional-font-size,
#s-b6c54adc-1f9f-4a76-9a0e-83a2c7c6a9b0 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-89844b22-604e-458c-9fe9-97b6832bd29d {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-89844b22-604e-458c-9fe9-97b6832bd29d .shogun-heading-component h1 {
  color: rgb(0, 88, 142);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


@media (max-width: 767px){#s-89844b22-604e-458c-9fe9-97b6832bd29d .shogun-heading-component h1 {
  color: rgb(0, 88, 142);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
#s-d27d1533-6c47-4c8a-a696-ccb8559e73ff {
  margin-left: 24%;
margin-right: 24%;
}
@media (max-width: 767px){#s-d27d1533-6c47-4c8a-a696-ccb8559e73ff {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-d27d1533-6c47-4c8a-a696-ccb8559e73ff .shg-proportional-font-size,
#s-d27d1533-6c47-4c8a-a696-ccb8559e73ff .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-bd31372b-0bfb-4e98-8c5d-bf9cb302db23 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-b40853f7-f019-4409-ba73-1a7e14bd70d7 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-22f1813e-7fd7-40a3-a429-5c1dcb9c5377 {
  background-repeat: no-repeat;
margin-left: auto;
margin-right: auto;
padding-top: 50px;
padding-bottom: 50px;
min-height: 50px;
}

#s-22f1813e-7fd7-40a3-a429-5c1dcb9c5377 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjRhNWFkOGEtMTRlNy00NmIxLWFlZDMtOWU1M2IxMzg3ODlkIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojMWI0Mzc2O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojMDA1ODhlO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiNGE1YWQ4YS0xNGU3LTQ2YjEtYWVkMy05ZTUzYjEzODc4OWQpIi8+PC9zdmc+);
}








#s-22f1813e-7fd7-40a3-a429-5c1dcb9c5377 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-22f1813e-7fd7-40a3-a429-5c1dcb9c5377.shg-box.shg-c {
  justify-content: center;
}

#s-08b7ebef-da39-4dcb-a2b4-2564cb040cd2 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-08b7ebef-da39-4dcb-a2b4-2564cb040cd2 {
  margin-left: 3%;
margin-right: 3%;
}
}
#s-08b7ebef-da39-4dcb-a2b4-2564cb040cd2 .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-08b7ebef-da39-4dcb-a2b4-2564cb040cd2 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
#s-5d6c7a47-8eea-43f1-b068-d8ee570b6367 {
  margin-left: 24%;
margin-right: 24%;
}
@media (max-width: 767px){#s-5d6c7a47-8eea-43f1-b068-d8ee570b6367 {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-5d6c7a47-8eea-43f1-b068-d8ee570b6367 .shg-proportional-font-size,
#s-5d6c7a47-8eea-43f1-b068-d8ee570b6367 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-301fbb52-fc03-40dd-86cc-21d2f71d594e {
  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-301fbb52-fc03-40dd-86cc-21d2f71d594e:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-301fbb52-fc03-40dd-86cc-21d2f71d594e:active {background-color: rgba(0, 172, 78, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-301fbb52-fc03-40dd-86cc-21d2f71d594e-root {
    text-align: center;
  }


#s-301fbb52-fc03-40dd-86cc-21d2f71d594e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-301fbb52-fc03-40dd-86cc-21d2f71d594e-root {
    text-align: center;
  }


#s-301fbb52-fc03-40dd-86cc-21d2f71d594e.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-301fbb52-fc03-40dd-86cc-21d2f71d594e-root {
    text-align: center;
  }


#s-301fbb52-fc03-40dd-86cc-21d2f71d594e.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-301fbb52-fc03-40dd-86cc-21d2f71d594e-root {
    text-align: center;
  }


#s-301fbb52-fc03-40dd-86cc-21d2f71d594e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-301fbb52-fc03-40dd-86cc-21d2f71d594e-root {
    text-align: center;
  }


#s-301fbb52-fc03-40dd-86cc-21d2f71d594e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-e6e837b4-2329-4396-b38a-d6116faa62df {
  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;
  }
}
