.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-53de18dd-318a-47b0-a301-0fbfa3b1e052 {
  min-height: 50px;
background-color: rgba(0, 172, 78, 1);
}








#s-53de18dd-318a-47b0-a301-0fbfa3b1e052 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-53de18dd-318a-47b0-a301-0fbfa3b1e052.shg-box.shg-c {
  justify-content: center;
}

#s-43c196b4-e06d-45db-bf05-6dc7f398b612 {
  margin-left: auto;
margin-right: auto;
text-align: left;
background-color: rgba(27, 67, 118, 1);
}

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

.shg-image-content-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-link {
  display: block;
  min-height: inherit;
  max-height: inherit;
  height: inherit;
  position: relative;
}

img.shogun-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.shg-imageV2-content {
  text-align: initial;
}

.shogun-image-content {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  min-width: 100%;
  min-height: 100%;
  /* Ensures that the content children fills the container */
  align-items: stretch;
}

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

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

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

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

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

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

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}

.shogun-image-content > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
text-align: center;
}
@media (min-width: 1200px){#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab {
  display: none;
}
#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab, #wrap-s-8c6adf29-050d-47ad-937c-9c7a50ca9bab, #wrap-content-s-8c6adf29-050d-47ad-937c-9c7a50ca9bab { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab {
  display: none;
}
#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab, #wrap-s-8c6adf29-050d-47ad-937c-9c7a50ca9bab, #wrap-content-s-8c6adf29-050d-47ad-937c-9c7a50ca9bab { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab {
  display: none;
}
#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab, #wrap-s-8c6adf29-050d-47ad-937c-9c7a50ca9bab, #wrap-content-s-8c6adf29-050d-47ad-937c-9c7a50ca9bab { display: none !important; }}@media (max-width: 767px){#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab {
  
}
}
#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab {
  margin: 0 !important;
  overflow: visible;
}

#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8c6adf29-050d-47ad-937c-9c7a50ca9bab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8c6adf29-050d-47ad-937c-9c7a50ca9bab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab img.shogun-image {
  /* Add background color handling */
  
}

#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8c6adf29-050d-47ad-937c-9c7a50ca9bab .shogun-image-content {
  
    justify-content: center;
  
}

.s-8c6adf29-050d-47ad-937c-9c7a50ca9bab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8c6adf29-050d-47ad-937c-9c7a50ca9bab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab.shogun-image {
  box-sizing: border-box;
}



.s-8c6adf29-050d-47ad-937c-9c7a50ca9bab img.shogun-image {
  
}


@media (min-width: 1200px){#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab {
  margin: 0 !important;
  overflow: visible;
}

#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8c6adf29-050d-47ad-937c-9c7a50ca9bab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8c6adf29-050d-47ad-937c-9c7a50ca9bab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab img.shogun-image {
  /* Add background color handling */
  
}

#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8c6adf29-050d-47ad-937c-9c7a50ca9bab .shogun-image-content {
  
    justify-content: center;
  
}

.s-8c6adf29-050d-47ad-937c-9c7a50ca9bab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8c6adf29-050d-47ad-937c-9c7a50ca9bab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab.shogun-image {
  box-sizing: border-box;
}



.s-8c6adf29-050d-47ad-937c-9c7a50ca9bab img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab {
  margin: 0 !important;
  overflow: visible;
}

#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8c6adf29-050d-47ad-937c-9c7a50ca9bab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8c6adf29-050d-47ad-937c-9c7a50ca9bab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab img.shogun-image {
  /* Add background color handling */
  
}

#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8c6adf29-050d-47ad-937c-9c7a50ca9bab .shogun-image-content {
  
    justify-content: center;
  
}

.s-8c6adf29-050d-47ad-937c-9c7a50ca9bab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8c6adf29-050d-47ad-937c-9c7a50ca9bab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab.shogun-image {
  box-sizing: border-box;
}



.s-8c6adf29-050d-47ad-937c-9c7a50ca9bab img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab {
  margin: 0 !important;
  overflow: visible;
}

#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8c6adf29-050d-47ad-937c-9c7a50ca9bab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8c6adf29-050d-47ad-937c-9c7a50ca9bab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab img.shogun-image {
  /* Add background color handling */
  
}

#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8c6adf29-050d-47ad-937c-9c7a50ca9bab .shogun-image-content {
  
    justify-content: center;
  
}

.s-8c6adf29-050d-47ad-937c-9c7a50ca9bab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8c6adf29-050d-47ad-937c-9c7a50ca9bab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab.shogun-image {
  box-sizing: border-box;
}



.s-8c6adf29-050d-47ad-937c-9c7a50ca9bab img.shogun-image {
  
}


}@media (max-width: 767px){#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab {
  margin: 0 !important;
  overflow: visible;
}

#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8c6adf29-050d-47ad-937c-9c7a50ca9bab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8c6adf29-050d-47ad-937c-9c7a50ca9bab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab img.shogun-image {
  /* Add background color handling */
  
}

#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8c6adf29-050d-47ad-937c-9c7a50ca9bab .shogun-image-content {
  
    justify-content: center;
  
}

.s-8c6adf29-050d-47ad-937c-9c7a50ca9bab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8c6adf29-050d-47ad-937c-9c7a50ca9bab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c6adf29-050d-47ad-937c-9c7a50ca9bab.shogun-image {
  box-sizing: border-box;
}



.s-8c6adf29-050d-47ad-937c-9c7a50ca9bab img.shogun-image {
  
}


}
#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 {
  margin-left: auto;
margin-right: auto;
max-width: 2550px;
text-align: center;
}
@media (max-width: 767px){#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 {
  display: none;
}
#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08, #wrap-s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08, #wrap-content-s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 { display: none !important; }}
#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 {
  margin: 0 !important;
  overflow: visible;
}

#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 img.shogun-image {
  /* Add background color handling */
  background: rgba(0, 0, 0, 1);
}

#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 .shogun-image-content {
  
    justify-content: center;
  
}

.s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08.shogun-image {
  box-sizing: border-box;
}



.s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 img.shogun-image {
  
}


@media (min-width: 1200px){#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 {
  margin: 0 !important;
  overflow: visible;
}

#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 img.shogun-image {
  /* Add background color handling */
  
}

#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 .shogun-image-content {
  
    justify-content: center;
  
}

.s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08.shogun-image {
  box-sizing: border-box;
}



.s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 {
  margin: 0 !important;
  overflow: visible;
}

#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 img.shogun-image {
  /* Add background color handling */
  
}

#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 .shogun-image-content {
  
    justify-content: center;
  
}

.s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08.shogun-image {
  box-sizing: border-box;
}



.s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 {
  margin: 0 !important;
  overflow: visible;
}

#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 img.shogun-image {
  /* Add background color handling */
  
}

#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 .shogun-image-content {
  
    justify-content: center;
  
}

.s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08.shogun-image {
  box-sizing: border-box;
}



.s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 img.shogun-image {
  
}


}@media (max-width: 767px){#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 {
  margin: 0 !important;
  overflow: visible;
}

#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 img.shogun-image {
  /* Add background color handling */
  
}

#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 .shogun-image-content {
  
    justify-content: center;
  
}

.s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08.shogun-image {
  box-sizing: border-box;
}



.s-79ad2fcf-0c8b-4b00-826e-f2c42b56fd08 img.shogun-image {
  
}


}
#s-5bb37086-f12d-46b7-bfb0-2beb2b3d9acb {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(27, 67, 118, 1);
}








#s-5bb37086-f12d-46b7-bfb0-2beb2b3d9acb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5bb37086-f12d-46b7-bfb0-2beb2b3d9acb.shg-box.shg-c {
  justify-content: center;
}

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

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

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

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

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

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

.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6 {
  
  
  
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-theme-text-content h1,
.shg-theme-text-content h2,
.shg-theme-text-content h3,
.shg-theme-text-content h4,
.shg-theme-text-content h5,
.shg-theme-text-content h6 {
  
  
  
}

.shg-theme-text-content p {
  
  
  
}

#s-f9796e03-323f-4a03-9a62-fa463a2f556e {
  margin-top: 20px;
margin-left: 15%;
margin-bottom: 0px;
margin-right: 15%;
padding-top: 0px;
}
@media (min-width: 1200px){#s-f9796e03-323f-4a03-9a62-fa463a2f556e {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f9796e03-323f-4a03-9a62-fa463a2f556e {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f9796e03-323f-4a03-9a62-fa463a2f556e {
  
}
}@media (max-width: 767px){#s-f9796e03-323f-4a03-9a62-fa463a2f556e {
  margin-top: 10px;
margin-left: 4%;
margin-right: 4%;
}
}
.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-c31463fa-7dbc-47de-9254-da1851955c91 {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
}
@media (min-width: 1200px){#s-c31463fa-7dbc-47de-9254-da1851955c91 {
  margin-left: 15%;
margin-right: 15%;
}
}
@media (min-width: 0px) {
[id="s-c31463fa-7dbc-47de-9254-da1851955c91"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c31463fa-7dbc-47de-9254-da1851955c91"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-c31463fa-7dbc-47de-9254-da1851955c91"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-c31463fa-7dbc-47de-9254-da1851955c91"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-c31463fa-7dbc-47de-9254-da1851955c91"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-c31463fa-7dbc-47de-9254-da1851955c91"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-c31463fa-7dbc-47de-9254-da1851955c91"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

#s-1332c382-6f1c-4405-af58-578d673c9a58 {
  margin-left: auto;
margin-right: -5%;
padding-top: 10px;
padding-bottom: 25px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 25px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-1332c382-6f1c-4405-af58-578d673c9a58 {
  margin-right: 0%;
}
}







#s-1332c382-6f1c-4405-af58-578d673c9a58 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1332c382-6f1c-4405-af58-578d673c9a58.shg-box.shg-c {
  justify-content: center;
}

#s-007e75c8-65b5-4a5a-a2c8-6235a01ab9f1 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-007e75c8-65b5-4a5a-a2c8-6235a01ab9f1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-007e75c8-65b5-4a5a-a2c8-6235a01ab9f1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-007e75c8-65b5-4a5a-a2c8-6235a01ab9f1"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-007e75c8-65b5-4a5a-a2c8-6235a01ab9f1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-007e75c8-65b5-4a5a-a2c8-6235a01ab9f1"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-007e75c8-65b5-4a5a-a2c8-6235a01ab9f1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-007e75c8-65b5-4a5a-a2c8-6235a01ab9f1"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 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-fc3b1cf4-5555-4275-91de-ee47a59bca63 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
max-width: 75%;
text-align: center;
}
@media (max-width: 767px){#s-fc3b1cf4-5555-4275-91de-ee47a59bca63 {
  max-width: 50%;
}
}
#s-fc3b1cf4-5555-4275-91de-ee47a59bca63 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fc3b1cf4-5555-4275-91de-ee47a59bca63-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fc3b1cf4-5555-4275-91de-ee47a59bca63 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-fc3b1cf4-5555-4275-91de-ee47a59bca63 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-fc3b1cf4-5555-4275-91de-ee47a59bca63 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-fc3b1cf4-5555-4275-91de-ee47a59bca63 img.shogun-image {
  width: 100%;
  
  
  max-width: 75%;

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




.s-fc3b1cf4-5555-4275-91de-ee47a59bca63 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fc3b1cf4-5555-4275-91de-ee47a59bca63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc3b1cf4-5555-4275-91de-ee47a59bca63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc3b1cf4-5555-4275-91de-ee47a59bca63.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-fc3b1cf4-5555-4275-91de-ee47a59bca63 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fc3b1cf4-5555-4275-91de-ee47a59bca63-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fc3b1cf4-5555-4275-91de-ee47a59bca63 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-fc3b1cf4-5555-4275-91de-ee47a59bca63 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-fc3b1cf4-5555-4275-91de-ee47a59bca63 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-fc3b1cf4-5555-4275-91de-ee47a59bca63 img.shogun-image {
  width: 100%;
  
  
  

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




.s-fc3b1cf4-5555-4275-91de-ee47a59bca63 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fc3b1cf4-5555-4275-91de-ee47a59bca63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc3b1cf4-5555-4275-91de-ee47a59bca63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc3b1cf4-5555-4275-91de-ee47a59bca63.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-fc3b1cf4-5555-4275-91de-ee47a59bca63 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fc3b1cf4-5555-4275-91de-ee47a59bca63-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fc3b1cf4-5555-4275-91de-ee47a59bca63 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-fc3b1cf4-5555-4275-91de-ee47a59bca63 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-fc3b1cf4-5555-4275-91de-ee47a59bca63 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-fc3b1cf4-5555-4275-91de-ee47a59bca63 img.shogun-image {
  width: 100%;
  
  
  

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




.s-fc3b1cf4-5555-4275-91de-ee47a59bca63 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fc3b1cf4-5555-4275-91de-ee47a59bca63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc3b1cf4-5555-4275-91de-ee47a59bca63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc3b1cf4-5555-4275-91de-ee47a59bca63.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-fc3b1cf4-5555-4275-91de-ee47a59bca63 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fc3b1cf4-5555-4275-91de-ee47a59bca63-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fc3b1cf4-5555-4275-91de-ee47a59bca63 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-fc3b1cf4-5555-4275-91de-ee47a59bca63 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-fc3b1cf4-5555-4275-91de-ee47a59bca63 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-fc3b1cf4-5555-4275-91de-ee47a59bca63 img.shogun-image {
  width: 100%;
  
  
  

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




.s-fc3b1cf4-5555-4275-91de-ee47a59bca63 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fc3b1cf4-5555-4275-91de-ee47a59bca63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc3b1cf4-5555-4275-91de-ee47a59bca63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc3b1cf4-5555-4275-91de-ee47a59bca63.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-fc3b1cf4-5555-4275-91de-ee47a59bca63 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fc3b1cf4-5555-4275-91de-ee47a59bca63-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fc3b1cf4-5555-4275-91de-ee47a59bca63 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-fc3b1cf4-5555-4275-91de-ee47a59bca63 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-fc3b1cf4-5555-4275-91de-ee47a59bca63 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-fc3b1cf4-5555-4275-91de-ee47a59bca63 img.shogun-image {
  width: 100%;
  
  
  max-width: 50%;

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




.s-fc3b1cf4-5555-4275-91de-ee47a59bca63 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fc3b1cf4-5555-4275-91de-ee47a59bca63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc3b1cf4-5555-4275-91de-ee47a59bca63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc3b1cf4-5555-4275-91de-ee47a59bca63.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-3bf36cf3-0824-495a-b5df-a7e26d058ea0 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-3bf36cf3-0824-495a-b5df-a7e26d058ea0 {
  display: none;
}
#s-3bf36cf3-0824-495a-b5df-a7e26d058ea0, #wrap-s-3bf36cf3-0824-495a-b5df-a7e26d058ea0, #wrap-content-s-3bf36cf3-0824-495a-b5df-a7e26d058ea0 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3bf36cf3-0824-495a-b5df-a7e26d058ea0 {
  display: none;
}
#s-3bf36cf3-0824-495a-b5df-a7e26d058ea0, #wrap-s-3bf36cf3-0824-495a-b5df-a7e26d058ea0, #wrap-content-s-3bf36cf3-0824-495a-b5df-a7e26d058ea0 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3bf36cf3-0824-495a-b5df-a7e26d058ea0 {
  display: none;
}
#s-3bf36cf3-0824-495a-b5df-a7e26d058ea0, #wrap-s-3bf36cf3-0824-495a-b5df-a7e26d058ea0, #wrap-content-s-3bf36cf3-0824-495a-b5df-a7e26d058ea0 { display: none !important; }}
#s-3bf36cf3-0824-495a-b5df-a7e26d058ea0 .shg-proportional-font-size,
#s-3bf36cf3-0824-495a-b5df-a7e26d058ea0 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-dc29c372-ee60-4c4d-ad9b-53ff44f00bae {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-dc29c372-ee60-4c4d-ad9b-53ff44f00bae {
  display: none;
}
#s-dc29c372-ee60-4c4d-ad9b-53ff44f00bae, #wrap-s-dc29c372-ee60-4c4d-ad9b-53ff44f00bae, #wrap-content-s-dc29c372-ee60-4c4d-ad9b-53ff44f00bae { display: none !important; }}
#s-dc29c372-ee60-4c4d-ad9b-53ff44f00bae .shg-proportional-font-size,
#s-dc29c372-ee60-4c4d-ad9b-53ff44f00bae .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-ebb1dd9b-4a27-4a52-ae76-2149843c7c9a {
  margin-top: -10px;
margin-left: auto;
margin-bottom: -16px;
margin-right: auto;
}
@media (min-width: 1200px){#s-ebb1dd9b-4a27-4a52-ae76-2149843c7c9a {
  display: none;
}
#s-ebb1dd9b-4a27-4a52-ae76-2149843c7c9a, #wrap-s-ebb1dd9b-4a27-4a52-ae76-2149843c7c9a, #wrap-content-s-ebb1dd9b-4a27-4a52-ae76-2149843c7c9a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ebb1dd9b-4a27-4a52-ae76-2149843c7c9a {
  display: none;
}
#s-ebb1dd9b-4a27-4a52-ae76-2149843c7c9a, #wrap-s-ebb1dd9b-4a27-4a52-ae76-2149843c7c9a, #wrap-content-s-ebb1dd9b-4a27-4a52-ae76-2149843c7c9a { display: none !important; }}@media (max-width: 767px){#s-ebb1dd9b-4a27-4a52-ae76-2149843c7c9a {
  display: none;
}
#s-ebb1dd9b-4a27-4a52-ae76-2149843c7c9a, #wrap-s-ebb1dd9b-4a27-4a52-ae76-2149843c7c9a, #wrap-content-s-ebb1dd9b-4a27-4a52-ae76-2149843c7c9a { display: none !important; }}
#s-ebb1dd9b-4a27-4a52-ae76-2149843c7c9a .shg-proportional-font-size,
#s-ebb1dd9b-4a27-4a52-ae76-2149843c7c9a .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-ae8f7b06-088f-4701-bbef-0dbf4c39bace {
  margin-top: -10px;
margin-left: auto;
margin-bottom: -16px;
margin-right: auto;
}
@media (min-width: 768px) and (max-width: 991px){#s-ae8f7b06-088f-4701-bbef-0dbf4c39bace {
  display: none;
}
#s-ae8f7b06-088f-4701-bbef-0dbf4c39bace, #wrap-s-ae8f7b06-088f-4701-bbef-0dbf4c39bace, #wrap-content-s-ae8f7b06-088f-4701-bbef-0dbf4c39bace { display: none !important; }}@media (max-width: 767px){#s-ae8f7b06-088f-4701-bbef-0dbf4c39bace {
  display: none;
}
#s-ae8f7b06-088f-4701-bbef-0dbf4c39bace, #wrap-s-ae8f7b06-088f-4701-bbef-0dbf4c39bace, #wrap-content-s-ae8f7b06-088f-4701-bbef-0dbf4c39bace { display: none !important; }}
#s-ae8f7b06-088f-4701-bbef-0dbf4c39bace .shg-proportional-font-size,
#s-ae8f7b06-088f-4701-bbef-0dbf4c39bace .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-ec5ee97e-c666-4910-9863-06551492b3e8 {
  margin-top: -10px;
margin-left: auto;
margin-bottom: -16px;
margin-right: auto;
}
@media (min-width: 1200px){#s-ec5ee97e-c666-4910-9863-06551492b3e8 {
  display: none;
}
#s-ec5ee97e-c666-4910-9863-06551492b3e8, #wrap-s-ec5ee97e-c666-4910-9863-06551492b3e8, #wrap-content-s-ec5ee97e-c666-4910-9863-06551492b3e8 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ec5ee97e-c666-4910-9863-06551492b3e8 {
  display: none;
}
#s-ec5ee97e-c666-4910-9863-06551492b3e8, #wrap-s-ec5ee97e-c666-4910-9863-06551492b3e8, #wrap-content-s-ec5ee97e-c666-4910-9863-06551492b3e8 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ec5ee97e-c666-4910-9863-06551492b3e8 {
  display: none;
}
#s-ec5ee97e-c666-4910-9863-06551492b3e8, #wrap-s-ec5ee97e-c666-4910-9863-06551492b3e8, #wrap-content-s-ec5ee97e-c666-4910-9863-06551492b3e8 { display: none !important; }}
#s-ec5ee97e-c666-4910-9863-06551492b3e8 .shg-proportional-font-size,
#s-ec5ee97e-c666-4910-9863-06551492b3e8 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-bd272c19-339d-49bf-9a8c-5a75d959b48f {
  margin-left: 0%;
margin-right: 7px;
}
@media (min-width: 1200px){#s-bd272c19-339d-49bf-9a8c-5a75d959b48f {
  margin-right: 25px;
padding-left: 0%;
padding-right: 0%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bd272c19-339d-49bf-9a8c-5a75d959b48f {
  padding-right: 4%;
}
}@media (max-width: 767px){#s-bd272c19-339d-49bf-9a8c-5a75d959b48f {
  display: none;
}
#s-bd272c19-339d-49bf-9a8c-5a75d959b48f, #wrap-s-bd272c19-339d-49bf-9a8c-5a75d959b48f, #wrap-content-s-bd272c19-339d-49bf-9a8c-5a75d959b48f { display: none !important; }}
#s-bd272c19-339d-49bf-9a8c-5a75d959b48f .shg-proportional-font-size,
#s-bd272c19-339d-49bf-9a8c-5a75d959b48f .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-7a9a4a6c-96b6-468b-9128-adcdc2d4cbbd {
  margin-left: 2%;
margin-right: 2%;
}
@media (min-width: 1200px){#s-7a9a4a6c-96b6-468b-9128-adcdc2d4cbbd {
  display: none;
}
#s-7a9a4a6c-96b6-468b-9128-adcdc2d4cbbd, #wrap-s-7a9a4a6c-96b6-468b-9128-adcdc2d4cbbd, #wrap-content-s-7a9a4a6c-96b6-468b-9128-adcdc2d4cbbd { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7a9a4a6c-96b6-468b-9128-adcdc2d4cbbd {
  display: none;
}
#s-7a9a4a6c-96b6-468b-9128-adcdc2d4cbbd, #wrap-s-7a9a4a6c-96b6-468b-9128-adcdc2d4cbbd, #wrap-content-s-7a9a4a6c-96b6-468b-9128-adcdc2d4cbbd { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7a9a4a6c-96b6-468b-9128-adcdc2d4cbbd {
  display: none;
}
#s-7a9a4a6c-96b6-468b-9128-adcdc2d4cbbd, #wrap-s-7a9a4a6c-96b6-468b-9128-adcdc2d4cbbd, #wrap-content-s-7a9a4a6c-96b6-468b-9128-adcdc2d4cbbd { display: none !important; }}
#s-7a9a4a6c-96b6-468b-9128-adcdc2d4cbbd .shg-proportional-font-size,
#s-7a9a4a6c-96b6-468b-9128-adcdc2d4cbbd .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-b2dec6c3-ea85-429c-b11d-a6741548edef {
  margin-top: 75px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 50px;
text-align: center;
}
@media (max-width: 767px){#s-b2dec6c3-ea85-429c-b11d-a6741548edef {
  margin-top: 25px;
margin-bottom: 25px;
}
}
#s-b2dec6c3-ea85-429c-b11d-a6741548edef {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b2dec6c3-ea85-429c-b11d-a6741548edef-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-b2dec6c3-ea85-429c-b11d-a6741548edef {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-b2dec6c3-ea85-429c-b11d-a6741548edef .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-b2dec6c3-ea85-429c-b11d-a6741548edef {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b2dec6c3-ea85-429c-b11d-a6741548edef 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-b2dec6c3-ea85-429c-b11d-a6741548edef .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b2dec6c3-ea85-429c-b11d-a6741548edef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b2dec6c3-ea85-429c-b11d-a6741548edef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b2dec6c3-ea85-429c-b11d-a6741548edef.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-b2dec6c3-ea85-429c-b11d-a6741548edef {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b2dec6c3-ea85-429c-b11d-a6741548edef-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-b2dec6c3-ea85-429c-b11d-a6741548edef {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b2dec6c3-ea85-429c-b11d-a6741548edef .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-b2dec6c3-ea85-429c-b11d-a6741548edef {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b2dec6c3-ea85-429c-b11d-a6741548edef img.shogun-image {
  width: 100%;
  
  
  

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




.s-b2dec6c3-ea85-429c-b11d-a6741548edef .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b2dec6c3-ea85-429c-b11d-a6741548edef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b2dec6c3-ea85-429c-b11d-a6741548edef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b2dec6c3-ea85-429c-b11d-a6741548edef.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-b2dec6c3-ea85-429c-b11d-a6741548edef {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b2dec6c3-ea85-429c-b11d-a6741548edef-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-b2dec6c3-ea85-429c-b11d-a6741548edef {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b2dec6c3-ea85-429c-b11d-a6741548edef .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-b2dec6c3-ea85-429c-b11d-a6741548edef {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b2dec6c3-ea85-429c-b11d-a6741548edef img.shogun-image {
  width: 100%;
  
  
  

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




.s-b2dec6c3-ea85-429c-b11d-a6741548edef .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b2dec6c3-ea85-429c-b11d-a6741548edef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b2dec6c3-ea85-429c-b11d-a6741548edef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b2dec6c3-ea85-429c-b11d-a6741548edef.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-b2dec6c3-ea85-429c-b11d-a6741548edef {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b2dec6c3-ea85-429c-b11d-a6741548edef-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-b2dec6c3-ea85-429c-b11d-a6741548edef {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b2dec6c3-ea85-429c-b11d-a6741548edef .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-b2dec6c3-ea85-429c-b11d-a6741548edef {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b2dec6c3-ea85-429c-b11d-a6741548edef img.shogun-image {
  width: 100%;
  
  
  

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




.s-b2dec6c3-ea85-429c-b11d-a6741548edef .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b2dec6c3-ea85-429c-b11d-a6741548edef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b2dec6c3-ea85-429c-b11d-a6741548edef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b2dec6c3-ea85-429c-b11d-a6741548edef.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-b2dec6c3-ea85-429c-b11d-a6741548edef {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b2dec6c3-ea85-429c-b11d-a6741548edef-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-b2dec6c3-ea85-429c-b11d-a6741548edef {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-b2dec6c3-ea85-429c-b11d-a6741548edef .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-b2dec6c3-ea85-429c-b11d-a6741548edef {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b2dec6c3-ea85-429c-b11d-a6741548edef img.shogun-image {
  width: 100%;
  
  
  

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




.s-b2dec6c3-ea85-429c-b11d-a6741548edef .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b2dec6c3-ea85-429c-b11d-a6741548edef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b2dec6c3-ea85-429c-b11d-a6741548edef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b2dec6c3-ea85-429c-b11d-a6741548edef.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-9e514ebc-cae4-4b1b-976c-ce164c6131de {
  margin-left: -5%;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 25px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-9e514ebc-cae4-4b1b-976c-ce164c6131de {
  margin-left: 0%;
}
}







#s-9e514ebc-cae4-4b1b-976c-ce164c6131de > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9e514ebc-cae4-4b1b-976c-ce164c6131de.shg-box.shg-c {
  justify-content: center;
}

#s-fdd2902d-9c3b-439d-9d0a-ae9b09953c47 {
  margin-left: 0%;
margin-right: auto;
}
@media (min-width: 1200px){#s-fdd2902d-9c3b-439d-9d0a-ae9b09953c47 {
  padding-top: 0px;
padding-bottom: 30px;
}
}@media (max-width: 767px){#s-fdd2902d-9c3b-439d-9d0a-ae9b09953c47 {
  margin-right: 0%;
}
}
@media (min-width: 0px) {
[id="s-fdd2902d-9c3b-439d-9d0a-ae9b09953c47"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fdd2902d-9c3b-439d-9d0a-ae9b09953c47"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fdd2902d-9c3b-439d-9d0a-ae9b09953c47"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fdd2902d-9c3b-439d-9d0a-ae9b09953c47"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fdd2902d-9c3b-439d-9d0a-ae9b09953c47"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fdd2902d-9c3b-439d-9d0a-ae9b09953c47"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fdd2902d-9c3b-439d-9d0a-ae9b09953c47"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

#s-66187043-780f-42c8-a2fa-34cd01e12dc2 {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
max-width: 85%;
text-align: center;
}
@media (max-width: 767px){#s-66187043-780f-42c8-a2fa-34cd01e12dc2 {
  max-width: 65%;
}
}
#s-66187043-780f-42c8-a2fa-34cd01e12dc2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-66187043-780f-42c8-a2fa-34cd01e12dc2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-66187043-780f-42c8-a2fa-34cd01e12dc2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-66187043-780f-42c8-a2fa-34cd01e12dc2 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-66187043-780f-42c8-a2fa-34cd01e12dc2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-66187043-780f-42c8-a2fa-34cd01e12dc2 img.shogun-image {
  width: 100%;
  
  
  max-width: 85%;

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




.s-66187043-780f-42c8-a2fa-34cd01e12dc2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-66187043-780f-42c8-a2fa-34cd01e12dc2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-66187043-780f-42c8-a2fa-34cd01e12dc2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-66187043-780f-42c8-a2fa-34cd01e12dc2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-66187043-780f-42c8-a2fa-34cd01e12dc2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-66187043-780f-42c8-a2fa-34cd01e12dc2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-66187043-780f-42c8-a2fa-34cd01e12dc2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-66187043-780f-42c8-a2fa-34cd01e12dc2 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-66187043-780f-42c8-a2fa-34cd01e12dc2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-66187043-780f-42c8-a2fa-34cd01e12dc2 img.shogun-image {
  width: 100%;
  
  
  

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




.s-66187043-780f-42c8-a2fa-34cd01e12dc2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-66187043-780f-42c8-a2fa-34cd01e12dc2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-66187043-780f-42c8-a2fa-34cd01e12dc2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-66187043-780f-42c8-a2fa-34cd01e12dc2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-66187043-780f-42c8-a2fa-34cd01e12dc2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-66187043-780f-42c8-a2fa-34cd01e12dc2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-66187043-780f-42c8-a2fa-34cd01e12dc2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-66187043-780f-42c8-a2fa-34cd01e12dc2 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-66187043-780f-42c8-a2fa-34cd01e12dc2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-66187043-780f-42c8-a2fa-34cd01e12dc2 img.shogun-image {
  width: 100%;
  
  
  

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




.s-66187043-780f-42c8-a2fa-34cd01e12dc2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-66187043-780f-42c8-a2fa-34cd01e12dc2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-66187043-780f-42c8-a2fa-34cd01e12dc2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-66187043-780f-42c8-a2fa-34cd01e12dc2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-66187043-780f-42c8-a2fa-34cd01e12dc2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-66187043-780f-42c8-a2fa-34cd01e12dc2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-66187043-780f-42c8-a2fa-34cd01e12dc2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-66187043-780f-42c8-a2fa-34cd01e12dc2 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-66187043-780f-42c8-a2fa-34cd01e12dc2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-66187043-780f-42c8-a2fa-34cd01e12dc2 img.shogun-image {
  width: 100%;
  
  
  

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




.s-66187043-780f-42c8-a2fa-34cd01e12dc2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-66187043-780f-42c8-a2fa-34cd01e12dc2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-66187043-780f-42c8-a2fa-34cd01e12dc2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-66187043-780f-42c8-a2fa-34cd01e12dc2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-66187043-780f-42c8-a2fa-34cd01e12dc2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-66187043-780f-42c8-a2fa-34cd01e12dc2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-66187043-780f-42c8-a2fa-34cd01e12dc2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-66187043-780f-42c8-a2fa-34cd01e12dc2 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-66187043-780f-42c8-a2fa-34cd01e12dc2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-66187043-780f-42c8-a2fa-34cd01e12dc2 img.shogun-image {
  width: 100%;
  
  
  max-width: 65%;

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




.s-66187043-780f-42c8-a2fa-34cd01e12dc2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-66187043-780f-42c8-a2fa-34cd01e12dc2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-66187043-780f-42c8-a2fa-34cd01e12dc2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-66187043-780f-42c8-a2fa-34cd01e12dc2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-3ab6d35c-3f9b-4136-8b52-179873f95521 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
}
@media (min-width: 1200px){#s-3ab6d35c-3f9b-4136-8b52-179873f95521 {
  display: none;
}
#s-3ab6d35c-3f9b-4136-8b52-179873f95521, #wrap-s-3ab6d35c-3f9b-4136-8b52-179873f95521, #wrap-content-s-3ab6d35c-3f9b-4136-8b52-179873f95521 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3ab6d35c-3f9b-4136-8b52-179873f95521 {
  display: none;
}
#s-3ab6d35c-3f9b-4136-8b52-179873f95521, #wrap-s-3ab6d35c-3f9b-4136-8b52-179873f95521, #wrap-content-s-3ab6d35c-3f9b-4136-8b52-179873f95521 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3ab6d35c-3f9b-4136-8b52-179873f95521 {
  display: none;
}
#s-3ab6d35c-3f9b-4136-8b52-179873f95521, #wrap-s-3ab6d35c-3f9b-4136-8b52-179873f95521, #wrap-content-s-3ab6d35c-3f9b-4136-8b52-179873f95521 { display: none !important; }}
#s-3ab6d35c-3f9b-4136-8b52-179873f95521 .shg-proportional-font-size,
#s-3ab6d35c-3f9b-4136-8b52-179873f95521 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-96471ee8-e21b-4823-9709-1f0165e527e5 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
}
@media (max-width: 767px){#s-96471ee8-e21b-4823-9709-1f0165e527e5 {
  display: none;
}
#s-96471ee8-e21b-4823-9709-1f0165e527e5, #wrap-s-96471ee8-e21b-4823-9709-1f0165e527e5, #wrap-content-s-96471ee8-e21b-4823-9709-1f0165e527e5 { display: none !important; }}
#s-96471ee8-e21b-4823-9709-1f0165e527e5 .shg-proportional-font-size,
#s-96471ee8-e21b-4823-9709-1f0165e527e5 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-ee5bf73a-f5a6-46cc-a929-7b2cfb2bcc3a {
  margin-top: -10px;
margin-left: auto;
margin-bottom: -16px;
margin-right: auto;
}
@media (min-width: 1200px){#s-ee5bf73a-f5a6-46cc-a929-7b2cfb2bcc3a {
  display: none;
}
#s-ee5bf73a-f5a6-46cc-a929-7b2cfb2bcc3a, #wrap-s-ee5bf73a-f5a6-46cc-a929-7b2cfb2bcc3a, #wrap-content-s-ee5bf73a-f5a6-46cc-a929-7b2cfb2bcc3a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ee5bf73a-f5a6-46cc-a929-7b2cfb2bcc3a {
  display: none;
}
#s-ee5bf73a-f5a6-46cc-a929-7b2cfb2bcc3a, #wrap-s-ee5bf73a-f5a6-46cc-a929-7b2cfb2bcc3a, #wrap-content-s-ee5bf73a-f5a6-46cc-a929-7b2cfb2bcc3a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ee5bf73a-f5a6-46cc-a929-7b2cfb2bcc3a {
  display: none;
}
#s-ee5bf73a-f5a6-46cc-a929-7b2cfb2bcc3a, #wrap-s-ee5bf73a-f5a6-46cc-a929-7b2cfb2bcc3a, #wrap-content-s-ee5bf73a-f5a6-46cc-a929-7b2cfb2bcc3a { display: none !important; }}
#s-ee5bf73a-f5a6-46cc-a929-7b2cfb2bcc3a .shg-proportional-font-size,
#s-ee5bf73a-f5a6-46cc-a929-7b2cfb2bcc3a .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-c7da32b8-73f3-496c-b4b3-3ed5f43d433d {
  margin-top: -10px;
margin-left: auto;
margin-bottom: -16px;
margin-right: auto;
}
@media (min-width: 1200px){#s-c7da32b8-73f3-496c-b4b3-3ed5f43d433d {
  display: none;
}
#s-c7da32b8-73f3-496c-b4b3-3ed5f43d433d, #wrap-s-c7da32b8-73f3-496c-b4b3-3ed5f43d433d, #wrap-content-s-c7da32b8-73f3-496c-b4b3-3ed5f43d433d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c7da32b8-73f3-496c-b4b3-3ed5f43d433d {
  display: none;
}
#s-c7da32b8-73f3-496c-b4b3-3ed5f43d433d, #wrap-s-c7da32b8-73f3-496c-b4b3-3ed5f43d433d, #wrap-content-s-c7da32b8-73f3-496c-b4b3-3ed5f43d433d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c7da32b8-73f3-496c-b4b3-3ed5f43d433d {
  padding-left: 0%;
padding-right: 4%;
}
}@media (max-width: 767px){#s-c7da32b8-73f3-496c-b4b3-3ed5f43d433d {
  display: none;
}
#s-c7da32b8-73f3-496c-b4b3-3ed5f43d433d, #wrap-s-c7da32b8-73f3-496c-b4b3-3ed5f43d433d, #wrap-content-s-c7da32b8-73f3-496c-b4b3-3ed5f43d433d { display: none !important; }}
#s-c7da32b8-73f3-496c-b4b3-3ed5f43d433d .shg-proportional-font-size,
#s-c7da32b8-73f3-496c-b4b3-3ed5f43d433d .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-3cc22e78-36da-4f07-9dd4-feadb39f7d7b {
  margin-top: -10px;
margin-left: auto;
margin-bottom: -16px;
margin-right: auto;
}
@media (min-width: 768px) and (max-width: 991px){#s-3cc22e78-36da-4f07-9dd4-feadb39f7d7b {
  display: none;
}
#s-3cc22e78-36da-4f07-9dd4-feadb39f7d7b, #wrap-s-3cc22e78-36da-4f07-9dd4-feadb39f7d7b, #wrap-content-s-3cc22e78-36da-4f07-9dd4-feadb39f7d7b { display: none !important; }}@media (max-width: 767px){#s-3cc22e78-36da-4f07-9dd4-feadb39f7d7b {
  display: none;
}
#s-3cc22e78-36da-4f07-9dd4-feadb39f7d7b, #wrap-s-3cc22e78-36da-4f07-9dd4-feadb39f7d7b, #wrap-content-s-3cc22e78-36da-4f07-9dd4-feadb39f7d7b { display: none !important; }}
#s-3cc22e78-36da-4f07-9dd4-feadb39f7d7b .shg-proportional-font-size,
#s-3cc22e78-36da-4f07-9dd4-feadb39f7d7b .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-4e6bd847-0c13-4c62-b162-6fed538fb099 {
  margin-left: 2%;
margin-right: 2%;
}
@media (min-width: 1200px){#s-4e6bd847-0c13-4c62-b162-6fed538fb099 {
  display: none;
}
#s-4e6bd847-0c13-4c62-b162-6fed538fb099, #wrap-s-4e6bd847-0c13-4c62-b162-6fed538fb099, #wrap-content-s-4e6bd847-0c13-4c62-b162-6fed538fb099 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4e6bd847-0c13-4c62-b162-6fed538fb099 {
  display: none;
}
#s-4e6bd847-0c13-4c62-b162-6fed538fb099, #wrap-s-4e6bd847-0c13-4c62-b162-6fed538fb099, #wrap-content-s-4e6bd847-0c13-4c62-b162-6fed538fb099 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4e6bd847-0c13-4c62-b162-6fed538fb099 {
  display: none;
}
#s-4e6bd847-0c13-4c62-b162-6fed538fb099, #wrap-s-4e6bd847-0c13-4c62-b162-6fed538fb099, #wrap-content-s-4e6bd847-0c13-4c62-b162-6fed538fb099 { display: none !important; }}@media (max-width: 767px){#s-4e6bd847-0c13-4c62-b162-6fed538fb099 {
  margin-left: 4%;
margin-right: 4%;
}
}
#s-4e6bd847-0c13-4c62-b162-6fed538fb099 .shg-proportional-font-size,
#s-4e6bd847-0c13-4c62-b162-6fed538fb099 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-39e0e06d-d9bf-4d47-8fc1-a9e44d63f1fe {
  margin-left: 0px;
margin-right: 7px;
}
@media (min-width: 1200px){#s-39e0e06d-d9bf-4d47-8fc1-a9e44d63f1fe {
  margin-right: 25px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-39e0e06d-d9bf-4d47-8fc1-a9e44d63f1fe {
  padding-left: 0%;
padding-right: 4%;
}
}@media (max-width: 767px){#s-39e0e06d-d9bf-4d47-8fc1-a9e44d63f1fe {
  display: none;
}
#s-39e0e06d-d9bf-4d47-8fc1-a9e44d63f1fe, #wrap-s-39e0e06d-d9bf-4d47-8fc1-a9e44d63f1fe, #wrap-content-s-39e0e06d-d9bf-4d47-8fc1-a9e44d63f1fe { display: none !important; }}
#s-39e0e06d-d9bf-4d47-8fc1-a9e44d63f1fe .shg-proportional-font-size,
#s-39e0e06d-d9bf-4d47-8fc1-a9e44d63f1fe .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-6e285c8e-e6a3-4da1-9fbb-71e7eccc3a8e {
  margin-left: 10%;
margin-right: 10%;
}
@media (min-width: 1200px){#s-6e285c8e-e6a3-4da1-9fbb-71e7eccc3a8e {
  margin-top: 25px;
margin-bottom: 25px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6e285c8e-e6a3-4da1-9fbb-71e7eccc3a8e {
  margin-top: 25px;
margin-bottom: 25px;
}
}@media (max-width: 767px){#s-6e285c8e-e6a3-4da1-9fbb-71e7eccc3a8e {
  display: none;
}
#s-6e285c8e-e6a3-4da1-9fbb-71e7eccc3a8e, #wrap-s-6e285c8e-e6a3-4da1-9fbb-71e7eccc3a8e, #wrap-content-s-6e285c8e-e6a3-4da1-9fbb-71e7eccc3a8e { display: none !important; }}
@media (min-width: 0px) {
[id="s-6e285c8e-e6a3-4da1-9fbb-71e7eccc3a8e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6e285c8e-e6a3-4da1-9fbb-71e7eccc3a8e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-6e285c8e-e6a3-4da1-9fbb-71e7eccc3a8e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-6e285c8e-e6a3-4da1-9fbb-71e7eccc3a8e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-6e285c8e-e6a3-4da1-9fbb-71e7eccc3a8e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-6e285c8e-e6a3-4da1-9fbb-71e7eccc3a8e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-6e285c8e-e6a3-4da1-9fbb-71e7eccc3a8e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

#s-03360f0f-d129-48ee-a3a2-f30cafadc81e {
  margin-left: auto;
margin-right: auto;
max-width: 50px;
text-align: center;
}

#s-03360f0f-d129-48ee-a3a2-f30cafadc81e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-03360f0f-d129-48ee-a3a2-f30cafadc81e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-03360f0f-d129-48ee-a3a2-f30cafadc81e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-03360f0f-d129-48ee-a3a2-f30cafadc81e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-03360f0f-d129-48ee-a3a2-f30cafadc81e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-03360f0f-d129-48ee-a3a2-f30cafadc81e 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-03360f0f-d129-48ee-a3a2-f30cafadc81e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-03360f0f-d129-48ee-a3a2-f30cafadc81e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03360f0f-d129-48ee-a3a2-f30cafadc81e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03360f0f-d129-48ee-a3a2-f30cafadc81e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-03360f0f-d129-48ee-a3a2-f30cafadc81e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-03360f0f-d129-48ee-a3a2-f30cafadc81e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-03360f0f-d129-48ee-a3a2-f30cafadc81e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-03360f0f-d129-48ee-a3a2-f30cafadc81e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-03360f0f-d129-48ee-a3a2-f30cafadc81e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-03360f0f-d129-48ee-a3a2-f30cafadc81e img.shogun-image {
  width: 100%;
  
  
  

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




.s-03360f0f-d129-48ee-a3a2-f30cafadc81e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-03360f0f-d129-48ee-a3a2-f30cafadc81e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03360f0f-d129-48ee-a3a2-f30cafadc81e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03360f0f-d129-48ee-a3a2-f30cafadc81e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-03360f0f-d129-48ee-a3a2-f30cafadc81e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-03360f0f-d129-48ee-a3a2-f30cafadc81e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-03360f0f-d129-48ee-a3a2-f30cafadc81e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-03360f0f-d129-48ee-a3a2-f30cafadc81e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-03360f0f-d129-48ee-a3a2-f30cafadc81e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-03360f0f-d129-48ee-a3a2-f30cafadc81e img.shogun-image {
  width: 100%;
  
  
  

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




.s-03360f0f-d129-48ee-a3a2-f30cafadc81e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-03360f0f-d129-48ee-a3a2-f30cafadc81e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03360f0f-d129-48ee-a3a2-f30cafadc81e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03360f0f-d129-48ee-a3a2-f30cafadc81e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-03360f0f-d129-48ee-a3a2-f30cafadc81e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-03360f0f-d129-48ee-a3a2-f30cafadc81e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-03360f0f-d129-48ee-a3a2-f30cafadc81e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-03360f0f-d129-48ee-a3a2-f30cafadc81e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-03360f0f-d129-48ee-a3a2-f30cafadc81e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-03360f0f-d129-48ee-a3a2-f30cafadc81e img.shogun-image {
  width: 100%;
  
  
  

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




.s-03360f0f-d129-48ee-a3a2-f30cafadc81e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-03360f0f-d129-48ee-a3a2-f30cafadc81e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03360f0f-d129-48ee-a3a2-f30cafadc81e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03360f0f-d129-48ee-a3a2-f30cafadc81e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-03360f0f-d129-48ee-a3a2-f30cafadc81e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-03360f0f-d129-48ee-a3a2-f30cafadc81e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-03360f0f-d129-48ee-a3a2-f30cafadc81e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-03360f0f-d129-48ee-a3a2-f30cafadc81e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-03360f0f-d129-48ee-a3a2-f30cafadc81e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-03360f0f-d129-48ee-a3a2-f30cafadc81e img.shogun-image {
  width: 100%;
  
  
  

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




.s-03360f0f-d129-48ee-a3a2-f30cafadc81e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-03360f0f-d129-48ee-a3a2-f30cafadc81e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03360f0f-d129-48ee-a3a2-f30cafadc81e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03360f0f-d129-48ee-a3a2-f30cafadc81e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-2672703b-d5da-4d78-9b02-76b629b44b57 {
  margin-top: 25px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 50px;
text-align: center;
}
@media (min-width: 1200px){#s-2672703b-d5da-4d78-9b02-76b629b44b57 {
  display: none;
}
#s-2672703b-d5da-4d78-9b02-76b629b44b57, #wrap-s-2672703b-d5da-4d78-9b02-76b629b44b57, #wrap-content-s-2672703b-d5da-4d78-9b02-76b629b44b57 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2672703b-d5da-4d78-9b02-76b629b44b57 {
  display: none;
}
#s-2672703b-d5da-4d78-9b02-76b629b44b57, #wrap-s-2672703b-d5da-4d78-9b02-76b629b44b57, #wrap-content-s-2672703b-d5da-4d78-9b02-76b629b44b57 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2672703b-d5da-4d78-9b02-76b629b44b57 {
  display: none;
}
#s-2672703b-d5da-4d78-9b02-76b629b44b57, #wrap-s-2672703b-d5da-4d78-9b02-76b629b44b57, #wrap-content-s-2672703b-d5da-4d78-9b02-76b629b44b57 { display: none !important; }}
#s-2672703b-d5da-4d78-9b02-76b629b44b57 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2672703b-d5da-4d78-9b02-76b629b44b57-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2672703b-d5da-4d78-9b02-76b629b44b57 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-2672703b-d5da-4d78-9b02-76b629b44b57 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2672703b-d5da-4d78-9b02-76b629b44b57 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2672703b-d5da-4d78-9b02-76b629b44b57 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-2672703b-d5da-4d78-9b02-76b629b44b57 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2672703b-d5da-4d78-9b02-76b629b44b57.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2672703b-d5da-4d78-9b02-76b629b44b57.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2672703b-d5da-4d78-9b02-76b629b44b57.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-2672703b-d5da-4d78-9b02-76b629b44b57 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2672703b-d5da-4d78-9b02-76b629b44b57-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2672703b-d5da-4d78-9b02-76b629b44b57 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2672703b-d5da-4d78-9b02-76b629b44b57 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2672703b-d5da-4d78-9b02-76b629b44b57 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2672703b-d5da-4d78-9b02-76b629b44b57 img.shogun-image {
  width: 100%;
  
  
  

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




.s-2672703b-d5da-4d78-9b02-76b629b44b57 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2672703b-d5da-4d78-9b02-76b629b44b57.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2672703b-d5da-4d78-9b02-76b629b44b57.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2672703b-d5da-4d78-9b02-76b629b44b57.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-2672703b-d5da-4d78-9b02-76b629b44b57 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2672703b-d5da-4d78-9b02-76b629b44b57-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2672703b-d5da-4d78-9b02-76b629b44b57 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2672703b-d5da-4d78-9b02-76b629b44b57 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2672703b-d5da-4d78-9b02-76b629b44b57 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2672703b-d5da-4d78-9b02-76b629b44b57 img.shogun-image {
  width: 100%;
  
  
  

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




.s-2672703b-d5da-4d78-9b02-76b629b44b57 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2672703b-d5da-4d78-9b02-76b629b44b57.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2672703b-d5da-4d78-9b02-76b629b44b57.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2672703b-d5da-4d78-9b02-76b629b44b57.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-2672703b-d5da-4d78-9b02-76b629b44b57 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2672703b-d5da-4d78-9b02-76b629b44b57-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2672703b-d5da-4d78-9b02-76b629b44b57 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2672703b-d5da-4d78-9b02-76b629b44b57 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2672703b-d5da-4d78-9b02-76b629b44b57 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2672703b-d5da-4d78-9b02-76b629b44b57 img.shogun-image {
  width: 100%;
  
  
  

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




.s-2672703b-d5da-4d78-9b02-76b629b44b57 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2672703b-d5da-4d78-9b02-76b629b44b57.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2672703b-d5da-4d78-9b02-76b629b44b57.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2672703b-d5da-4d78-9b02-76b629b44b57.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-2672703b-d5da-4d78-9b02-76b629b44b57 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2672703b-d5da-4d78-9b02-76b629b44b57-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2672703b-d5da-4d78-9b02-76b629b44b57 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2672703b-d5da-4d78-9b02-76b629b44b57 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2672703b-d5da-4d78-9b02-76b629b44b57 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2672703b-d5da-4d78-9b02-76b629b44b57 img.shogun-image {
  width: 100%;
  
  
  

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




.s-2672703b-d5da-4d78-9b02-76b629b44b57 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2672703b-d5da-4d78-9b02-76b629b44b57.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2672703b-d5da-4d78-9b02-76b629b44b57.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2672703b-d5da-4d78-9b02-76b629b44b57.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-efc78250-5292-4510-946f-f7e355ba2a3b {
  margin-top: 25px;
margin-left: 10%;
margin-bottom: 25px;
margin-right: 10%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 25px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-efc78250-5292-4510-946f-f7e355ba2a3b {
  margin-left: 15%;
margin-right: 15%;
}
}







#s-efc78250-5292-4510-946f-f7e355ba2a3b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-efc78250-5292-4510-946f-f7e355ba2a3b.shg-box.shg-c {
  justify-content: center;
}

#s-a0d7a852-40fa-4548-83b5-b40c0d4468d1 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
}

#s-a0d7a852-40fa-4548-83b5-b40c0d4468d1 .shg-proportional-font-size,
#s-a0d7a852-40fa-4548-83b5-b40c0d4468d1 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-2cb13d7d-8c8a-4e99-b6c8-1be514aedefc {
  margin-top: -10px;
margin-left: auto;
margin-bottom: -16px;
margin-right: auto;
}

#s-2cb13d7d-8c8a-4e99-b6c8-1be514aedefc .shg-proportional-font-size,
#s-2cb13d7d-8c8a-4e99-b6c8-1be514aedefc .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-9d7ddfda-d4c9-428a-9bb4-3f5cf67f0faa {
  margin-left: 0%;
margin-right: 5px;
}
@media (max-width: 767px){#s-9d7ddfda-d4c9-428a-9bb4-3f5cf67f0faa {
  margin-right: 0px;
padding-left: 4%;
padding-right: 4%;
}
}
#s-9d7ddfda-d4c9-428a-9bb4-3f5cf67f0faa .shg-proportional-font-size,
#s-9d7ddfda-d4c9-428a-9bb4-3f5cf67f0faa .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-1110d533-2015-4770-9576-04a559da4366 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 10px;
padding-left: 14px;
padding-bottom: 10px;
padding-right: 14px;
border-radius: 7px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-1110d533-2015-4770-9576-04a559da4366:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-1110d533-2015-4770-9576-04a559da4366:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-1110d533-2015-4770-9576-04a559da4366 {
  margin-top: 0px;
margin-bottom: 30px;
padding-left: 14px;
padding-right: 14px;
}
}

  #s-1110d533-2015-4770-9576-04a559da4366-root {
    text-align: center;
  }


#s-1110d533-2015-4770-9576-04a559da4366.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-1110d533-2015-4770-9576-04a559da4366-root {
    text-align: center;
  }


#s-1110d533-2015-4770-9576-04a559da4366.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-1110d533-2015-4770-9576-04a559da4366-root {
    text-align: center;
  }


#s-1110d533-2015-4770-9576-04a559da4366.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-1110d533-2015-4770-9576-04a559da4366-root {
    text-align: center;
  }


#s-1110d533-2015-4770-9576-04a559da4366.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-1110d533-2015-4770-9576-04a559da4366-root {
    text-align: center;
  }


#s-1110d533-2015-4770-9576-04a559da4366.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-d307138b-3c85-42b1-b674-2b61a42b8f84 {
  background-size: cover;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
background-position: center center;
}








#s-d307138b-3c85-42b1-b674-2b61a42b8f84 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d307138b-3c85-42b1-b674-2b61a42b8f84.shg-box.shg-c {
  justify-content: center;
}

#s-9c78083b-bb93-4597-bfd2-234b905c3910 {
  margin-top: 0px;
margin-left: 15%;
margin-bottom: 0px;
margin-right: 15%;
padding-top: 0px;
}
@media (min-width: 1200px){#s-9c78083b-bb93-4597-bfd2-234b905c3910 {
  display: none;
}
#s-9c78083b-bb93-4597-bfd2-234b905c3910, #wrap-s-9c78083b-bb93-4597-bfd2-234b905c3910, #wrap-content-s-9c78083b-bb93-4597-bfd2-234b905c3910 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9c78083b-bb93-4597-bfd2-234b905c3910 {
  display: none;
}
#s-9c78083b-bb93-4597-bfd2-234b905c3910, #wrap-s-9c78083b-bb93-4597-bfd2-234b905c3910, #wrap-content-s-9c78083b-bb93-4597-bfd2-234b905c3910 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9c78083b-bb93-4597-bfd2-234b905c3910 {
  display: none;
}
#s-9c78083b-bb93-4597-bfd2-234b905c3910, #wrap-s-9c78083b-bb93-4597-bfd2-234b905c3910, #wrap-content-s-9c78083b-bb93-4597-bfd2-234b905c3910 { display: none !important; }}@media (max-width: 767px){#s-9c78083b-bb93-4597-bfd2-234b905c3910 {
  margin-left: 4%;
margin-right: 4%;
display: none;
}
#s-9c78083b-bb93-4597-bfd2-234b905c3910, #wrap-s-9c78083b-bb93-4597-bfd2-234b905c3910, #wrap-content-s-9c78083b-bb93-4597-bfd2-234b905c3910 { display: none !important; }}
#s-2ae9eff8-3da6-4635-8a9c-2b7166ed080f {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-8c8eebb0-7c9b-4f00-9692-da0675e48ac5 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-8c8eebb0-7c9b-4f00-9692-da0675e48ac5 {
  margin-right: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8c8eebb0-7c9b-4f00-9692-da0675e48ac5 {
  margin-left: 4%;
margin-right: 4%;
}
}@media (max-width: 767px){#s-8c8eebb0-7c9b-4f00-9692-da0675e48ac5 {
  display: none;
}
#s-8c8eebb0-7c9b-4f00-9692-da0675e48ac5, #wrap-s-8c8eebb0-7c9b-4f00-9692-da0675e48ac5, #wrap-content-s-8c8eebb0-7c9b-4f00-9692-da0675e48ac5 { display: none !important; }}







#s-8c8eebb0-7c9b-4f00-9692-da0675e48ac5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8c8eebb0-7c9b-4f00-9692-da0675e48ac5.shg-box.shg-c {
  justify-content: center;
}

#s-9e75d67a-3ddd-44bd-ba32-dce8adf26668 {
  margin-top: 25px;
margin-left: 15%;
margin-bottom: 0px;
margin-right: 15%;
}
@media (min-width: 768px) and (max-width: 991px){#s-9e75d67a-3ddd-44bd-ba32-dce8adf26668 {
  margin-left: 0%;
margin-right: 0%;
}
}@media (max-width: 767px){#s-9e75d67a-3ddd-44bd-ba32-dce8adf26668 {
  margin-left: 6%;
margin-right: 6%;
}
}
@media (min-width: 0px) {
[id="s-9e75d67a-3ddd-44bd-ba32-dce8adf26668"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9e75d67a-3ddd-44bd-ba32-dce8adf26668"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9e75d67a-3ddd-44bd-ba32-dce8adf26668"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9e75d67a-3ddd-44bd-ba32-dce8adf26668"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-1752ef47-4374-4116-b88f-ada762a68c4e {
  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-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}
@media (max-width: 767px){#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 {
  margin-top: -10px;
margin-bottom: 0px;
}
}

.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 {
  max-width:  100%;
}

.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 .shg-image-zoom,
.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 {
  max-width:  100%;
}

.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 .shg-image-zoom,
.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 img.shogun-image {
  max-width: 500px !important;
  
}

.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 {
  max-width:  100%;
}

.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 .shg-image-zoom,
.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 img.shogun-image {
  max-width: 450px !important;
  
}

.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 {
  max-width:  100%;
}

.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 .shg-image-zoom,
.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 img.shogun-image {
  max-width: 350px !important;
  
}

.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 {
  max-width:  100%;
}

.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 .shg-image-zoom,
.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-197843d0-6ccf-4fce-a1ac-6e7b2b1aef54 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-f3d62887-43e3-4c48-af1d-785b0d577fa2 {
  margin-left: auto;
margin-right: auto;
}

#s-fac6c183-c6b9-43c1-8dc9-3a2e2bf24eaa {
  margin-left: 10%;
margin-right: 10%;
padding-left: 10%;
padding-right: 10%;
}
@media (min-width: 1200px){#s-fac6c183-c6b9-43c1-8dc9-3a2e2bf24eaa {
  display: none;
}
#s-fac6c183-c6b9-43c1-8dc9-3a2e2bf24eaa, #wrap-s-fac6c183-c6b9-43c1-8dc9-3a2e2bf24eaa, #wrap-content-s-fac6c183-c6b9-43c1-8dc9-3a2e2bf24eaa { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fac6c183-c6b9-43c1-8dc9-3a2e2bf24eaa {
  display: none;
}
#s-fac6c183-c6b9-43c1-8dc9-3a2e2bf24eaa, #wrap-s-fac6c183-c6b9-43c1-8dc9-3a2e2bf24eaa, #wrap-content-s-fac6c183-c6b9-43c1-8dc9-3a2e2bf24eaa { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-fac6c183-c6b9-43c1-8dc9-3a2e2bf24eaa {
  display: none;
}
#s-fac6c183-c6b9-43c1-8dc9-3a2e2bf24eaa, #wrap-s-fac6c183-c6b9-43c1-8dc9-3a2e2bf24eaa, #wrap-content-s-fac6c183-c6b9-43c1-8dc9-3a2e2bf24eaa { display: none !important; }}@media (max-width: 767px){#s-fac6c183-c6b9-43c1-8dc9-3a2e2bf24eaa {
  
}
}
@media (min-width: 0px) {
[id="s-fac6c183-c6b9-43c1-8dc9-3a2e2bf24eaa"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.5px);
}

}

@media (min-width: 768px) {
[id="s-fac6c183-c6b9-43c1-8dc9-3a2e2bf24eaa"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.5px);
}

}

@media (min-width: 992px) {
[id="s-fac6c183-c6b9-43c1-8dc9-3a2e2bf24eaa"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.5px);
}

}

@media (min-width: 1200px) {
[id="s-fac6c183-c6b9-43c1-8dc9-3a2e2bf24eaa"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.5px);
}

}

#s-2d21cd06-c805-4200-b45e-caad99dd113e {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px){#s-2d21cd06-c805-4200-b45e-caad99dd113e {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-2d21cd06-c805-4200-b45e-caad99dd113e {
  
}
}@media (max-width: 767px){#s-2d21cd06-c805-4200-b45e-caad99dd113e {
  
}
}
#s-2d21cd06-c805-4200-b45e-caad99dd113e .shg-proportional-font-size,
#s-2d21cd06-c805-4200-b45e-caad99dd113e .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-e219f845-d5d7-4337-98e7-830c1eb9f956 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px){#s-e219f845-d5d7-4337-98e7-830c1eb9f956 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-e219f845-d5d7-4337-98e7-830c1eb9f956 {
  
}
}@media (max-width: 767px){#s-e219f845-d5d7-4337-98e7-830c1eb9f956 {
  
}
}
#s-e219f845-d5d7-4337-98e7-830c1eb9f956 .shg-proportional-font-size,
#s-e219f845-d5d7-4337-98e7-830c1eb9f956 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-5d641426-081c-4dc5-ac8a-0b81fbbd373b {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-5d641426-081c-4dc5-ac8a-0b81fbbd373b {
  margin-top: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5d641426-081c-4dc5-ac8a-0b81fbbd373b {
  margin-top: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-5d641426-081c-4dc5-ac8a-0b81fbbd373b {
  margin-left: 0%;
margin-right: 0%;
}
}@media (max-width: 767px){#s-5d641426-081c-4dc5-ac8a-0b81fbbd373b {
  margin-top: 0px;
}
}







#s-5d641426-081c-4dc5-ac8a-0b81fbbd373b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5d641426-081c-4dc5-ac8a-0b81fbbd373b.shg-box.shg-c {
  justify-content: center;
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  
  
  text-transform: none;
  
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

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

#s-4648817d-bdef-4d41-8cd9-c7c811b15029 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-4648817d-bdef-4d41-8cd9-c7c811b15029 .shogun-heading-component h1 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-4648817d-bdef-4d41-8cd9-c7c811b15029 .shogun-heading-component h1 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}


}
#s-adf72158-bd6e-4a64-8948-666e36c7e63a {
  margin-left: -8%;
margin-right: -8%;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 1200px){#s-adf72158-bd6e-4a64-8948-666e36c7e63a {
  margin-left: 0%;
margin-right: 0%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-adf72158-bd6e-4a64-8948-666e36c7e63a {
  margin-left: 0%;
margin-right: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-adf72158-bd6e-4a64-8948-666e36c7e63a {
  margin-left: 0%;
margin-right: 0%;
}
}@media (max-width: 767px){#s-adf72158-bd6e-4a64-8948-666e36c7e63a {
  display: none;
}
#s-adf72158-bd6e-4a64-8948-666e36c7e63a, #wrap-s-adf72158-bd6e-4a64-8948-666e36c7e63a, #wrap-content-s-adf72158-bd6e-4a64-8948-666e36c7e63a { display: none !important; }}
#s-adf72158-bd6e-4a64-8948-666e36c7e63a .shogun-heading-component h1 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-587e64a6-140f-4953-9a58-2762ee46816a {
  margin-left: -8%;
margin-right: -8%;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 1200px){#s-587e64a6-140f-4953-9a58-2762ee46816a {
  display: none;
}
#s-587e64a6-140f-4953-9a58-2762ee46816a, #wrap-s-587e64a6-140f-4953-9a58-2762ee46816a, #wrap-content-s-587e64a6-140f-4953-9a58-2762ee46816a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-587e64a6-140f-4953-9a58-2762ee46816a {
  display: none;
}
#s-587e64a6-140f-4953-9a58-2762ee46816a, #wrap-s-587e64a6-140f-4953-9a58-2762ee46816a, #wrap-content-s-587e64a6-140f-4953-9a58-2762ee46816a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-587e64a6-140f-4953-9a58-2762ee46816a {
  margin-left: 0%;
margin-right: 0%;
display: none;
}
#s-587e64a6-140f-4953-9a58-2762ee46816a, #wrap-s-587e64a6-140f-4953-9a58-2762ee46816a, #wrap-content-s-587e64a6-140f-4953-9a58-2762ee46816a { display: none !important; }}@media (max-width: 767px){#s-587e64a6-140f-4953-9a58-2762ee46816a {
  display: none;
}
#s-587e64a6-140f-4953-9a58-2762ee46816a, #wrap-s-587e64a6-140f-4953-9a58-2762ee46816a, #wrap-content-s-587e64a6-140f-4953-9a58-2762ee46816a { display: none !important; }}
#s-587e64a6-140f-4953-9a58-2762ee46816a .shogun-heading-component h1 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-da962106-03ee-4a37-9c45-1c3fb1d42cbb {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-da962106-03ee-4a37-9c45-1c3fb1d42cbb {
  display: none;
}
#s-da962106-03ee-4a37-9c45-1c3fb1d42cbb, #wrap-s-da962106-03ee-4a37-9c45-1c3fb1d42cbb, #wrap-content-s-da962106-03ee-4a37-9c45-1c3fb1d42cbb { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-da962106-03ee-4a37-9c45-1c3fb1d42cbb {
  display: none;
}
#s-da962106-03ee-4a37-9c45-1c3fb1d42cbb, #wrap-s-da962106-03ee-4a37-9c45-1c3fb1d42cbb, #wrap-content-s-da962106-03ee-4a37-9c45-1c3fb1d42cbb { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-da962106-03ee-4a37-9c45-1c3fb1d42cbb {
  display: none;
}
#s-da962106-03ee-4a37-9c45-1c3fb1d42cbb, #wrap-s-da962106-03ee-4a37-9c45-1c3fb1d42cbb, #wrap-content-s-da962106-03ee-4a37-9c45-1c3fb1d42cbb { display: none !important; }}
#s-da962106-03ee-4a37-9c45-1c3fb1d42cbb .shg-proportional-font-size,
#s-da962106-03ee-4a37-9c45-1c3fb1d42cbb .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-757d4d1c-d65c-46b4-a685-ca4708215104 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}
@media (max-width: 767px){#s-757d4d1c-d65c-46b4-a685-ca4708215104 {
  margin-left: -8%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
}
}
#s-59144327-230a-4f6c-92d6-3a115cc40e07 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-e660fddc-9b0a-47d5-ae5a-89297cfebab3 {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-e660fddc-9b0a-47d5-ae5a-89297cfebab3 {
  display: none;
}
#s-e660fddc-9b0a-47d5-ae5a-89297cfebab3, #wrap-s-e660fddc-9b0a-47d5-ae5a-89297cfebab3, #wrap-content-s-e660fddc-9b0a-47d5-ae5a-89297cfebab3 { display: none !important; }}
#s-1f08fb41-b4cf-4198-a8c1-8731ddd7d46d {
  margin-left: 0%;
margin-right: 20%;
padding-right: 8%;
}
@media (max-width: 767px){#s-1f08fb41-b4cf-4198-a8c1-8731ddd7d46d {
  display: none;
}
#s-1f08fb41-b4cf-4198-a8c1-8731ddd7d46d, #wrap-s-1f08fb41-b4cf-4198-a8c1-8731ddd7d46d, #wrap-content-s-1f08fb41-b4cf-4198-a8c1-8731ddd7d46d { display: none !important; }}
@media (min-width: 0px) {
[id="s-1f08fb41-b4cf-4198-a8c1-8731ddd7d46d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-1f08fb41-b4cf-4198-a8c1-8731ddd7d46d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-1f08fb41-b4cf-4198-a8c1-8731ddd7d46d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-1f08fb41-b4cf-4198-a8c1-8731ddd7d46d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-1794bfbe-5bdb-47ed-ae60-34ee49929f22 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px){#s-1794bfbe-5bdb-47ed-ae60-34ee49929f22 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-1794bfbe-5bdb-47ed-ae60-34ee49929f22 {
  
}
}@media (max-width: 767px){#s-1794bfbe-5bdb-47ed-ae60-34ee49929f22 {
  
}
}
#s-1794bfbe-5bdb-47ed-ae60-34ee49929f22 .shg-proportional-font-size,
#s-1794bfbe-5bdb-47ed-ae60-34ee49929f22 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-3c891899-8be3-4f71-a18d-c8fa80423c0e {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px){#s-3c891899-8be3-4f71-a18d-c8fa80423c0e {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-3c891899-8be3-4f71-a18d-c8fa80423c0e {
  
}
}@media (max-width: 767px){#s-3c891899-8be3-4f71-a18d-c8fa80423c0e {
  
}
}
#s-3c891899-8be3-4f71-a18d-c8fa80423c0e .shg-proportional-font-size,
#s-3c891899-8be3-4f71-a18d-c8fa80423c0e .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-19d15448-09c9-4c14-986b-4d8c009f5901 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px){#s-19d15448-09c9-4c14-986b-4d8c009f5901 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-19d15448-09c9-4c14-986b-4d8c009f5901 {
  margin-left: 0%;
margin-right: 0%;
}
}@media (max-width: 767px){#s-19d15448-09c9-4c14-986b-4d8c009f5901 {
  display: none;
}
#s-19d15448-09c9-4c14-986b-4d8c009f5901, #wrap-s-19d15448-09c9-4c14-986b-4d8c009f5901, #wrap-content-s-19d15448-09c9-4c14-986b-4d8c009f5901 { display: none !important; }}
#s-19d15448-09c9-4c14-986b-4d8c009f5901 .shg-proportional-font-size,
#s-19d15448-09c9-4c14-986b-4d8c009f5901 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-64d259e2-eb91-4e09-8473-cc283bde3421 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-64d259e2-eb91-4e09-8473-cc283bde3421 {
  display: none;
}
#s-64d259e2-eb91-4e09-8473-cc283bde3421, #wrap-s-64d259e2-eb91-4e09-8473-cc283bde3421, #wrap-content-s-64d259e2-eb91-4e09-8473-cc283bde3421 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-64d259e2-eb91-4e09-8473-cc283bde3421 {
  display: none;
}
#s-64d259e2-eb91-4e09-8473-cc283bde3421, #wrap-s-64d259e2-eb91-4e09-8473-cc283bde3421, #wrap-content-s-64d259e2-eb91-4e09-8473-cc283bde3421 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-64d259e2-eb91-4e09-8473-cc283bde3421 {
  margin-left: 0%;
margin-right: 0%;
display: none;
}
#s-64d259e2-eb91-4e09-8473-cc283bde3421, #wrap-s-64d259e2-eb91-4e09-8473-cc283bde3421, #wrap-content-s-64d259e2-eb91-4e09-8473-cc283bde3421 { display: none !important; }}@media (max-width: 767px){#s-64d259e2-eb91-4e09-8473-cc283bde3421 {
  
}
}
#s-64d259e2-eb91-4e09-8473-cc283bde3421 .shg-proportional-font-size,
#s-64d259e2-eb91-4e09-8473-cc283bde3421 .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-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-6ad21f33-5845-4e38-a7b0-0843cee5d071 {
  margin-top: 20px;
padding-top: 10px;
padding-left: 100px;
padding-bottom: 10px;
padding-right: 100px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: left;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-6ad21f33-5845-4e38-a7b0-0843cee5d071: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-6ad21f33-5845-4e38-a7b0-0843cee5d071:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYmY0NzBiYTAtYjhkZi00Y2UxLTgxNjAtY2U5NzgzOTU1YWE3IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiZjQ3MGJhMC1iOGRmLTRjZTEtODE2MC1jZTk3ODM5NTVhYTcpIi8+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;}@media (min-width: 1200px){#s-6ad21f33-5845-4e38-a7b0-0843cee5d071 {
  margin-top: 1px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6ad21f33-5845-4e38-a7b0-0843cee5d071 {
  margin-top: 5px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-6ad21f33-5845-4e38-a7b0-0843cee5d071 {
  margin-top: 0px;
margin-right: 0%;
padding-left: 28px;
padding-right: 28px;
}
}@media (max-width: 767px){#s-6ad21f33-5845-4e38-a7b0-0843cee5d071 {
  display: none;
}
#s-6ad21f33-5845-4e38-a7b0-0843cee5d071, #wrap-s-6ad21f33-5845-4e38-a7b0-0843cee5d071, #wrap-content-s-6ad21f33-5845-4e38-a7b0-0843cee5d071 { display: none !important; }}

  #s-6ad21f33-5845-4e38-a7b0-0843cee5d071-atc-btn-wrapper {
    text-align: left;
  }


#s-6ad21f33-5845-4e38-a7b0-0843cee5d071 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6ad21f33-5845-4e38-a7b0-0843cee5d071.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6ad21f33-5845-4e38-a7b0-0843cee5d071.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-6ad21f33-5845-4e38-a7b0-0843cee5d071.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-6ad21f33-5845-4e38-a7b0-0843cee5d071-atc-btn-wrapper {
    text-align: left;
  }


#s-6ad21f33-5845-4e38-a7b0-0843cee5d071 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6ad21f33-5845-4e38-a7b0-0843cee5d071.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6ad21f33-5845-4e38-a7b0-0843cee5d071.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-6ad21f33-5845-4e38-a7b0-0843cee5d071.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-6ad21f33-5845-4e38-a7b0-0843cee5d071-atc-btn-wrapper {
    text-align: left;
  }


#s-6ad21f33-5845-4e38-a7b0-0843cee5d071 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6ad21f33-5845-4e38-a7b0-0843cee5d071.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6ad21f33-5845-4e38-a7b0-0843cee5d071.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-6ad21f33-5845-4e38-a7b0-0843cee5d071.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-6ad21f33-5845-4e38-a7b0-0843cee5d071-atc-btn-wrapper {
    text-align: left;
  }


#s-6ad21f33-5845-4e38-a7b0-0843cee5d071 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6ad21f33-5845-4e38-a7b0-0843cee5d071.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6ad21f33-5845-4e38-a7b0-0843cee5d071.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-6ad21f33-5845-4e38-a7b0-0843cee5d071.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-6ad21f33-5845-4e38-a7b0-0843cee5d071-atc-btn-wrapper {
    text-align: left;
  }


#s-6ad21f33-5845-4e38-a7b0-0843cee5d071 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6ad21f33-5845-4e38-a7b0-0843cee5d071.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6ad21f33-5845-4e38-a7b0-0843cee5d071.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-6ad21f33-5845-4e38-a7b0-0843cee5d071.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-0dc1c485-fcc2-4c15-a53a-3d89e1d3f37d {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-0dc1c485-fcc2-4c15-a53a-3d89e1d3f37d {
  display: none;
}
#s-0dc1c485-fcc2-4c15-a53a-3d89e1d3f37d, #wrap-s-0dc1c485-fcc2-4c15-a53a-3d89e1d3f37d, #wrap-content-s-0dc1c485-fcc2-4c15-a53a-3d89e1d3f37d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0dc1c485-fcc2-4c15-a53a-3d89e1d3f37d {
  display: none;
}
#s-0dc1c485-fcc2-4c15-a53a-3d89e1d3f37d, #wrap-s-0dc1c485-fcc2-4c15-a53a-3d89e1d3f37d, #wrap-content-s-0dc1c485-fcc2-4c15-a53a-3d89e1d3f37d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0dc1c485-fcc2-4c15-a53a-3d89e1d3f37d {
  display: none;
}
#s-0dc1c485-fcc2-4c15-a53a-3d89e1d3f37d, #wrap-s-0dc1c485-fcc2-4c15-a53a-3d89e1d3f37d, #wrap-content-s-0dc1c485-fcc2-4c15-a53a-3d89e1d3f37d { display: none !important; }}@media (max-width: 767px){#s-0dc1c485-fcc2-4c15-a53a-3d89e1d3f37d {
  
}
}
#s-0dc1c485-fcc2-4c15-a53a-3d89e1d3f37d .shg-proportional-font-size,
#s-0dc1c485-fcc2-4c15-a53a-3d89e1d3f37d .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-608a811b-e4bb-4890-bb40-eb1003c37b44 {
  margin-top: 4px;
padding-top: 10px;
padding-left: 100px;
padding-bottom: 10px;
padding-right: 100px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-608a811b-e4bb-4890-bb40-eb1003c37b44: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-608a811b-e4bb-4890-bb40-eb1003c37b44:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZWU5N2FmNzItYjQyYy00MDJiLWEyOWEtNjYyMjlkNTM4MTVlIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNlZTk3YWY3Mi1iNDJjLTQwMmItYTI5YS02NjIyOWQ1MzgxNWUpIi8+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;}@media (min-width: 1200px){#s-608a811b-e4bb-4890-bb40-eb1003c37b44 {
  display: none;
}
#s-608a811b-e4bb-4890-bb40-eb1003c37b44, #wrap-s-608a811b-e4bb-4890-bb40-eb1003c37b44, #wrap-content-s-608a811b-e4bb-4890-bb40-eb1003c37b44 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-608a811b-e4bb-4890-bb40-eb1003c37b44 {
  display: none;
}
#s-608a811b-e4bb-4890-bb40-eb1003c37b44, #wrap-s-608a811b-e4bb-4890-bb40-eb1003c37b44, #wrap-content-s-608a811b-e4bb-4890-bb40-eb1003c37b44 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-608a811b-e4bb-4890-bb40-eb1003c37b44 {
  display: none;
}
#s-608a811b-e4bb-4890-bb40-eb1003c37b44, #wrap-s-608a811b-e4bb-4890-bb40-eb1003c37b44, #wrap-content-s-608a811b-e4bb-4890-bb40-eb1003c37b44 { display: none !important; }}@media (max-width: 767px){#s-608a811b-e4bb-4890-bb40-eb1003c37b44 {
  
}
}

  #s-608a811b-e4bb-4890-bb40-eb1003c37b44-atc-btn-wrapper {
    text-align: center;
  }


#s-608a811b-e4bb-4890-bb40-eb1003c37b44 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-608a811b-e4bb-4890-bb40-eb1003c37b44.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-608a811b-e4bb-4890-bb40-eb1003c37b44.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-608a811b-e4bb-4890-bb40-eb1003c37b44.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-608a811b-e4bb-4890-bb40-eb1003c37b44-atc-btn-wrapper {
    text-align: center;
  }


#s-608a811b-e4bb-4890-bb40-eb1003c37b44 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-608a811b-e4bb-4890-bb40-eb1003c37b44.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-608a811b-e4bb-4890-bb40-eb1003c37b44.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-608a811b-e4bb-4890-bb40-eb1003c37b44.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-608a811b-e4bb-4890-bb40-eb1003c37b44-atc-btn-wrapper {
    text-align: center;
  }


#s-608a811b-e4bb-4890-bb40-eb1003c37b44 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-608a811b-e4bb-4890-bb40-eb1003c37b44.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-608a811b-e4bb-4890-bb40-eb1003c37b44.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-608a811b-e4bb-4890-bb40-eb1003c37b44.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-608a811b-e4bb-4890-bb40-eb1003c37b44-atc-btn-wrapper {
    text-align: center;
  }


#s-608a811b-e4bb-4890-bb40-eb1003c37b44 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-608a811b-e4bb-4890-bb40-eb1003c37b44.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-608a811b-e4bb-4890-bb40-eb1003c37b44.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-608a811b-e4bb-4890-bb40-eb1003c37b44.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-608a811b-e4bb-4890-bb40-eb1003c37b44-atc-btn-wrapper {
    text-align: center;
  }


#s-608a811b-e4bb-4890-bb40-eb1003c37b44 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-608a811b-e4bb-4890-bb40-eb1003c37b44.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-608a811b-e4bb-4890-bb40-eb1003c37b44.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-608a811b-e4bb-4890-bb40-eb1003c37b44.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-a80265ce-2743-4813-a458-b5bba5cb7cdf {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-a80265ce-2743-4813-a458-b5bba5cb7cdf {
  display: none;
}
#s-a80265ce-2743-4813-a458-b5bba5cb7cdf, #wrap-s-a80265ce-2743-4813-a458-b5bba5cb7cdf, #wrap-content-s-a80265ce-2743-4813-a458-b5bba5cb7cdf { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a80265ce-2743-4813-a458-b5bba5cb7cdf {
  display: none;
}
#s-a80265ce-2743-4813-a458-b5bba5cb7cdf, #wrap-s-a80265ce-2743-4813-a458-b5bba5cb7cdf, #wrap-content-s-a80265ce-2743-4813-a458-b5bba5cb7cdf { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a80265ce-2743-4813-a458-b5bba5cb7cdf {
  display: none;
}
#s-a80265ce-2743-4813-a458-b5bba5cb7cdf, #wrap-s-a80265ce-2743-4813-a458-b5bba5cb7cdf, #wrap-content-s-a80265ce-2743-4813-a458-b5bba5cb7cdf { display: none !important; }}@media (max-width: 767px){#s-a80265ce-2743-4813-a458-b5bba5cb7cdf {
  margin-top: 25px;
margin-bottom: 1px;
}
}
#s-49eb6b01-8054-49e1-aad8-2639e94ed20f {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-49eb6b01-8054-49e1-aad8-2639e94ed20f {
  display: none;
}
#s-49eb6b01-8054-49e1-aad8-2639e94ed20f, #wrap-s-49eb6b01-8054-49e1-aad8-2639e94ed20f, #wrap-content-s-49eb6b01-8054-49e1-aad8-2639e94ed20f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-49eb6b01-8054-49e1-aad8-2639e94ed20f {
  margin-right: 0%;
display: none;
}
#s-49eb6b01-8054-49e1-aad8-2639e94ed20f, #wrap-s-49eb6b01-8054-49e1-aad8-2639e94ed20f, #wrap-content-s-49eb6b01-8054-49e1-aad8-2639e94ed20f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-49eb6b01-8054-49e1-aad8-2639e94ed20f {
  margin-left: 0%;
margin-right: -4%;
display: none;
}
#s-49eb6b01-8054-49e1-aad8-2639e94ed20f, #wrap-s-49eb6b01-8054-49e1-aad8-2639e94ed20f, #wrap-content-s-49eb6b01-8054-49e1-aad8-2639e94ed20f { display: none !important; }}







#s-49eb6b01-8054-49e1-aad8-2639e94ed20f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-49eb6b01-8054-49e1-aad8-2639e94ed20f.shg-box.shg-c {
  justify-content: center;
}

#s-956486d1-3912-47f3-a089-5f792ca917ad {
  margin-top: 25px;
margin-left: 15%;
margin-bottom: 0px;
margin-right: 15%;
}
@media (max-width: 767px){#s-956486d1-3912-47f3-a089-5f792ca917ad {
  margin-left: 4%;
margin-right: 4%;
}
}
@media (min-width: 0px) {
[id="s-956486d1-3912-47f3-a089-5f792ca917ad"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-956486d1-3912-47f3-a089-5f792ca917ad"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-956486d1-3912-47f3-a089-5f792ca917ad"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-956486d1-3912-47f3-a089-5f792ca917ad"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-b258abcd-8fcc-49e9-98ba-766429828e6d {
  margin-left: auto;
margin-right: auto;
}

#s-7b8b91b5-da64-45b9-99b6-69e9e3d32c12 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-7b8b91b5-da64-45b9-99b6-69e9e3d32c12 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-7b8b91b5-da64-45b9-99b6-69e9e3d32c12 .shogun-heading-component h1 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-fbb35493-cebd-4f90-a535-77efb73bb2a0 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-fbb35493-cebd-4f90-a535-77efb73bb2a0 {
  display: none;
}
#s-fbb35493-cebd-4f90-a535-77efb73bb2a0, #wrap-s-fbb35493-cebd-4f90-a535-77efb73bb2a0, #wrap-content-s-fbb35493-cebd-4f90-a535-77efb73bb2a0 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fbb35493-cebd-4f90-a535-77efb73bb2a0 {
  display: none;
}
#s-fbb35493-cebd-4f90-a535-77efb73bb2a0, #wrap-s-fbb35493-cebd-4f90-a535-77efb73bb2a0, #wrap-content-s-fbb35493-cebd-4f90-a535-77efb73bb2a0 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-fbb35493-cebd-4f90-a535-77efb73bb2a0 {
  display: none;
}
#s-fbb35493-cebd-4f90-a535-77efb73bb2a0, #wrap-s-fbb35493-cebd-4f90-a535-77efb73bb2a0, #wrap-content-s-fbb35493-cebd-4f90-a535-77efb73bb2a0 { display: none !important; }}
#s-fbb35493-cebd-4f90-a535-77efb73bb2a0 .shg-proportional-font-size,
#s-fbb35493-cebd-4f90-a535-77efb73bb2a0 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-15101efb-22c4-43bb-aed2-d44858873bcf {
  margin-left: 0%;
margin-right: 0%;
text-align: center;
}
@media (max-width: 767px){#s-15101efb-22c4-43bb-aed2-d44858873bcf {
  margin-left: 16%;
margin-right: 16%;
padding-left: 0%;
padding-right: 0%;
display: none;
}
#s-15101efb-22c4-43bb-aed2-d44858873bcf, #wrap-s-15101efb-22c4-43bb-aed2-d44858873bcf, #wrap-content-s-15101efb-22c4-43bb-aed2-d44858873bcf { display: none !important; }}
#s-c60775da-c64a-4fad-a503-1b13b10a53fa {
  margin-left: auto;
margin-right: auto;
text-align: center;
}
@media (max-width: 767px){#s-c60775da-c64a-4fad-a503-1b13b10a53fa {
  margin-top: 0px;
margin-bottom: 0px;
}
}

.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa {
  max-width:  100%;
}

.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa .shg-image-zoom,
.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa {
  max-width:  100%;
}

.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa .shg-image-zoom,
.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa img.shogun-image {
  max-width: 500px !important;
  
}

.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa {
  max-width:  100%;
}

.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa .shg-image-zoom,
.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa img.shogun-image {
  max-width: 450px !important;
  
}

.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa {
  max-width:  100%;
}

.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa .shg-image-zoom,
.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa img.shogun-image {
  max-width: 350px !important;
  
}

.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa {
  max-width:  100%;
}

.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa .shg-image-zoom,
.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c60775da-c64a-4fad-a503-1b13b10a53fa img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-2a742400-2fd3-412d-9062-655384af560d {
  margin-left: auto;
margin-right: auto;
}

#s-1bf68268-d6b7-460e-bede-cb7991cb4cd1 {
  margin-left: 10%;
margin-right: 10%;
padding-left: 10%;
padding-right: 10%;
}
@media (min-width: 1200px){#s-1bf68268-d6b7-460e-bede-cb7991cb4cd1 {
  display: none;
}
#s-1bf68268-d6b7-460e-bede-cb7991cb4cd1, #wrap-s-1bf68268-d6b7-460e-bede-cb7991cb4cd1, #wrap-content-s-1bf68268-d6b7-460e-bede-cb7991cb4cd1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1bf68268-d6b7-460e-bede-cb7991cb4cd1 {
  display: none;
}
#s-1bf68268-d6b7-460e-bede-cb7991cb4cd1, #wrap-s-1bf68268-d6b7-460e-bede-cb7991cb4cd1, #wrap-content-s-1bf68268-d6b7-460e-bede-cb7991cb4cd1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1bf68268-d6b7-460e-bede-cb7991cb4cd1 {
  display: none;
}
#s-1bf68268-d6b7-460e-bede-cb7991cb4cd1, #wrap-s-1bf68268-d6b7-460e-bede-cb7991cb4cd1, #wrap-content-s-1bf68268-d6b7-460e-bede-cb7991cb4cd1 { display: none !important; }}@media (max-width: 767px){#s-1bf68268-d6b7-460e-bede-cb7991cb4cd1 {
  
}
}
@media (min-width: 0px) {
[id="s-1bf68268-d6b7-460e-bede-cb7991cb4cd1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.5px);
}

}

@media (min-width: 768px) {
[id="s-1bf68268-d6b7-460e-bede-cb7991cb4cd1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.5px);
}

}

@media (min-width: 992px) {
[id="s-1bf68268-d6b7-460e-bede-cb7991cb4cd1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.5px);
}

}

@media (min-width: 1200px) {
[id="s-1bf68268-d6b7-460e-bede-cb7991cb4cd1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.5px);
}

}

#s-42e7ed03-4b39-41c8-88f3-d8ff40225fa6 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px){#s-42e7ed03-4b39-41c8-88f3-d8ff40225fa6 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-42e7ed03-4b39-41c8-88f3-d8ff40225fa6 {
  
}
}@media (max-width: 767px){#s-42e7ed03-4b39-41c8-88f3-d8ff40225fa6 {
  
}
}
#s-42e7ed03-4b39-41c8-88f3-d8ff40225fa6 .shg-proportional-font-size,
#s-42e7ed03-4b39-41c8-88f3-d8ff40225fa6 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-bf15d965-8a94-49a1-a300-f524a5dafb27 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px){#s-bf15d965-8a94-49a1-a300-f524a5dafb27 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-bf15d965-8a94-49a1-a300-f524a5dafb27 {
  
}
}@media (max-width: 767px){#s-bf15d965-8a94-49a1-a300-f524a5dafb27 {
  
}
}
#s-bf15d965-8a94-49a1-a300-f524a5dafb27 .shg-proportional-font-size,
#s-bf15d965-8a94-49a1-a300-f524a5dafb27 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-393bd83f-6cc9-471c-ae8a-034269619ce6 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-393bd83f-6cc9-471c-ae8a-034269619ce6 {
  margin-left: 0%;
margin-right: -18%;
}
}@media (max-width: 767px){#s-393bd83f-6cc9-471c-ae8a-034269619ce6 {
  margin-top: 0px;
}
}







#s-393bd83f-6cc9-471c-ae8a-034269619ce6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-393bd83f-6cc9-471c-ae8a-034269619ce6.shg-box.shg-c {
  justify-content: center;
}

#s-dd42654a-beb4-45b0-9beb-4d1bf4adb0eb {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-dd42654a-beb4-45b0-9beb-4d1bf4adb0eb {
  display: none;
}
#s-dd42654a-beb4-45b0-9beb-4d1bf4adb0eb, #wrap-s-dd42654a-beb4-45b0-9beb-4d1bf4adb0eb, #wrap-content-s-dd42654a-beb4-45b0-9beb-4d1bf4adb0eb { display: none !important; }}
#s-8ed5a6ca-967d-40fa-a3cf-c09208e6fa4b {
  margin-left: 0%;
margin-right: 47%;
padding-right: 8%;
}
@media (min-width: 992px) and (max-width: 1199px){#s-8ed5a6ca-967d-40fa-a3cf-c09208e6fa4b {
  margin-right: 37%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8ed5a6ca-967d-40fa-a3cf-c09208e6fa4b {
  margin-right: 0%;
}
}@media (max-width: 767px){#s-8ed5a6ca-967d-40fa-a3cf-c09208e6fa4b {
  display: none;
}
#s-8ed5a6ca-967d-40fa-a3cf-c09208e6fa4b, #wrap-s-8ed5a6ca-967d-40fa-a3cf-c09208e6fa4b, #wrap-content-s-8ed5a6ca-967d-40fa-a3cf-c09208e6fa4b { display: none !important; }}
@media (min-width: 0px) {
[id="s-8ed5a6ca-967d-40fa-a3cf-c09208e6fa4b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-8ed5a6ca-967d-40fa-a3cf-c09208e6fa4b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-8ed5a6ca-967d-40fa-a3cf-c09208e6fa4b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-8ed5a6ca-967d-40fa-a3cf-c09208e6fa4b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-4fb68076-7045-466d-b1d7-75dc51a25e7d {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px){#s-4fb68076-7045-466d-b1d7-75dc51a25e7d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-4fb68076-7045-466d-b1d7-75dc51a25e7d {
  
}
}@media (max-width: 767px){#s-4fb68076-7045-466d-b1d7-75dc51a25e7d {
  
}
}
#s-4fb68076-7045-466d-b1d7-75dc51a25e7d .shg-proportional-font-size,
#s-4fb68076-7045-466d-b1d7-75dc51a25e7d .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-991bbfc6-089c-4d0a-90d5-7cf52a9d7bd8 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px){#s-991bbfc6-089c-4d0a-90d5-7cf52a9d7bd8 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-991bbfc6-089c-4d0a-90d5-7cf52a9d7bd8 {
  
}
}@media (max-width: 767px){#s-991bbfc6-089c-4d0a-90d5-7cf52a9d7bd8 {
  
}
}
#s-991bbfc6-089c-4d0a-90d5-7cf52a9d7bd8 .shg-proportional-font-size,
#s-991bbfc6-089c-4d0a-90d5-7cf52a9d7bd8 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-ba8f4aab-c8bd-46df-888d-1e89dc674453 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px){#s-ba8f4aab-c8bd-46df-888d-1e89dc674453 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-ba8f4aab-c8bd-46df-888d-1e89dc674453 {
  margin-left: 0%;
margin-right: -33%;
}
}@media (max-width: 767px){#s-ba8f4aab-c8bd-46df-888d-1e89dc674453 {
  display: none;
}
#s-ba8f4aab-c8bd-46df-888d-1e89dc674453, #wrap-s-ba8f4aab-c8bd-46df-888d-1e89dc674453, #wrap-content-s-ba8f4aab-c8bd-46df-888d-1e89dc674453 { display: none !important; }}
#s-ba8f4aab-c8bd-46df-888d-1e89dc674453 .shg-proportional-font-size,
#s-ba8f4aab-c8bd-46df-888d-1e89dc674453 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-487e09e2-6244-42b6-90f3-92dc541ac8c6 {
  margin-top: 20px;
padding-top: 10px;
padding-left: 100px;
padding-bottom: 10px;
padding-right: 100px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: left;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-487e09e2-6244-42b6-90f3-92dc541ac8c6: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-487e09e2-6244-42b6-90f3-92dc541ac8c6:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNDFhOTA5YjktZDkyOS00MmE3LTkzNTUtODczZmYwMmRlNThhIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM0MWE5MDliOS1kOTI5LTQyYTctOTM1NS04NzNmZjAyZGU1OGEpIi8+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;}@media (min-width: 1200px){#s-487e09e2-6244-42b6-90f3-92dc541ac8c6 {
  margin-top: 1px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-487e09e2-6244-42b6-90f3-92dc541ac8c6 {
  margin-top: 5px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-487e09e2-6244-42b6-90f3-92dc541ac8c6 {
  margin-top: 0px;
margin-right: 0%;
padding-left: 28px;
padding-right: 28px;
}
}@media (max-width: 767px){#s-487e09e2-6244-42b6-90f3-92dc541ac8c6 {
  display: none;
}
#s-487e09e2-6244-42b6-90f3-92dc541ac8c6, #wrap-s-487e09e2-6244-42b6-90f3-92dc541ac8c6, #wrap-content-s-487e09e2-6244-42b6-90f3-92dc541ac8c6 { display: none !important; }}

  #s-487e09e2-6244-42b6-90f3-92dc541ac8c6-atc-btn-wrapper {
    text-align: left;
  }


#s-487e09e2-6244-42b6-90f3-92dc541ac8c6 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-487e09e2-6244-42b6-90f3-92dc541ac8c6.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-487e09e2-6244-42b6-90f3-92dc541ac8c6.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-487e09e2-6244-42b6-90f3-92dc541ac8c6.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-487e09e2-6244-42b6-90f3-92dc541ac8c6-atc-btn-wrapper {
    text-align: left;
  }


#s-487e09e2-6244-42b6-90f3-92dc541ac8c6 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-487e09e2-6244-42b6-90f3-92dc541ac8c6.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-487e09e2-6244-42b6-90f3-92dc541ac8c6.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-487e09e2-6244-42b6-90f3-92dc541ac8c6.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-487e09e2-6244-42b6-90f3-92dc541ac8c6-atc-btn-wrapper {
    text-align: left;
  }


#s-487e09e2-6244-42b6-90f3-92dc541ac8c6 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-487e09e2-6244-42b6-90f3-92dc541ac8c6.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-487e09e2-6244-42b6-90f3-92dc541ac8c6.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-487e09e2-6244-42b6-90f3-92dc541ac8c6.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-487e09e2-6244-42b6-90f3-92dc541ac8c6-atc-btn-wrapper {
    text-align: left;
  }


#s-487e09e2-6244-42b6-90f3-92dc541ac8c6 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-487e09e2-6244-42b6-90f3-92dc541ac8c6.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-487e09e2-6244-42b6-90f3-92dc541ac8c6.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-487e09e2-6244-42b6-90f3-92dc541ac8c6.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-487e09e2-6244-42b6-90f3-92dc541ac8c6-atc-btn-wrapper {
    text-align: left;
  }


#s-487e09e2-6244-42b6-90f3-92dc541ac8c6 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-487e09e2-6244-42b6-90f3-92dc541ac8c6.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-487e09e2-6244-42b6-90f3-92dc541ac8c6.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-487e09e2-6244-42b6-90f3-92dc541ac8c6.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-651c0f99-fa1b-4ec8-b12a-a0b818d60d48 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-651c0f99-fa1b-4ec8-b12a-a0b818d60d48 {
  display: none;
}
#s-651c0f99-fa1b-4ec8-b12a-a0b818d60d48, #wrap-s-651c0f99-fa1b-4ec8-b12a-a0b818d60d48, #wrap-content-s-651c0f99-fa1b-4ec8-b12a-a0b818d60d48 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-651c0f99-fa1b-4ec8-b12a-a0b818d60d48 {
  display: none;
}
#s-651c0f99-fa1b-4ec8-b12a-a0b818d60d48, #wrap-s-651c0f99-fa1b-4ec8-b12a-a0b818d60d48, #wrap-content-s-651c0f99-fa1b-4ec8-b12a-a0b818d60d48 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-651c0f99-fa1b-4ec8-b12a-a0b818d60d48 {
  display: none;
}
#s-651c0f99-fa1b-4ec8-b12a-a0b818d60d48, #wrap-s-651c0f99-fa1b-4ec8-b12a-a0b818d60d48, #wrap-content-s-651c0f99-fa1b-4ec8-b12a-a0b818d60d48 { display: none !important; }}@media (max-width: 767px){#s-651c0f99-fa1b-4ec8-b12a-a0b818d60d48 {
  
}
}
#s-651c0f99-fa1b-4ec8-b12a-a0b818d60d48 .shg-proportional-font-size,
#s-651c0f99-fa1b-4ec8-b12a-a0b818d60d48 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-25f8796d-12a8-43d1-943e-cc2baa991869 {
  margin-top: 4px;
padding-top: 10px;
padding-left: 100px;
padding-bottom: 10px;
padding-right: 100px;
border-radius: 9px;
background-color: rgba(0, 172, 78, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-25f8796d-12a8-43d1-943e-cc2baa991869: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-25f8796d-12a8-43d1-943e-cc2baa991869:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZDQ2ZmQ4ZTgtMTU2My00ZDhlLWEyMDgtZDNlZjA2OGIyODRkIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojYmNkODVmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNTJiOTU1O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNkNDZmZDhlOC0xNTYzLTRkOGUtYTIwOC1kM2VmMDY4YjI4NGQpIi8+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;}@media (min-width: 1200px){#s-25f8796d-12a8-43d1-943e-cc2baa991869 {
  display: none;
}
#s-25f8796d-12a8-43d1-943e-cc2baa991869, #wrap-s-25f8796d-12a8-43d1-943e-cc2baa991869, #wrap-content-s-25f8796d-12a8-43d1-943e-cc2baa991869 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-25f8796d-12a8-43d1-943e-cc2baa991869 {
  display: none;
}
#s-25f8796d-12a8-43d1-943e-cc2baa991869, #wrap-s-25f8796d-12a8-43d1-943e-cc2baa991869, #wrap-content-s-25f8796d-12a8-43d1-943e-cc2baa991869 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-25f8796d-12a8-43d1-943e-cc2baa991869 {
  display: none;
}
#s-25f8796d-12a8-43d1-943e-cc2baa991869, #wrap-s-25f8796d-12a8-43d1-943e-cc2baa991869, #wrap-content-s-25f8796d-12a8-43d1-943e-cc2baa991869 { display: none !important; }}@media (max-width: 767px){#s-25f8796d-12a8-43d1-943e-cc2baa991869 {
  padding-left: 30px;
padding-right: 30px;
}
}

  #s-25f8796d-12a8-43d1-943e-cc2baa991869-atc-btn-wrapper {
    text-align: center;
  }


#s-25f8796d-12a8-43d1-943e-cc2baa991869 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-25f8796d-12a8-43d1-943e-cc2baa991869.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-25f8796d-12a8-43d1-943e-cc2baa991869.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-25f8796d-12a8-43d1-943e-cc2baa991869.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-25f8796d-12a8-43d1-943e-cc2baa991869-atc-btn-wrapper {
    text-align: center;
  }


#s-25f8796d-12a8-43d1-943e-cc2baa991869 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-25f8796d-12a8-43d1-943e-cc2baa991869.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-25f8796d-12a8-43d1-943e-cc2baa991869.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-25f8796d-12a8-43d1-943e-cc2baa991869.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-25f8796d-12a8-43d1-943e-cc2baa991869-atc-btn-wrapper {
    text-align: center;
  }


#s-25f8796d-12a8-43d1-943e-cc2baa991869 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-25f8796d-12a8-43d1-943e-cc2baa991869.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-25f8796d-12a8-43d1-943e-cc2baa991869.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-25f8796d-12a8-43d1-943e-cc2baa991869.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-25f8796d-12a8-43d1-943e-cc2baa991869-atc-btn-wrapper {
    text-align: center;
  }


#s-25f8796d-12a8-43d1-943e-cc2baa991869 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-25f8796d-12a8-43d1-943e-cc2baa991869.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-25f8796d-12a8-43d1-943e-cc2baa991869.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-25f8796d-12a8-43d1-943e-cc2baa991869.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-25f8796d-12a8-43d1-943e-cc2baa991869-atc-btn-wrapper {
    text-align: center;
  }


#s-25f8796d-12a8-43d1-943e-cc2baa991869 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-25f8796d-12a8-43d1-943e-cc2baa991869.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-25f8796d-12a8-43d1-943e-cc2baa991869.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-25f8796d-12a8-43d1-943e-cc2baa991869.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-3624539e-d719-4c1a-a2bf-85717d539e1a {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-3624539e-d719-4c1a-a2bf-85717d539e1a {
  display: none;
}
#s-3624539e-d719-4c1a-a2bf-85717d539e1a, #wrap-s-3624539e-d719-4c1a-a2bf-85717d539e1a, #wrap-content-s-3624539e-d719-4c1a-a2bf-85717d539e1a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3624539e-d719-4c1a-a2bf-85717d539e1a {
  display: none;
}
#s-3624539e-d719-4c1a-a2bf-85717d539e1a, #wrap-s-3624539e-d719-4c1a-a2bf-85717d539e1a, #wrap-content-s-3624539e-d719-4c1a-a2bf-85717d539e1a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3624539e-d719-4c1a-a2bf-85717d539e1a {
  display: none;
}
#s-3624539e-d719-4c1a-a2bf-85717d539e1a, #wrap-s-3624539e-d719-4c1a-a2bf-85717d539e1a, #wrap-content-s-3624539e-d719-4c1a-a2bf-85717d539e1a { display: none !important; }}@media (max-width: 767px){#s-3624539e-d719-4c1a-a2bf-85717d539e1a {
  margin-top: 25px;
margin-bottom: 1px;
}
}
#s-dd915146-69d9-48a5-9f5b-418228d6c7f9 {
  margin-top: 0px;
margin-left: 15%;
margin-bottom: 0px;
margin-right: 15%;
padding-top: 0px;
}
@media (max-width: 767px){#s-dd915146-69d9-48a5-9f5b-418228d6c7f9 {
  margin-left: 4%;
margin-right: 4%;
}
}
#s-971ea1cc-40ba-48f7-a604-fb4a01fdf2b9 {
  margin-left: auto;
margin-right: auto;
padding-top: 30px;
padding-left: 6%;
padding-bottom: 50px;
padding-right: 6%;
min-height: 50px;
background-color: rgba(27, 67, 118, 1);
}
@media (max-width: 767px){#s-971ea1cc-40ba-48f7-a604-fb4a01fdf2b9 {
  padding-bottom: 15px;
}
}







#s-971ea1cc-40ba-48f7-a604-fb4a01fdf2b9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-971ea1cc-40ba-48f7-a604-fb4a01fdf2b9.shg-box.shg-c {
  justify-content: center;
}

#s-5af636b4-13c0-4941-9c78-8fddac953321 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-5af636b4-13c0-4941-9c78-8fddac953321 {
  margin-left: 10%;
margin-right: 10%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5af636b4-13c0-4941-9c78-8fddac953321 {
  margin-left: 10%;
margin-right: 10%;
}
}@media (max-width: 767px){#s-5af636b4-13c0-4941-9c78-8fddac953321 {
  display: none;
}
#s-5af636b4-13c0-4941-9c78-8fddac953321, #wrap-s-5af636b4-13c0-4941-9c78-8fddac953321, #wrap-content-s-5af636b4-13c0-4941-9c78-8fddac953321 { display: none !important; }}
@media (min-width: 0px) {
[id="s-5af636b4-13c0-4941-9c78-8fddac953321"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-5af636b4-13c0-4941-9c78-8fddac953321"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-5af636b4-13c0-4941-9c78-8fddac953321"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-5af636b4-13c0-4941-9c78-8fddac953321"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-11200ffe-a9bc-48c4-b098-81e346a00e43 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-11200ffe-a9bc-48c4-b098-81e346a00e43"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-11200ffe-a9bc-48c4-b098-81e346a00e43"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-11200ffe-a9bc-48c4-b098-81e346a00e43"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-11200ffe-a9bc-48c4-b098-81e346a00e43"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-11200ffe-a9bc-48c4-b098-81e346a00e43"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-11200ffe-a9bc-48c4-b098-81e346a00e43"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-11200ffe-a9bc-48c4-b098-81e346a00e43"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 10.0px);
}

}

#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
aspect-ratio: 1/1;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 {
  max-width: 125px;
}
}
#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 {
  margin: 0 !important;
  overflow: visible;
}

#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image {
  /* Add background color handling */
  
}

#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image {
  box-sizing: border-box;
}



.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container {
      position: relative;
    }

    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

@media (min-width: 1200px){#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 {
  margin: 0 !important;
  overflow: visible;
}

#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image {
  /* Add background color handling */
  
}

#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image {
  box-sizing: border-box;
}



.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container {
      position: relative;
    }

    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 {
  margin: 0 !important;
  overflow: visible;
}

#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image {
  /* Add background color handling */
  
}

#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image {
  box-sizing: border-box;
}



.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container {
      position: relative;
    }

    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 {
  margin: 0 !important;
  overflow: visible;
}

#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image {
  /* Add background color handling */
  
}

#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image {
  box-sizing: border-box;
}



.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container {
      position: relative;
    }

    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (max-width: 767px){#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 {
  margin: 0 !important;
  overflow: visible;
}

#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image {
  /* Add background color handling */
  
}

#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image {
  box-sizing: border-box;
}



.s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container {
      position: relative;
    }

    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9fb3ed7-828c-4ea2-89da-dc29aa984055 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}
#s-2b86eef8-e5ee-438c-bbc3-ef47565182c0 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-2b86eef8-e5ee-438c-bbc3-ef47565182c0 {
  text-align: center;
}
}
#s-2b86eef8-e5ee-438c-bbc3-ef47565182c0 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-2b86eef8-e5ee-438c-bbc3-ef47565182c0 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}@media (max-width: 767px){#s-2b86eef8-e5ee-438c-bbc3-ef47565182c0 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


}
#s-761ad7f8-ab6f-467e-b185-a57c52bf7447 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-761ad7f8-ab6f-467e-b185-a57c52bf7447"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-761ad7f8-ab6f-467e-b185-a57c52bf7447"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-761ad7f8-ab6f-467e-b185-a57c52bf7447"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-761ad7f8-ab6f-467e-b185-a57c52bf7447"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-761ad7f8-ab6f-467e-b185-a57c52bf7447"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-761ad7f8-ab6f-467e-b185-a57c52bf7447"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-761ad7f8-ab6f-467e-b185-a57c52bf7447"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 10.0px);
}

}

#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
aspect-ratio: 1/1;
text-align: center;
}

#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image {
  box-sizing: border-box;
}



.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container {
      position: relative;
    }

    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

@media (min-width: 1200px){#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image {
  box-sizing: border-box;
}



.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container {
      position: relative;
    }

    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image {
  box-sizing: border-box;
}



.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container {
      position: relative;
    }

    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image {
  box-sizing: border-box;
}



.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container {
      position: relative;
    }

    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (max-width: 767px){#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image {
  box-sizing: border-box;
}



.s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container {
      position: relative;
    }

    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-62c52d99-1db6-45c1-ac99-26117ff0d9a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}
#s-481e719d-012d-4317-a29f-dc5c53be8aa2 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-481e719d-012d-4317-a29f-dc5c53be8aa2 {
  text-align: center;
}
}
#s-481e719d-012d-4317-a29f-dc5c53be8aa2 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-481e719d-012d-4317-a29f-dc5c53be8aa2 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}@media (max-width: 767px){#s-481e719d-012d-4317-a29f-dc5c53be8aa2 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


}
#s-d4ea9f4a-338d-4f77-a17a-a68996bfc366 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-d4ea9f4a-338d-4f77-a17a-a68996bfc366"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d4ea9f4a-338d-4f77-a17a-a68996bfc366"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-d4ea9f4a-338d-4f77-a17a-a68996bfc366"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-d4ea9f4a-338d-4f77-a17a-a68996bfc366"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-d4ea9f4a-338d-4f77-a17a-a68996bfc366"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-d4ea9f4a-338d-4f77-a17a-a68996bfc366"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-d4ea9f4a-338d-4f77-a17a-a68996bfc366"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 10.0px);
}

}

#s-91f4770d-fddd-4920-9c5b-528cf2468386 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
aspect-ratio: 1/1;
text-align: center;
}

#s-91f4770d-fddd-4920-9c5b-528cf2468386 {
  margin: 0 !important;
  overflow: visible;
}

#s-91f4770d-fddd-4920-9c5b-528cf2468386-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-91f4770d-fddd-4920-9c5b-528cf2468386 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-91f4770d-fddd-4920-9c5b-528cf2468386 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image {
  /* Add background color handling */
  
}

#s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-91f4770d-fddd-4920-9c5b-528cf2468386 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-91f4770d-fddd-4920-9c5b-528cf2468386 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-91f4770d-fddd-4920-9c5b-528cf2468386 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-91f4770d-fddd-4920-9c5b-528cf2468386 .shogun-image-content {
  
    justify-content: center;
  
}

.s-91f4770d-fddd-4920-9c5b-528cf2468386.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image {
  box-sizing: border-box;
}



.s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-91f4770d-fddd-4920-9c5b-528cf2468386 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container {
      position: relative;
    }

    .s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

@media (min-width: 1200px){#s-91f4770d-fddd-4920-9c5b-528cf2468386 {
  margin: 0 !important;
  overflow: visible;
}

#s-91f4770d-fddd-4920-9c5b-528cf2468386-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-91f4770d-fddd-4920-9c5b-528cf2468386 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-91f4770d-fddd-4920-9c5b-528cf2468386 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image {
  /* Add background color handling */
  
}

#s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-91f4770d-fddd-4920-9c5b-528cf2468386 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-91f4770d-fddd-4920-9c5b-528cf2468386 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-91f4770d-fddd-4920-9c5b-528cf2468386 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-91f4770d-fddd-4920-9c5b-528cf2468386 .shogun-image-content {
  
    justify-content: center;
  
}

.s-91f4770d-fddd-4920-9c5b-528cf2468386.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image {
  box-sizing: border-box;
}



.s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-91f4770d-fddd-4920-9c5b-528cf2468386 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container {
      position: relative;
    }

    .s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-91f4770d-fddd-4920-9c5b-528cf2468386 {
  margin: 0 !important;
  overflow: visible;
}

#s-91f4770d-fddd-4920-9c5b-528cf2468386-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-91f4770d-fddd-4920-9c5b-528cf2468386 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-91f4770d-fddd-4920-9c5b-528cf2468386 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image {
  /* Add background color handling */
  
}

#s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-91f4770d-fddd-4920-9c5b-528cf2468386 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-91f4770d-fddd-4920-9c5b-528cf2468386 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-91f4770d-fddd-4920-9c5b-528cf2468386 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-91f4770d-fddd-4920-9c5b-528cf2468386 .shogun-image-content {
  
    justify-content: center;
  
}

.s-91f4770d-fddd-4920-9c5b-528cf2468386.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image {
  box-sizing: border-box;
}



.s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-91f4770d-fddd-4920-9c5b-528cf2468386 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container {
      position: relative;
    }

    .s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-91f4770d-fddd-4920-9c5b-528cf2468386 {
  margin: 0 !important;
  overflow: visible;
}

#s-91f4770d-fddd-4920-9c5b-528cf2468386-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-91f4770d-fddd-4920-9c5b-528cf2468386 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-91f4770d-fddd-4920-9c5b-528cf2468386 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image {
  /* Add background color handling */
  
}

#s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-91f4770d-fddd-4920-9c5b-528cf2468386 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-91f4770d-fddd-4920-9c5b-528cf2468386 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-91f4770d-fddd-4920-9c5b-528cf2468386 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-91f4770d-fddd-4920-9c5b-528cf2468386 .shogun-image-content {
  
    justify-content: center;
  
}

.s-91f4770d-fddd-4920-9c5b-528cf2468386.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image {
  box-sizing: border-box;
}



.s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-91f4770d-fddd-4920-9c5b-528cf2468386 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container {
      position: relative;
    }

    .s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (max-width: 767px){#s-91f4770d-fddd-4920-9c5b-528cf2468386 {
  margin: 0 !important;
  overflow: visible;
}

#s-91f4770d-fddd-4920-9c5b-528cf2468386-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-91f4770d-fddd-4920-9c5b-528cf2468386 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-91f4770d-fddd-4920-9c5b-528cf2468386 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image {
  /* Add background color handling */
  
}

#s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-91f4770d-fddd-4920-9c5b-528cf2468386 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-91f4770d-fddd-4920-9c5b-528cf2468386 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-91f4770d-fddd-4920-9c5b-528cf2468386 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-91f4770d-fddd-4920-9c5b-528cf2468386 .shogun-image-content {
  
    justify-content: center;
  
}

.s-91f4770d-fddd-4920-9c5b-528cf2468386.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image {
  box-sizing: border-box;
}



.s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-91f4770d-fddd-4920-9c5b-528cf2468386 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container {
      position: relative;
    }

    .s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-91f4770d-fddd-4920-9c5b-528cf2468386.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-91f4770d-fddd-4920-9c5b-528cf2468386 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}
#s-1303864c-e3c4-476d-8ff6-f0b1b779e966 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-1303864c-e3c4-476d-8ff6-f0b1b779e966 {
  text-align: center;
}
}
#s-1303864c-e3c4-476d-8ff6-f0b1b779e966 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-1303864c-e3c4-476d-8ff6-f0b1b779e966 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-b13ba2a7-16da-40f1-a0b2-07b779ee0918 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-b13ba2a7-16da-40f1-a0b2-07b779ee0918 {
  display: none;
}
#s-b13ba2a7-16da-40f1-a0b2-07b779ee0918, #wrap-s-b13ba2a7-16da-40f1-a0b2-07b779ee0918, #wrap-content-s-b13ba2a7-16da-40f1-a0b2-07b779ee0918 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b13ba2a7-16da-40f1-a0b2-07b779ee0918 {
  display: none;
}
#s-b13ba2a7-16da-40f1-a0b2-07b779ee0918, #wrap-s-b13ba2a7-16da-40f1-a0b2-07b779ee0918, #wrap-content-s-b13ba2a7-16da-40f1-a0b2-07b779ee0918 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b13ba2a7-16da-40f1-a0b2-07b779ee0918 {
  display: none;
}
#s-b13ba2a7-16da-40f1-a0b2-07b779ee0918, #wrap-s-b13ba2a7-16da-40f1-a0b2-07b779ee0918, #wrap-content-s-b13ba2a7-16da-40f1-a0b2-07b779ee0918 { display: none !important; }}
@media (min-width: 0px) {
[id="s-b13ba2a7-16da-40f1-a0b2-07b779ee0918"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-b13ba2a7-16da-40f1-a0b2-07b779ee0918"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b13ba2a7-16da-40f1-a0b2-07b779ee0918"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b13ba2a7-16da-40f1-a0b2-07b779ee0918"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-63bdf9e8-1a29-4bb8-92de-8b93aabb3064 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-63bdf9e8-1a29-4bb8-92de-8b93aabb3064"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-63bdf9e8-1a29-4bb8-92de-8b93aabb3064"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-63bdf9e8-1a29-4bb8-92de-8b93aabb3064"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-63bdf9e8-1a29-4bb8-92de-8b93aabb3064"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-63bdf9e8-1a29-4bb8-92de-8b93aabb3064"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-63bdf9e8-1a29-4bb8-92de-8b93aabb3064"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-63bdf9e8-1a29-4bb8-92de-8b93aabb3064"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 10.0px);
}

}

#s-3ff24374-979b-4526-a47b-7629c3e3a1d0 {
  margin-left: auto;
margin-right: auto;
max-width: 50px;
aspect-ratio: 1/1;
text-align: center;
}

#s-3ff24374-979b-4526-a47b-7629c3e3a1d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-3ff24374-979b-4526-a47b-7629c3e3a1d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3ff24374-979b-4526-a47b-7629c3e3a1d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3ff24374-979b-4526-a47b-7629c3e3a1d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3ff24374-979b-4526-a47b-7629c3e3a1d0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3ff24374-979b-4526-a47b-7629c3e3a1d0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3ff24374-979b-4526-a47b-7629c3e3a1d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-3ff24374-979b-4526-a47b-7629c3e3a1d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image {
  box-sizing: border-box;
}



.s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container {
      position: relative;
    }

    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

@media (min-width: 1200px){#s-3ff24374-979b-4526-a47b-7629c3e3a1d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-3ff24374-979b-4526-a47b-7629c3e3a1d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3ff24374-979b-4526-a47b-7629c3e3a1d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3ff24374-979b-4526-a47b-7629c3e3a1d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3ff24374-979b-4526-a47b-7629c3e3a1d0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3ff24374-979b-4526-a47b-7629c3e3a1d0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3ff24374-979b-4526-a47b-7629c3e3a1d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-3ff24374-979b-4526-a47b-7629c3e3a1d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image {
  box-sizing: border-box;
}



.s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container {
      position: relative;
    }

    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-3ff24374-979b-4526-a47b-7629c3e3a1d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-3ff24374-979b-4526-a47b-7629c3e3a1d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3ff24374-979b-4526-a47b-7629c3e3a1d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3ff24374-979b-4526-a47b-7629c3e3a1d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3ff24374-979b-4526-a47b-7629c3e3a1d0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3ff24374-979b-4526-a47b-7629c3e3a1d0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3ff24374-979b-4526-a47b-7629c3e3a1d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-3ff24374-979b-4526-a47b-7629c3e3a1d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image {
  box-sizing: border-box;
}



.s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container {
      position: relative;
    }

    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-3ff24374-979b-4526-a47b-7629c3e3a1d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-3ff24374-979b-4526-a47b-7629c3e3a1d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3ff24374-979b-4526-a47b-7629c3e3a1d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3ff24374-979b-4526-a47b-7629c3e3a1d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3ff24374-979b-4526-a47b-7629c3e3a1d0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3ff24374-979b-4526-a47b-7629c3e3a1d0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3ff24374-979b-4526-a47b-7629c3e3a1d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-3ff24374-979b-4526-a47b-7629c3e3a1d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image {
  box-sizing: border-box;
}



.s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container {
      position: relative;
    }

    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (max-width: 767px){#s-3ff24374-979b-4526-a47b-7629c3e3a1d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-3ff24374-979b-4526-a47b-7629c3e3a1d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3ff24374-979b-4526-a47b-7629c3e3a1d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3ff24374-979b-4526-a47b-7629c3e3a1d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3ff24374-979b-4526-a47b-7629c3e3a1d0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3ff24374-979b-4526-a47b-7629c3e3a1d0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3ff24374-979b-4526-a47b-7629c3e3a1d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-3ff24374-979b-4526-a47b-7629c3e3a1d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image {
  box-sizing: border-box;
}



.s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container {
      position: relative;
    }

    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3ff24374-979b-4526-a47b-7629c3e3a1d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}
#s-0e6fb7c9-9b62-47e2-ad62-00e559745351 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-0e6fb7c9-9b62-47e2-ad62-00e559745351 {
  text-align: center;
}
}
#s-0e6fb7c9-9b62-47e2-ad62-00e559745351 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-0e6fb7c9-9b62-47e2-ad62-00e559745351 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-d4900eff-bc0a-4c42-ba20-3f38cee6daa4 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-d4900eff-bc0a-4c42-ba20-3f38cee6daa4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d4900eff-bc0a-4c42-ba20-3f38cee6daa4"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-d4900eff-bc0a-4c42-ba20-3f38cee6daa4"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-d4900eff-bc0a-4c42-ba20-3f38cee6daa4"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-d4900eff-bc0a-4c42-ba20-3f38cee6daa4"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-d4900eff-bc0a-4c42-ba20-3f38cee6daa4"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-d4900eff-bc0a-4c42-ba20-3f38cee6daa4"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 10.0px);
}

}

#s-c243af9f-8816-43bb-9ced-e868233140d0 {
  margin-left: auto;
margin-right: auto;
max-width: 50px;
aspect-ratio: 1/1;
text-align: center;
}
@media (max-width: 767px){#s-c243af9f-8816-43bb-9ced-e868233140d0 {
  max-width: 50px;
}
}
#s-c243af9f-8816-43bb-9ced-e868233140d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-c243af9f-8816-43bb-9ced-e868233140d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c243af9f-8816-43bb-9ced-e868233140d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c243af9f-8816-43bb-9ced-e868233140d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c243af9f-8816-43bb-9ced-e868233140d0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c243af9f-8816-43bb-9ced-e868233140d0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c243af9f-8816-43bb-9ced-e868233140d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-c243af9f-8816-43bb-9ced-e868233140d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c243af9f-8816-43bb-9ced-e868233140d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image {
  box-sizing: border-box;
}



.s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c243af9f-8816-43bb-9ced-e868233140d0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container {
      position: relative;
    }

    .s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

@media (min-width: 1200px){#s-c243af9f-8816-43bb-9ced-e868233140d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-c243af9f-8816-43bb-9ced-e868233140d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c243af9f-8816-43bb-9ced-e868233140d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c243af9f-8816-43bb-9ced-e868233140d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c243af9f-8816-43bb-9ced-e868233140d0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c243af9f-8816-43bb-9ced-e868233140d0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c243af9f-8816-43bb-9ced-e868233140d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-c243af9f-8816-43bb-9ced-e868233140d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c243af9f-8816-43bb-9ced-e868233140d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image {
  box-sizing: border-box;
}



.s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c243af9f-8816-43bb-9ced-e868233140d0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container {
      position: relative;
    }

    .s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-c243af9f-8816-43bb-9ced-e868233140d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-c243af9f-8816-43bb-9ced-e868233140d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c243af9f-8816-43bb-9ced-e868233140d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c243af9f-8816-43bb-9ced-e868233140d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c243af9f-8816-43bb-9ced-e868233140d0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c243af9f-8816-43bb-9ced-e868233140d0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c243af9f-8816-43bb-9ced-e868233140d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-c243af9f-8816-43bb-9ced-e868233140d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c243af9f-8816-43bb-9ced-e868233140d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image {
  box-sizing: border-box;
}



.s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c243af9f-8816-43bb-9ced-e868233140d0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container {
      position: relative;
    }

    .s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-c243af9f-8816-43bb-9ced-e868233140d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-c243af9f-8816-43bb-9ced-e868233140d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c243af9f-8816-43bb-9ced-e868233140d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c243af9f-8816-43bb-9ced-e868233140d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c243af9f-8816-43bb-9ced-e868233140d0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c243af9f-8816-43bb-9ced-e868233140d0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c243af9f-8816-43bb-9ced-e868233140d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-c243af9f-8816-43bb-9ced-e868233140d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c243af9f-8816-43bb-9ced-e868233140d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image {
  box-sizing: border-box;
}



.s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c243af9f-8816-43bb-9ced-e868233140d0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container {
      position: relative;
    }

    .s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (max-width: 767px){#s-c243af9f-8816-43bb-9ced-e868233140d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-c243af9f-8816-43bb-9ced-e868233140d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c243af9f-8816-43bb-9ced-e868233140d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c243af9f-8816-43bb-9ced-e868233140d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c243af9f-8816-43bb-9ced-e868233140d0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c243af9f-8816-43bb-9ced-e868233140d0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c243af9f-8816-43bb-9ced-e868233140d0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-c243af9f-8816-43bb-9ced-e868233140d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c243af9f-8816-43bb-9ced-e868233140d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image {
  box-sizing: border-box;
}



.s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c243af9f-8816-43bb-9ced-e868233140d0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container {
      position: relative;
    }

    .s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c243af9f-8816-43bb-9ced-e868233140d0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c243af9f-8816-43bb-9ced-e868233140d0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}
#s-da87cc90-2819-49c8-808c-6640ff0c4996 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-da87cc90-2819-49c8-808c-6640ff0c4996 {
  text-align: center;
}
}
#s-da87cc90-2819-49c8-808c-6640ff0c4996 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (max-width: 767px){#s-da87cc90-2819-49c8-808c-6640ff0c4996 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-c5e33268-c8c3-43be-91c7-66a14dc177e2 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-c5e33268-c8c3-43be-91c7-66a14dc177e2 {
  margin-top: 5px;
margin-left: 10%;
margin-right: 10%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c5e33268-c8c3-43be-91c7-66a14dc177e2 {
  margin-left: 10%;
margin-right: 10%;
}
}@media (max-width: 767px){#s-c5e33268-c8c3-43be-91c7-66a14dc177e2 {
  display: none;
}
#s-c5e33268-c8c3-43be-91c7-66a14dc177e2, #wrap-s-c5e33268-c8c3-43be-91c7-66a14dc177e2, #wrap-content-s-c5e33268-c8c3-43be-91c7-66a14dc177e2 { display: none !important; }}
@media (min-width: 0px) {
[id="s-c5e33268-c8c3-43be-91c7-66a14dc177e2"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-c5e33268-c8c3-43be-91c7-66a14dc177e2"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-c5e33268-c8c3-43be-91c7-66a14dc177e2"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-c5e33268-c8c3-43be-91c7-66a14dc177e2"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-18d17601-fa6b-461a-80c9-66a808ea8344 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-18d17601-fa6b-461a-80c9-66a808ea8344"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-18d17601-fa6b-461a-80c9-66a808ea8344"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-18d17601-fa6b-461a-80c9-66a808ea8344"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-18d17601-fa6b-461a-80c9-66a808ea8344"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-18d17601-fa6b-461a-80c9-66a808ea8344"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-18d17601-fa6b-461a-80c9-66a808ea8344"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-18d17601-fa6b-461a-80c9-66a808ea8344"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 10.0px);
}

}

#s-13ad2d1f-115f-44af-9f29-42293ca968ab {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
aspect-ratio: 1/1;
text-align: center;
}

#s-13ad2d1f-115f-44af-9f29-42293ca968ab {
  margin: 0 !important;
  overflow: visible;
}

#s-13ad2d1f-115f-44af-9f29-42293ca968ab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13ad2d1f-115f-44af-9f29-42293ca968ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-13ad2d1f-115f-44af-9f29-42293ca968ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image {
  /* Add background color handling */
  
}

#s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13ad2d1f-115f-44af-9f29-42293ca968ab .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-13ad2d1f-115f-44af-9f29-42293ca968ab .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13ad2d1f-115f-44af-9f29-42293ca968ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-13ad2d1f-115f-44af-9f29-42293ca968ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-13ad2d1f-115f-44af-9f29-42293ca968ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image {
  box-sizing: border-box;
}



.s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-13ad2d1f-115f-44af-9f29-42293ca968ab {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container {
      position: relative;
    }

    .s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

@media (min-width: 1200px){#s-13ad2d1f-115f-44af-9f29-42293ca968ab {
  margin: 0 !important;
  overflow: visible;
}

#s-13ad2d1f-115f-44af-9f29-42293ca968ab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13ad2d1f-115f-44af-9f29-42293ca968ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-13ad2d1f-115f-44af-9f29-42293ca968ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image {
  /* Add background color handling */
  
}

#s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13ad2d1f-115f-44af-9f29-42293ca968ab .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-13ad2d1f-115f-44af-9f29-42293ca968ab .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13ad2d1f-115f-44af-9f29-42293ca968ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-13ad2d1f-115f-44af-9f29-42293ca968ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-13ad2d1f-115f-44af-9f29-42293ca968ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image {
  box-sizing: border-box;
}



.s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-13ad2d1f-115f-44af-9f29-42293ca968ab {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container {
      position: relative;
    }

    .s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-13ad2d1f-115f-44af-9f29-42293ca968ab {
  margin: 0 !important;
  overflow: visible;
}

#s-13ad2d1f-115f-44af-9f29-42293ca968ab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13ad2d1f-115f-44af-9f29-42293ca968ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-13ad2d1f-115f-44af-9f29-42293ca968ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image {
  /* Add background color handling */
  
}

#s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13ad2d1f-115f-44af-9f29-42293ca968ab .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-13ad2d1f-115f-44af-9f29-42293ca968ab .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13ad2d1f-115f-44af-9f29-42293ca968ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-13ad2d1f-115f-44af-9f29-42293ca968ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-13ad2d1f-115f-44af-9f29-42293ca968ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image {
  box-sizing: border-box;
}



.s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-13ad2d1f-115f-44af-9f29-42293ca968ab {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container {
      position: relative;
    }

    .s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-13ad2d1f-115f-44af-9f29-42293ca968ab {
  margin: 0 !important;
  overflow: visible;
}

#s-13ad2d1f-115f-44af-9f29-42293ca968ab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13ad2d1f-115f-44af-9f29-42293ca968ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-13ad2d1f-115f-44af-9f29-42293ca968ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image {
  /* Add background color handling */
  
}

#s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13ad2d1f-115f-44af-9f29-42293ca968ab .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-13ad2d1f-115f-44af-9f29-42293ca968ab .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13ad2d1f-115f-44af-9f29-42293ca968ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-13ad2d1f-115f-44af-9f29-42293ca968ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-13ad2d1f-115f-44af-9f29-42293ca968ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image {
  box-sizing: border-box;
}



.s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-13ad2d1f-115f-44af-9f29-42293ca968ab {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container {
      position: relative;
    }

    .s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (max-width: 767px){#s-13ad2d1f-115f-44af-9f29-42293ca968ab {
  margin: 0 !important;
  overflow: visible;
}

#s-13ad2d1f-115f-44af-9f29-42293ca968ab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13ad2d1f-115f-44af-9f29-42293ca968ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-13ad2d1f-115f-44af-9f29-42293ca968ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image {
  /* Add background color handling */
  
}

#s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13ad2d1f-115f-44af-9f29-42293ca968ab .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-13ad2d1f-115f-44af-9f29-42293ca968ab .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13ad2d1f-115f-44af-9f29-42293ca968ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-13ad2d1f-115f-44af-9f29-42293ca968ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-13ad2d1f-115f-44af-9f29-42293ca968ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image {
  box-sizing: border-box;
}



.s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-13ad2d1f-115f-44af-9f29-42293ca968ab {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container {
      position: relative;
    }

    .s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13ad2d1f-115f-44af-9f29-42293ca968ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13ad2d1f-115f-44af-9f29-42293ca968ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}
#s-4aca8384-4003-4a70-b901-0bf066320b26 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-4aca8384-4003-4a70-b901-0bf066320b26 {
  text-align: center;
}
}
#s-4aca8384-4003-4a70-b901-0bf066320b26 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-4aca8384-4003-4a70-b901-0bf066320b26 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}@media (max-width: 767px){#s-4aca8384-4003-4a70-b901-0bf066320b26 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


}
#s-371e4b4b-5cce-4bd1-9280-6c06bd4609ba {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-371e4b4b-5cce-4bd1-9280-6c06bd4609ba"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-371e4b4b-5cce-4bd1-9280-6c06bd4609ba"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-371e4b4b-5cce-4bd1-9280-6c06bd4609ba"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-371e4b4b-5cce-4bd1-9280-6c06bd4609ba"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-371e4b4b-5cce-4bd1-9280-6c06bd4609ba"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-371e4b4b-5cce-4bd1-9280-6c06bd4609ba"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-371e4b4b-5cce-4bd1-9280-6c06bd4609ba"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 10.0px);
}

}

#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
aspect-ratio: 1/1;
text-align: center;
}

#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da {
  margin: 0 !important;
  overflow: visible;
}

#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image {
  /* Add background color handling */
  
}

#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da .shogun-image-content {
  
    justify-content: center;
  
}

.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image {
  box-sizing: border-box;
}



.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container {
      position: relative;
    }

    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

@media (min-width: 1200px){#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da {
  margin: 0 !important;
  overflow: visible;
}

#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image {
  /* Add background color handling */
  
}

#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da .shogun-image-content {
  
    justify-content: center;
  
}

.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image {
  box-sizing: border-box;
}



.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container {
      position: relative;
    }

    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da {
  margin: 0 !important;
  overflow: visible;
}

#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image {
  /* Add background color handling */
  
}

#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da .shogun-image-content {
  
    justify-content: center;
  
}

.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image {
  box-sizing: border-box;
}



.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container {
      position: relative;
    }

    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da {
  margin: 0 !important;
  overflow: visible;
}

#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image {
  /* Add background color handling */
  
}

#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da .shogun-image-content {
  
    justify-content: center;
  
}

.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image {
  box-sizing: border-box;
}



.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container {
      position: relative;
    }

    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (max-width: 767px){#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da {
  margin: 0 !important;
  overflow: visible;
}

#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image {
  /* Add background color handling */
  
}

#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da .shogun-image-content {
  
    justify-content: center;
  
}

.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image {
  box-sizing: border-box;
}



.s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container {
      position: relative;
    }

    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d32e2eb1-bd7d-4991-b0d1-bfc77c3ca2da img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}
#s-2744ec26-2f44-4ad9-bac5-1b8de2fddc04 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-2744ec26-2f44-4ad9-bac5-1b8de2fddc04 {
  text-align: center;
}
}
#s-2744ec26-2f44-4ad9-bac5-1b8de2fddc04 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-2744ec26-2f44-4ad9-bac5-1b8de2fddc04 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}@media (max-width: 767px){#s-2744ec26-2f44-4ad9-bac5-1b8de2fddc04 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


}
#s-ac8653c5-637c-4081-9005-9f34016394f6 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-ac8653c5-637c-4081-9005-9f34016394f6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ac8653c5-637c-4081-9005-9f34016394f6"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-ac8653c5-637c-4081-9005-9f34016394f6"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-ac8653c5-637c-4081-9005-9f34016394f6"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-ac8653c5-637c-4081-9005-9f34016394f6"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-ac8653c5-637c-4081-9005-9f34016394f6"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-ac8653c5-637c-4081-9005-9f34016394f6"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 10.0px);
}

}

#s-2affcd55-e245-465a-a08c-407d9bfd7a75 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
aspect-ratio: 1/1;
text-align: center;
}

#s-2affcd55-e245-465a-a08c-407d9bfd7a75 {
  margin: 0 !important;
  overflow: visible;
}

#s-2affcd55-e245-465a-a08c-407d9bfd7a75-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2affcd55-e245-465a-a08c-407d9bfd7a75 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2affcd55-e245-465a-a08c-407d9bfd7a75 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image {
  /* Add background color handling */
  
}

#s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2affcd55-e245-465a-a08c-407d9bfd7a75 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2affcd55-e245-465a-a08c-407d9bfd7a75 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2affcd55-e245-465a-a08c-407d9bfd7a75 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-2affcd55-e245-465a-a08c-407d9bfd7a75 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2affcd55-e245-465a-a08c-407d9bfd7a75.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image {
  box-sizing: border-box;
}



.s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2affcd55-e245-465a-a08c-407d9bfd7a75 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container {
      position: relative;
    }

    .s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

@media (min-width: 1200px){#s-2affcd55-e245-465a-a08c-407d9bfd7a75 {
  margin: 0 !important;
  overflow: visible;
}

#s-2affcd55-e245-465a-a08c-407d9bfd7a75-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2affcd55-e245-465a-a08c-407d9bfd7a75 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2affcd55-e245-465a-a08c-407d9bfd7a75 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image {
  /* Add background color handling */
  
}

#s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2affcd55-e245-465a-a08c-407d9bfd7a75 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2affcd55-e245-465a-a08c-407d9bfd7a75 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2affcd55-e245-465a-a08c-407d9bfd7a75 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-2affcd55-e245-465a-a08c-407d9bfd7a75 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2affcd55-e245-465a-a08c-407d9bfd7a75.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image {
  box-sizing: border-box;
}



.s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2affcd55-e245-465a-a08c-407d9bfd7a75 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container {
      position: relative;
    }

    .s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-2affcd55-e245-465a-a08c-407d9bfd7a75 {
  margin: 0 !important;
  overflow: visible;
}

#s-2affcd55-e245-465a-a08c-407d9bfd7a75-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2affcd55-e245-465a-a08c-407d9bfd7a75 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2affcd55-e245-465a-a08c-407d9bfd7a75 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image {
  /* Add background color handling */
  
}

#s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2affcd55-e245-465a-a08c-407d9bfd7a75 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2affcd55-e245-465a-a08c-407d9bfd7a75 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2affcd55-e245-465a-a08c-407d9bfd7a75 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-2affcd55-e245-465a-a08c-407d9bfd7a75 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2affcd55-e245-465a-a08c-407d9bfd7a75.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image {
  box-sizing: border-box;
}



.s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2affcd55-e245-465a-a08c-407d9bfd7a75 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container {
      position: relative;
    }

    .s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-2affcd55-e245-465a-a08c-407d9bfd7a75 {
  margin: 0 !important;
  overflow: visible;
}

#s-2affcd55-e245-465a-a08c-407d9bfd7a75-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2affcd55-e245-465a-a08c-407d9bfd7a75 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2affcd55-e245-465a-a08c-407d9bfd7a75 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image {
  /* Add background color handling */
  
}

#s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2affcd55-e245-465a-a08c-407d9bfd7a75 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2affcd55-e245-465a-a08c-407d9bfd7a75 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2affcd55-e245-465a-a08c-407d9bfd7a75 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-2affcd55-e245-465a-a08c-407d9bfd7a75 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2affcd55-e245-465a-a08c-407d9bfd7a75.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image {
  box-sizing: border-box;
}



.s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2affcd55-e245-465a-a08c-407d9bfd7a75 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container {
      position: relative;
    }

    .s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}@media (max-width: 767px){#s-2affcd55-e245-465a-a08c-407d9bfd7a75 {
  margin: 0 !important;
  overflow: visible;
}

#s-2affcd55-e245-465a-a08c-407d9bfd7a75-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2affcd55-e245-465a-a08c-407d9bfd7a75 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2affcd55-e245-465a-a08c-407d9bfd7a75 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image {
  /* Add background color handling */
  
}

#s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2affcd55-e245-465a-a08c-407d9bfd7a75 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2affcd55-e245-465a-a08c-407d9bfd7a75 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2affcd55-e245-465a-a08c-407d9bfd7a75 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 100px;
  }



  img.s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-2affcd55-e245-465a-a08c-407d9bfd7a75 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2affcd55-e245-465a-a08c-407d9bfd7a75.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image {
  box-sizing: border-box;
}



.s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2affcd55-e245-465a-a08c-407d9bfd7a75 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container {
      position: relative;
    }

    .s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2affcd55-e245-465a-a08c-407d9bfd7a75.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2affcd55-e245-465a-a08c-407d9bfd7a75 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}
#s-71d30887-e52c-4693-9a5a-7a64ff4f54c0 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-71d30887-e52c-4693-9a5a-7a64ff4f54c0 {
  text-align: center;
}
}
#s-71d30887-e52c-4693-9a5a-7a64ff4f54c0 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-71d30887-e52c-4693-9a5a-7a64ff4f54c0 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}@media (max-width: 767px){#s-71d30887-e52c-4693-9a5a-7a64ff4f54c0 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


}
#s-ad45408b-52ba-4cda-92d0-bd6f4da43388 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-ad45408b-52ba-4cda-92d0-bd6f4da43388 {
  display: none;
}
#s-ad45408b-52ba-4cda-92d0-bd6f4da43388, #wrap-s-ad45408b-52ba-4cda-92d0-bd6f4da43388, #wrap-content-s-ad45408b-52ba-4cda-92d0-bd6f4da43388 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ad45408b-52ba-4cda-92d0-bd6f4da43388 {
  display: none;
}
#s-ad45408b-52ba-4cda-92d0-bd6f4da43388, #wrap-s-ad45408b-52ba-4cda-92d0-bd6f4da43388, #wrap-content-s-ad45408b-52ba-4cda-92d0-bd6f4da43388 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ad45408b-52ba-4cda-92d0-bd6f4da43388 {
  display: none;
}
#s-ad45408b-52ba-4cda-92d0-bd6f4da43388, #wrap-s-ad45408b-52ba-4cda-92d0-bd6f4da43388, #wrap-content-s-ad45408b-52ba-4cda-92d0-bd6f4da43388 { display: none !important; }}@media (max-width: 767px){#s-ad45408b-52ba-4cda-92d0-bd6f4da43388 {
  margin-top: 10px;
margin-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-ad45408b-52ba-4cda-92d0-bd6f4da43388"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-ad45408b-52ba-4cda-92d0-bd6f4da43388"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ad45408b-52ba-4cda-92d0-bd6f4da43388"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ad45408b-52ba-4cda-92d0-bd6f4da43388"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-f2c331d4-fbff-4e9a-96e2-bc573507b97b {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-f2c331d4-fbff-4e9a-96e2-bc573507b97b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f2c331d4-fbff-4e9a-96e2-bc573507b97b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-f2c331d4-fbff-4e9a-96e2-bc573507b97b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-f2c331d4-fbff-4e9a-96e2-bc573507b97b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-f2c331d4-fbff-4e9a-96e2-bc573507b97b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-f2c331d4-fbff-4e9a-96e2-bc573507b97b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-f2c331d4-fbff-4e9a-96e2-bc573507b97b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 10.0px);
}

}

#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 {
  margin-left: auto;
margin-right: auto;
max-width: 50px;
aspect-ratio: 1/1;
text-align: center;
}

#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 {
  margin: 0 !important;
  overflow: visible;
}

#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image {
  /* Add background color handling */
  
}

#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image {
  box-sizing: border-box;
}



.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container {
      position: relative;
    }

    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

@media (min-width: 1200px){#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 {
  margin: 0 !important;
  overflow: visible;
}

#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image {
  /* Add background color handling */
  
}

#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image {
  box-sizing: border-box;
}



.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container {
      position: relative;
    }

    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 {
  margin: 0 !important;
  overflow: visible;
}

#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image {
  /* Add background color handling */
  
}

#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image {
  box-sizing: border-box;
}



.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container {
      position: relative;
    }

    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 {
  margin: 0 !important;
  overflow: visible;
}

#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image {
  /* Add background color handling */
  
}

#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image {
  box-sizing: border-box;
}



.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container {
      position: relative;
    }

    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (max-width: 767px){#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 {
  margin: 0 !important;
  overflow: visible;
}

#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image {
  /* Add background color handling */
  
}

#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image {
  box-sizing: border-box;
}



.s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container {
      position: relative;
    }

    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7ffea7c-f021-4b46-93e0-6a2aefca1b74 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}
#s-3517df76-7f27-43a8-8765-27fe53e0a1bc {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-3517df76-7f27-43a8-8765-27fe53e0a1bc {
  text-align: center;
}
}
#s-3517df76-7f27-43a8-8765-27fe53e0a1bc .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-3517df76-7f27-43a8-8765-27fe53e0a1bc .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-69796f03-4b84-4405-8c49-be72e629a2dd {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-69796f03-4b84-4405-8c49-be72e629a2dd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-69796f03-4b84-4405-8c49-be72e629a2dd"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-69796f03-4b84-4405-8c49-be72e629a2dd"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-69796f03-4b84-4405-8c49-be72e629a2dd"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-69796f03-4b84-4405-8c49-be72e629a2dd"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-69796f03-4b84-4405-8c49-be72e629a2dd"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-69796f03-4b84-4405-8c49-be72e629a2dd"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 10.0px);
}

}

#s-a147d47c-c12c-454e-9a03-f558992ba811 {
  margin-left: auto;
margin-right: auto;
max-width: 50px;
aspect-ratio: 1/1;
text-align: center;
}

#s-a147d47c-c12c-454e-9a03-f558992ba811 {
  margin: 0 !important;
  overflow: visible;
}

#s-a147d47c-c12c-454e-9a03-f558992ba811-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a147d47c-c12c-454e-9a03-f558992ba811 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a147d47c-c12c-454e-9a03-f558992ba811 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image {
  /* Add background color handling */
  
}

#s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a147d47c-c12c-454e-9a03-f558992ba811 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a147d47c-c12c-454e-9a03-f558992ba811 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a147d47c-c12c-454e-9a03-f558992ba811 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-a147d47c-c12c-454e-9a03-f558992ba811 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a147d47c-c12c-454e-9a03-f558992ba811.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image {
  box-sizing: border-box;
}



.s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a147d47c-c12c-454e-9a03-f558992ba811 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container {
      position: relative;
    }

    .s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

@media (min-width: 1200px){#s-a147d47c-c12c-454e-9a03-f558992ba811 {
  margin: 0 !important;
  overflow: visible;
}

#s-a147d47c-c12c-454e-9a03-f558992ba811-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a147d47c-c12c-454e-9a03-f558992ba811 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a147d47c-c12c-454e-9a03-f558992ba811 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image {
  /* Add background color handling */
  
}

#s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a147d47c-c12c-454e-9a03-f558992ba811 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a147d47c-c12c-454e-9a03-f558992ba811 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a147d47c-c12c-454e-9a03-f558992ba811 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-a147d47c-c12c-454e-9a03-f558992ba811 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a147d47c-c12c-454e-9a03-f558992ba811.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image {
  box-sizing: border-box;
}



.s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a147d47c-c12c-454e-9a03-f558992ba811 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container {
      position: relative;
    }

    .s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-a147d47c-c12c-454e-9a03-f558992ba811 {
  margin: 0 !important;
  overflow: visible;
}

#s-a147d47c-c12c-454e-9a03-f558992ba811-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a147d47c-c12c-454e-9a03-f558992ba811 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a147d47c-c12c-454e-9a03-f558992ba811 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image {
  /* Add background color handling */
  
}

#s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a147d47c-c12c-454e-9a03-f558992ba811 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a147d47c-c12c-454e-9a03-f558992ba811 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a147d47c-c12c-454e-9a03-f558992ba811 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-a147d47c-c12c-454e-9a03-f558992ba811 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a147d47c-c12c-454e-9a03-f558992ba811.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image {
  box-sizing: border-box;
}



.s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a147d47c-c12c-454e-9a03-f558992ba811 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container {
      position: relative;
    }

    .s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-a147d47c-c12c-454e-9a03-f558992ba811 {
  margin: 0 !important;
  overflow: visible;
}

#s-a147d47c-c12c-454e-9a03-f558992ba811-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a147d47c-c12c-454e-9a03-f558992ba811 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a147d47c-c12c-454e-9a03-f558992ba811 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image {
  /* Add background color handling */
  
}

#s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a147d47c-c12c-454e-9a03-f558992ba811 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a147d47c-c12c-454e-9a03-f558992ba811 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a147d47c-c12c-454e-9a03-f558992ba811 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-a147d47c-c12c-454e-9a03-f558992ba811 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a147d47c-c12c-454e-9a03-f558992ba811.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image {
  box-sizing: border-box;
}



.s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a147d47c-c12c-454e-9a03-f558992ba811 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container {
      position: relative;
    }

    .s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (max-width: 767px){#s-a147d47c-c12c-454e-9a03-f558992ba811 {
  margin: 0 !important;
  overflow: visible;
}

#s-a147d47c-c12c-454e-9a03-f558992ba811-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a147d47c-c12c-454e-9a03-f558992ba811 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a147d47c-c12c-454e-9a03-f558992ba811 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image {
  /* Add background color handling */
  
}

#s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a147d47c-c12c-454e-9a03-f558992ba811 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a147d47c-c12c-454e-9a03-f558992ba811 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a147d47c-c12c-454e-9a03-f558992ba811 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-a147d47c-c12c-454e-9a03-f558992ba811 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a147d47c-c12c-454e-9a03-f558992ba811.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image {
  box-sizing: border-box;
}



.s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a147d47c-c12c-454e-9a03-f558992ba811 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container {
      position: relative;
    }

    .s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a147d47c-c12c-454e-9a03-f558992ba811.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a147d47c-c12c-454e-9a03-f558992ba811 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}
#s-d99fc464-2f20-43f3-805b-8f20cae73379 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-d99fc464-2f20-43f3-805b-8f20cae73379 {
  text-align: center;
}
}
#s-d99fc464-2f20-43f3-805b-8f20cae73379 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-d99fc464-2f20-43f3-805b-8f20cae73379 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-51bfe03f-c075-4b13-9270-6290a100e152 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-51bfe03f-c075-4b13-9270-6290a100e152 {
  display: none;
}
#s-51bfe03f-c075-4b13-9270-6290a100e152, #wrap-s-51bfe03f-c075-4b13-9270-6290a100e152, #wrap-content-s-51bfe03f-c075-4b13-9270-6290a100e152 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-51bfe03f-c075-4b13-9270-6290a100e152 {
  display: none;
}
#s-51bfe03f-c075-4b13-9270-6290a100e152, #wrap-s-51bfe03f-c075-4b13-9270-6290a100e152, #wrap-content-s-51bfe03f-c075-4b13-9270-6290a100e152 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-51bfe03f-c075-4b13-9270-6290a100e152 {
  display: none;
}
#s-51bfe03f-c075-4b13-9270-6290a100e152, #wrap-s-51bfe03f-c075-4b13-9270-6290a100e152, #wrap-content-s-51bfe03f-c075-4b13-9270-6290a100e152 { display: none !important; }}@media (max-width: 767px){#s-51bfe03f-c075-4b13-9270-6290a100e152 {
  margin-top: 10px;
margin-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-51bfe03f-c075-4b13-9270-6290a100e152"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-51bfe03f-c075-4b13-9270-6290a100e152"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-51bfe03f-c075-4b13-9270-6290a100e152"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-51bfe03f-c075-4b13-9270-6290a100e152"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-d972667e-b6b1-448d-bfa6-8db664191f18 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-d972667e-b6b1-448d-bfa6-8db664191f18"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d972667e-b6b1-448d-bfa6-8db664191f18"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-d972667e-b6b1-448d-bfa6-8db664191f18"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-d972667e-b6b1-448d-bfa6-8db664191f18"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-d972667e-b6b1-448d-bfa6-8db664191f18"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-d972667e-b6b1-448d-bfa6-8db664191f18"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-d972667e-b6b1-448d-bfa6-8db664191f18"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 10.0px);
}

}

#s-e91d2020-6af4-4b8f-a9af-632513c81d6d {
  margin-left: auto;
margin-right: auto;
max-width: 50px;
aspect-ratio: 1/1;
text-align: center;
}

#s-e91d2020-6af4-4b8f-a9af-632513c81d6d {
  margin: 0 !important;
  overflow: visible;
}

#s-e91d2020-6af4-4b8f-a9af-632513c81d6d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e91d2020-6af4-4b8f-a9af-632513c81d6d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e91d2020-6af4-4b8f-a9af-632513c81d6d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image {
  /* Add background color handling */
  
}

#s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e91d2020-6af4-4b8f-a9af-632513c81d6d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e91d2020-6af4-4b8f-a9af-632513c81d6d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e91d2020-6af4-4b8f-a9af-632513c81d6d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-e91d2020-6af4-4b8f-a9af-632513c81d6d .shogun-image-content {
  
    justify-content: center;
  
}

.s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image {
  box-sizing: border-box;
}



.s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container {
      position: relative;
    }

    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

@media (min-width: 1200px){#s-e91d2020-6af4-4b8f-a9af-632513c81d6d {
  margin: 0 !important;
  overflow: visible;
}

#s-e91d2020-6af4-4b8f-a9af-632513c81d6d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e91d2020-6af4-4b8f-a9af-632513c81d6d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e91d2020-6af4-4b8f-a9af-632513c81d6d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image {
  /* Add background color handling */
  
}

#s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e91d2020-6af4-4b8f-a9af-632513c81d6d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e91d2020-6af4-4b8f-a9af-632513c81d6d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e91d2020-6af4-4b8f-a9af-632513c81d6d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-e91d2020-6af4-4b8f-a9af-632513c81d6d .shogun-image-content {
  
    justify-content: center;
  
}

.s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image {
  box-sizing: border-box;
}



.s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container {
      position: relative;
    }

    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-e91d2020-6af4-4b8f-a9af-632513c81d6d {
  margin: 0 !important;
  overflow: visible;
}

#s-e91d2020-6af4-4b8f-a9af-632513c81d6d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e91d2020-6af4-4b8f-a9af-632513c81d6d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e91d2020-6af4-4b8f-a9af-632513c81d6d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image {
  /* Add background color handling */
  
}

#s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e91d2020-6af4-4b8f-a9af-632513c81d6d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e91d2020-6af4-4b8f-a9af-632513c81d6d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e91d2020-6af4-4b8f-a9af-632513c81d6d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-e91d2020-6af4-4b8f-a9af-632513c81d6d .shogun-image-content {
  
    justify-content: center;
  
}

.s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image {
  box-sizing: border-box;
}



.s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container {
      position: relative;
    }

    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-e91d2020-6af4-4b8f-a9af-632513c81d6d {
  margin: 0 !important;
  overflow: visible;
}

#s-e91d2020-6af4-4b8f-a9af-632513c81d6d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e91d2020-6af4-4b8f-a9af-632513c81d6d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e91d2020-6af4-4b8f-a9af-632513c81d6d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image {
  /* Add background color handling */
  
}

#s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e91d2020-6af4-4b8f-a9af-632513c81d6d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e91d2020-6af4-4b8f-a9af-632513c81d6d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e91d2020-6af4-4b8f-a9af-632513c81d6d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-e91d2020-6af4-4b8f-a9af-632513c81d6d .shogun-image-content {
  
    justify-content: center;
  
}

.s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image {
  box-sizing: border-box;
}



.s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container {
      position: relative;
    }

    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (max-width: 767px){#s-e91d2020-6af4-4b8f-a9af-632513c81d6d {
  margin: 0 !important;
  overflow: visible;
}

#s-e91d2020-6af4-4b8f-a9af-632513c81d6d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e91d2020-6af4-4b8f-a9af-632513c81d6d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e91d2020-6af4-4b8f-a9af-632513c81d6d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image {
  /* Add background color handling */
  
}

#s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e91d2020-6af4-4b8f-a9af-632513c81d6d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e91d2020-6af4-4b8f-a9af-632513c81d6d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e91d2020-6af4-4b8f-a9af-632513c81d6d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-e91d2020-6af4-4b8f-a9af-632513c81d6d .shogun-image-content {
  
    justify-content: center;
  
}

.s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image {
  box-sizing: border-box;
}



.s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container {
      position: relative;
    }

    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e91d2020-6af4-4b8f-a9af-632513c81d6d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}
#s-a6b64c8f-d2a9-48af-9a24-25ccda38e624 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-a6b64c8f-d2a9-48af-9a24-25ccda38e624 {
  text-align: center;
}
}
#s-a6b64c8f-d2a9-48af-9a24-25ccda38e624 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-a6b64c8f-d2a9-48af-9a24-25ccda38e624 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-d794d888-454b-474f-9c00-a629e82be781 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-d794d888-454b-474f-9c00-a629e82be781"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d794d888-454b-474f-9c00-a629e82be781"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-d794d888-454b-474f-9c00-a629e82be781"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-d794d888-454b-474f-9c00-a629e82be781"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-d794d888-454b-474f-9c00-a629e82be781"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-d794d888-454b-474f-9c00-a629e82be781"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-d794d888-454b-474f-9c00-a629e82be781"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 10.0px);
}

}

#s-3c07d315-46fe-4521-a554-0c3e304d02c6 {
  margin-left: auto;
margin-right: auto;
max-width: 50px;
aspect-ratio: 1/1;
text-align: center;
}

#s-3c07d315-46fe-4521-a554-0c3e304d02c6 {
  margin: 0 !important;
  overflow: visible;
}

#s-3c07d315-46fe-4521-a554-0c3e304d02c6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3c07d315-46fe-4521-a554-0c3e304d02c6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3c07d315-46fe-4521-a554-0c3e304d02c6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image {
  /* Add background color handling */
  
}

#s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3c07d315-46fe-4521-a554-0c3e304d02c6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3c07d315-46fe-4521-a554-0c3e304d02c6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3c07d315-46fe-4521-a554-0c3e304d02c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-3c07d315-46fe-4521-a554-0c3e304d02c6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3c07d315-46fe-4521-a554-0c3e304d02c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image {
  box-sizing: border-box;
}



.s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3c07d315-46fe-4521-a554-0c3e304d02c6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container {
      position: relative;
    }

    .s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

@media (min-width: 1200px){#s-3c07d315-46fe-4521-a554-0c3e304d02c6 {
  margin: 0 !important;
  overflow: visible;
}

#s-3c07d315-46fe-4521-a554-0c3e304d02c6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3c07d315-46fe-4521-a554-0c3e304d02c6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3c07d315-46fe-4521-a554-0c3e304d02c6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image {
  /* Add background color handling */
  
}

#s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3c07d315-46fe-4521-a554-0c3e304d02c6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3c07d315-46fe-4521-a554-0c3e304d02c6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3c07d315-46fe-4521-a554-0c3e304d02c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-3c07d315-46fe-4521-a554-0c3e304d02c6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3c07d315-46fe-4521-a554-0c3e304d02c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image {
  box-sizing: border-box;
}



.s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3c07d315-46fe-4521-a554-0c3e304d02c6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container {
      position: relative;
    }

    .s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-3c07d315-46fe-4521-a554-0c3e304d02c6 {
  margin: 0 !important;
  overflow: visible;
}

#s-3c07d315-46fe-4521-a554-0c3e304d02c6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3c07d315-46fe-4521-a554-0c3e304d02c6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3c07d315-46fe-4521-a554-0c3e304d02c6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image {
  /* Add background color handling */
  
}

#s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3c07d315-46fe-4521-a554-0c3e304d02c6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3c07d315-46fe-4521-a554-0c3e304d02c6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3c07d315-46fe-4521-a554-0c3e304d02c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-3c07d315-46fe-4521-a554-0c3e304d02c6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3c07d315-46fe-4521-a554-0c3e304d02c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image {
  box-sizing: border-box;
}



.s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3c07d315-46fe-4521-a554-0c3e304d02c6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container {
      position: relative;
    }

    .s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-3c07d315-46fe-4521-a554-0c3e304d02c6 {
  margin: 0 !important;
  overflow: visible;
}

#s-3c07d315-46fe-4521-a554-0c3e304d02c6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3c07d315-46fe-4521-a554-0c3e304d02c6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3c07d315-46fe-4521-a554-0c3e304d02c6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image {
  /* Add background color handling */
  
}

#s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3c07d315-46fe-4521-a554-0c3e304d02c6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3c07d315-46fe-4521-a554-0c3e304d02c6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3c07d315-46fe-4521-a554-0c3e304d02c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-3c07d315-46fe-4521-a554-0c3e304d02c6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3c07d315-46fe-4521-a554-0c3e304d02c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image {
  box-sizing: border-box;
}



.s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3c07d315-46fe-4521-a554-0c3e304d02c6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container {
      position: relative;
    }

    .s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}@media (max-width: 767px){#s-3c07d315-46fe-4521-a554-0c3e304d02c6 {
  margin: 0 !important;
  overflow: visible;
}

#s-3c07d315-46fe-4521-a554-0c3e304d02c6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3c07d315-46fe-4521-a554-0c3e304d02c6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3c07d315-46fe-4521-a554-0c3e304d02c6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image {
  /* Add background color handling */
  
}

#s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3c07d315-46fe-4521-a554-0c3e304d02c6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3c07d315-46fe-4521-a554-0c3e304d02c6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3c07d315-46fe-4521-a554-0c3e304d02c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 50px;
  }



  img.s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image {
    
    
    
    max-height: 50px;
  }


.s-3c07d315-46fe-4521-a554-0c3e304d02c6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3c07d315-46fe-4521-a554-0c3e304d02c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image {
  box-sizing: border-box;
}



.s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3c07d315-46fe-4521-a554-0c3e304d02c6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container {
      position: relative;
    }

    .s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c07d315-46fe-4521-a554-0c3e304d02c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c07d315-46fe-4521-a554-0c3e304d02c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 50px;
    }
  }

}
#s-90184e0c-4c87-4d7e-94bd-adec0f1ac893 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-90184e0c-4c87-4d7e-94bd-adec0f1ac893 {
  text-align: center;
}
}
#s-90184e0c-4c87-4d7e-94bd-adec0f1ac893 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-90184e0c-4c87-4d7e-94bd-adec0f1ac893 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-3dc9ed50-941b-40f6-a5b4-e27320665521 {
  margin-left: auto;
margin-right: auto;
padding-top: 21px;
padding-bottom: 21px;
min-height: 50px;
}
@media (max-width: 767px){#s-3dc9ed50-941b-40f6-a5b4-e27320665521 {
  padding-top: 21px;
padding-bottom: 0px;
}
}







#s-3dc9ed50-941b-40f6-a5b4-e27320665521 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3dc9ed50-941b-40f6-a5b4-e27320665521.shg-box.shg-c {
  justify-content: center;
}

#s-b9b49c53-4e57-4a0c-80bd-925df176fa91 {
  margin-left: 15%;
margin-right: 15%;
}
@media (min-width: 1200px){#s-b9b49c53-4e57-4a0c-80bd-925df176fa91 {
  display: none;
}
#s-b9b49c53-4e57-4a0c-80bd-925df176fa91, #wrap-s-b9b49c53-4e57-4a0c-80bd-925df176fa91, #wrap-content-s-b9b49c53-4e57-4a0c-80bd-925df176fa91 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b9b49c53-4e57-4a0c-80bd-925df176fa91 {
  display: none;
}
#s-b9b49c53-4e57-4a0c-80bd-925df176fa91, #wrap-s-b9b49c53-4e57-4a0c-80bd-925df176fa91, #wrap-content-s-b9b49c53-4e57-4a0c-80bd-925df176fa91 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b9b49c53-4e57-4a0c-80bd-925df176fa91 {
  display: none;
}
#s-b9b49c53-4e57-4a0c-80bd-925df176fa91, #wrap-s-b9b49c53-4e57-4a0c-80bd-925df176fa91, #wrap-content-s-b9b49c53-4e57-4a0c-80bd-925df176fa91 { display: none !important; }}@media (max-width: 767px){#s-b9b49c53-4e57-4a0c-80bd-925df176fa91 {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-19c1fef5-29d1-4fee-a9f1-2576e48b672d {
  margin-left: 15%;
margin-right: 15%;
}
@media (max-width: 767px){#s-19c1fef5-29d1-4fee-a9f1-2576e48b672d {
  margin-left: 9%;
margin-right: 9%;
display: none;
}
#s-19c1fef5-29d1-4fee-a9f1-2576e48b672d, #wrap-s-19c1fef5-29d1-4fee-a9f1-2576e48b672d, #wrap-content-s-19c1fef5-29d1-4fee-a9f1-2576e48b672d { display: none !important; }}
#s-be02e442-b1c2-4d0e-aef6-c159b816d0c7 {
  margin-top: 0px;
margin-left: 15%;
margin-bottom: 9px;
margin-right: 15%;
}
@media (min-width: 768px) and (max-width: 991px){#s-be02e442-b1c2-4d0e-aef6-c159b816d0c7 {
  margin-left: 3%;
margin-right: 3%;
}
}@media (max-width: 767px){#s-be02e442-b1c2-4d0e-aef6-c159b816d0c7 {
  margin-left: 4%;
margin-right: 4%;
}
}
#s-1f5b1022-bf5a-4e0e-9233-ede43a0d95bd {
  margin-left: 20%;
margin-right: 20%;
}
@media (max-width: 767px){#s-1f5b1022-bf5a-4e0e-9233-ede43a0d95bd {
  margin-left: 7%;
margin-right: 7%;
}
}
@media (min-width: 0px) {
[id="s-1f5b1022-bf5a-4e0e-9233-ede43a0d95bd"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 6.0px);
}

}

@media (min-width: 768px) {
[id="s-1f5b1022-bf5a-4e0e-9233-ede43a0d95bd"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 9.0px);
}

}

@media (min-width: 992px) {
[id="s-1f5b1022-bf5a-4e0e-9233-ede43a0d95bd"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 9.0px);
}

}

@media (min-width: 1200px) {
[id="s-1f5b1022-bf5a-4e0e-9233-ede43a0d95bd"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 9.0px);
}

}

#s-34fa9681-54ff-48de-848f-f686f21e72eb {
  margin-left: auto;
margin-right: auto;
max-width: 125px;
text-align: center;
}

#s-34fa9681-54ff-48de-848f-f686f21e72eb {
  margin: 0 !important;
  overflow: visible;
}

#s-34fa9681-54ff-48de-848f-f686f21e72eb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-34fa9681-54ff-48de-848f-f686f21e72eb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-34fa9681-54ff-48de-848f-f686f21e72eb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-34fa9681-54ff-48de-848f-f686f21e72eb img.shogun-image {
  /* Add background color handling */
  
}

#s-34fa9681-54ff-48de-848f-f686f21e72eb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-34fa9681-54ff-48de-848f-f686f21e72eb .shogun-image-content {
  
    justify-content: center;
  
}

.s-34fa9681-54ff-48de-848f-f686f21e72eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34fa9681-54ff-48de-848f-f686f21e72eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34fa9681-54ff-48de-848f-f686f21e72eb.shogun-image {
  box-sizing: border-box;
}



.s-34fa9681-54ff-48de-848f-f686f21e72eb img.shogun-image {
  
}


@media (min-width: 1200px){#s-34fa9681-54ff-48de-848f-f686f21e72eb {
  margin: 0 !important;
  overflow: visible;
}

#s-34fa9681-54ff-48de-848f-f686f21e72eb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-34fa9681-54ff-48de-848f-f686f21e72eb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-34fa9681-54ff-48de-848f-f686f21e72eb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-34fa9681-54ff-48de-848f-f686f21e72eb img.shogun-image {
  /* Add background color handling */
  
}

#s-34fa9681-54ff-48de-848f-f686f21e72eb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-34fa9681-54ff-48de-848f-f686f21e72eb .shogun-image-content {
  
    justify-content: center;
  
}

.s-34fa9681-54ff-48de-848f-f686f21e72eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34fa9681-54ff-48de-848f-f686f21e72eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34fa9681-54ff-48de-848f-f686f21e72eb.shogun-image {
  box-sizing: border-box;
}



.s-34fa9681-54ff-48de-848f-f686f21e72eb img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-34fa9681-54ff-48de-848f-f686f21e72eb {
  margin: 0 !important;
  overflow: visible;
}

#s-34fa9681-54ff-48de-848f-f686f21e72eb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-34fa9681-54ff-48de-848f-f686f21e72eb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-34fa9681-54ff-48de-848f-f686f21e72eb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-34fa9681-54ff-48de-848f-f686f21e72eb img.shogun-image {
  /* Add background color handling */
  
}

#s-34fa9681-54ff-48de-848f-f686f21e72eb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-34fa9681-54ff-48de-848f-f686f21e72eb .shogun-image-content {
  
    justify-content: center;
  
}

.s-34fa9681-54ff-48de-848f-f686f21e72eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34fa9681-54ff-48de-848f-f686f21e72eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34fa9681-54ff-48de-848f-f686f21e72eb.shogun-image {
  box-sizing: border-box;
}



.s-34fa9681-54ff-48de-848f-f686f21e72eb img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-34fa9681-54ff-48de-848f-f686f21e72eb {
  margin: 0 !important;
  overflow: visible;
}

#s-34fa9681-54ff-48de-848f-f686f21e72eb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-34fa9681-54ff-48de-848f-f686f21e72eb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-34fa9681-54ff-48de-848f-f686f21e72eb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-34fa9681-54ff-48de-848f-f686f21e72eb img.shogun-image {
  /* Add background color handling */
  
}

#s-34fa9681-54ff-48de-848f-f686f21e72eb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-34fa9681-54ff-48de-848f-f686f21e72eb .shogun-image-content {
  
    justify-content: center;
  
}

.s-34fa9681-54ff-48de-848f-f686f21e72eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34fa9681-54ff-48de-848f-f686f21e72eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34fa9681-54ff-48de-848f-f686f21e72eb.shogun-image {
  box-sizing: border-box;
}



.s-34fa9681-54ff-48de-848f-f686f21e72eb img.shogun-image {
  
}


}@media (max-width: 767px){#s-34fa9681-54ff-48de-848f-f686f21e72eb {
  margin: 0 !important;
  overflow: visible;
}

#s-34fa9681-54ff-48de-848f-f686f21e72eb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-34fa9681-54ff-48de-848f-f686f21e72eb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-34fa9681-54ff-48de-848f-f686f21e72eb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-34fa9681-54ff-48de-848f-f686f21e72eb img.shogun-image {
  /* Add background color handling */
  
}

#s-34fa9681-54ff-48de-848f-f686f21e72eb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-34fa9681-54ff-48de-848f-f686f21e72eb .shogun-image-content {
  
    justify-content: center;
  
}

.s-34fa9681-54ff-48de-848f-f686f21e72eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34fa9681-54ff-48de-848f-f686f21e72eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34fa9681-54ff-48de-848f-f686f21e72eb.shogun-image {
  box-sizing: border-box;
}



.s-34fa9681-54ff-48de-848f-f686f21e72eb img.shogun-image {
  
}


}
#s-c606f2b8-34fe-4dc2-92f7-8068588d0870 {
  margin-left: auto;
margin-right: auto;
}

#s-76ddd0bb-58fc-499f-a393-05e4254f0aec {
  margin-left: auto;
margin-right: auto;
max-width: 125px;
text-align: center;
}

#s-76ddd0bb-58fc-499f-a393-05e4254f0aec {
  margin: 0 !important;
  overflow: visible;
}

#s-76ddd0bb-58fc-499f-a393-05e4254f0aec-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-76ddd0bb-58fc-499f-a393-05e4254f0aec {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-76ddd0bb-58fc-499f-a393-05e4254f0aec {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-76ddd0bb-58fc-499f-a393-05e4254f0aec img.shogun-image {
  /* Add background color handling */
  
}

#s-76ddd0bb-58fc-499f-a393-05e4254f0aec img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-76ddd0bb-58fc-499f-a393-05e4254f0aec .shogun-image-content {
  
    justify-content: center;
  
}

.s-76ddd0bb-58fc-499f-a393-05e4254f0aec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-76ddd0bb-58fc-499f-a393-05e4254f0aec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76ddd0bb-58fc-499f-a393-05e4254f0aec.shogun-image {
  box-sizing: border-box;
}



.s-76ddd0bb-58fc-499f-a393-05e4254f0aec img.shogun-image {
  
}


@media (min-width: 1200px){#s-76ddd0bb-58fc-499f-a393-05e4254f0aec {
  margin: 0 !important;
  overflow: visible;
}

#s-76ddd0bb-58fc-499f-a393-05e4254f0aec-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-76ddd0bb-58fc-499f-a393-05e4254f0aec {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-76ddd0bb-58fc-499f-a393-05e4254f0aec {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-76ddd0bb-58fc-499f-a393-05e4254f0aec img.shogun-image {
  /* Add background color handling */
  
}

#s-76ddd0bb-58fc-499f-a393-05e4254f0aec img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-76ddd0bb-58fc-499f-a393-05e4254f0aec .shogun-image-content {
  
    justify-content: center;
  
}

.s-76ddd0bb-58fc-499f-a393-05e4254f0aec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-76ddd0bb-58fc-499f-a393-05e4254f0aec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76ddd0bb-58fc-499f-a393-05e4254f0aec.shogun-image {
  box-sizing: border-box;
}



.s-76ddd0bb-58fc-499f-a393-05e4254f0aec img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-76ddd0bb-58fc-499f-a393-05e4254f0aec {
  margin: 0 !important;
  overflow: visible;
}

#s-76ddd0bb-58fc-499f-a393-05e4254f0aec-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-76ddd0bb-58fc-499f-a393-05e4254f0aec {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-76ddd0bb-58fc-499f-a393-05e4254f0aec {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-76ddd0bb-58fc-499f-a393-05e4254f0aec img.shogun-image {
  /* Add background color handling */
  
}

#s-76ddd0bb-58fc-499f-a393-05e4254f0aec img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-76ddd0bb-58fc-499f-a393-05e4254f0aec .shogun-image-content {
  
    justify-content: center;
  
}

.s-76ddd0bb-58fc-499f-a393-05e4254f0aec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-76ddd0bb-58fc-499f-a393-05e4254f0aec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76ddd0bb-58fc-499f-a393-05e4254f0aec.shogun-image {
  box-sizing: border-box;
}



.s-76ddd0bb-58fc-499f-a393-05e4254f0aec img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-76ddd0bb-58fc-499f-a393-05e4254f0aec {
  margin: 0 !important;
  overflow: visible;
}

#s-76ddd0bb-58fc-499f-a393-05e4254f0aec-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-76ddd0bb-58fc-499f-a393-05e4254f0aec {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-76ddd0bb-58fc-499f-a393-05e4254f0aec {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-76ddd0bb-58fc-499f-a393-05e4254f0aec img.shogun-image {
  /* Add background color handling */
  
}

#s-76ddd0bb-58fc-499f-a393-05e4254f0aec img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-76ddd0bb-58fc-499f-a393-05e4254f0aec .shogun-image-content {
  
    justify-content: center;
  
}

.s-76ddd0bb-58fc-499f-a393-05e4254f0aec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-76ddd0bb-58fc-499f-a393-05e4254f0aec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76ddd0bb-58fc-499f-a393-05e4254f0aec.shogun-image {
  box-sizing: border-box;
}



.s-76ddd0bb-58fc-499f-a393-05e4254f0aec img.shogun-image {
  
}


}@media (max-width: 767px){#s-76ddd0bb-58fc-499f-a393-05e4254f0aec {
  margin: 0 !important;
  overflow: visible;
}

#s-76ddd0bb-58fc-499f-a393-05e4254f0aec-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-76ddd0bb-58fc-499f-a393-05e4254f0aec {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-76ddd0bb-58fc-499f-a393-05e4254f0aec {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-76ddd0bb-58fc-499f-a393-05e4254f0aec img.shogun-image {
  /* Add background color handling */
  
}

#s-76ddd0bb-58fc-499f-a393-05e4254f0aec img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-76ddd0bb-58fc-499f-a393-05e4254f0aec .shogun-image-content {
  
    justify-content: center;
  
}

.s-76ddd0bb-58fc-499f-a393-05e4254f0aec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-76ddd0bb-58fc-499f-a393-05e4254f0aec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76ddd0bb-58fc-499f-a393-05e4254f0aec.shogun-image {
  box-sizing: border-box;
}



.s-76ddd0bb-58fc-499f-a393-05e4254f0aec img.shogun-image {
  
}


}
#s-e081562c-9e01-442b-bfd8-ea995b2f2715 {
  margin-left: auto;
margin-right: auto;
}

#s-7daf988e-df4b-4e67-8cde-90fcd9cda733 {
  margin-left: auto;
margin-right: auto;
max-width: 125px;
text-align: center;
}

#s-7daf988e-df4b-4e67-8cde-90fcd9cda733 {
  margin: 0 !important;
  overflow: visible;
}

#s-7daf988e-df4b-4e67-8cde-90fcd9cda733-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7daf988e-df4b-4e67-8cde-90fcd9cda733 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7daf988e-df4b-4e67-8cde-90fcd9cda733 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7daf988e-df4b-4e67-8cde-90fcd9cda733 img.shogun-image {
  /* Add background color handling */
  
}

#s-7daf988e-df4b-4e67-8cde-90fcd9cda733 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-7daf988e-df4b-4e67-8cde-90fcd9cda733 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7daf988e-df4b-4e67-8cde-90fcd9cda733.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7daf988e-df4b-4e67-8cde-90fcd9cda733.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7daf988e-df4b-4e67-8cde-90fcd9cda733.shogun-image {
  box-sizing: border-box;
}



.s-7daf988e-df4b-4e67-8cde-90fcd9cda733 img.shogun-image {
  
}


@media (min-width: 1200px){#s-7daf988e-df4b-4e67-8cde-90fcd9cda733 {
  margin: 0 !important;
  overflow: visible;
}

#s-7daf988e-df4b-4e67-8cde-90fcd9cda733-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7daf988e-df4b-4e67-8cde-90fcd9cda733 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7daf988e-df4b-4e67-8cde-90fcd9cda733 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7daf988e-df4b-4e67-8cde-90fcd9cda733 img.shogun-image {
  /* Add background color handling */
  
}

#s-7daf988e-df4b-4e67-8cde-90fcd9cda733 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-7daf988e-df4b-4e67-8cde-90fcd9cda733 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7daf988e-df4b-4e67-8cde-90fcd9cda733.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7daf988e-df4b-4e67-8cde-90fcd9cda733.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7daf988e-df4b-4e67-8cde-90fcd9cda733.shogun-image {
  box-sizing: border-box;
}



.s-7daf988e-df4b-4e67-8cde-90fcd9cda733 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-7daf988e-df4b-4e67-8cde-90fcd9cda733 {
  margin: 0 !important;
  overflow: visible;
}

#s-7daf988e-df4b-4e67-8cde-90fcd9cda733-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7daf988e-df4b-4e67-8cde-90fcd9cda733 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7daf988e-df4b-4e67-8cde-90fcd9cda733 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7daf988e-df4b-4e67-8cde-90fcd9cda733 img.shogun-image {
  /* Add background color handling */
  
}

#s-7daf988e-df4b-4e67-8cde-90fcd9cda733 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-7daf988e-df4b-4e67-8cde-90fcd9cda733 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7daf988e-df4b-4e67-8cde-90fcd9cda733.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7daf988e-df4b-4e67-8cde-90fcd9cda733.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7daf988e-df4b-4e67-8cde-90fcd9cda733.shogun-image {
  box-sizing: border-box;
}



.s-7daf988e-df4b-4e67-8cde-90fcd9cda733 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-7daf988e-df4b-4e67-8cde-90fcd9cda733 {
  margin: 0 !important;
  overflow: visible;
}

#s-7daf988e-df4b-4e67-8cde-90fcd9cda733-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7daf988e-df4b-4e67-8cde-90fcd9cda733 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7daf988e-df4b-4e67-8cde-90fcd9cda733 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7daf988e-df4b-4e67-8cde-90fcd9cda733 img.shogun-image {
  /* Add background color handling */
  
}

#s-7daf988e-df4b-4e67-8cde-90fcd9cda733 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-7daf988e-df4b-4e67-8cde-90fcd9cda733 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7daf988e-df4b-4e67-8cde-90fcd9cda733.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7daf988e-df4b-4e67-8cde-90fcd9cda733.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7daf988e-df4b-4e67-8cde-90fcd9cda733.shogun-image {
  box-sizing: border-box;
}



.s-7daf988e-df4b-4e67-8cde-90fcd9cda733 img.shogun-image {
  
}


}@media (max-width: 767px){#s-7daf988e-df4b-4e67-8cde-90fcd9cda733 {
  margin: 0 !important;
  overflow: visible;
}

#s-7daf988e-df4b-4e67-8cde-90fcd9cda733-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7daf988e-df4b-4e67-8cde-90fcd9cda733 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7daf988e-df4b-4e67-8cde-90fcd9cda733 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7daf988e-df4b-4e67-8cde-90fcd9cda733 img.shogun-image {
  /* Add background color handling */
  
}

#s-7daf988e-df4b-4e67-8cde-90fcd9cda733 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-7daf988e-df4b-4e67-8cde-90fcd9cda733 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7daf988e-df4b-4e67-8cde-90fcd9cda733.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7daf988e-df4b-4e67-8cde-90fcd9cda733.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7daf988e-df4b-4e67-8cde-90fcd9cda733.shogun-image {
  box-sizing: border-box;
}



.s-7daf988e-df4b-4e67-8cde-90fcd9cda733 img.shogun-image {
  
}


}
#s-87ed944f-80b8-4e5b-b491-56874390f86f {
  margin-left: auto;
margin-right: auto;
}

#s-18557eee-c8b8-4291-ba7e-1ad294d5b385 {
  margin-left: auto;
margin-right: auto;
max-width: 125px;
text-align: center;
}

#s-18557eee-c8b8-4291-ba7e-1ad294d5b385 {
  margin: 0 !important;
  overflow: visible;
}

#s-18557eee-c8b8-4291-ba7e-1ad294d5b385-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-18557eee-c8b8-4291-ba7e-1ad294d5b385 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-18557eee-c8b8-4291-ba7e-1ad294d5b385 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-18557eee-c8b8-4291-ba7e-1ad294d5b385 img.shogun-image {
  /* Add background color handling */
  
}

#s-18557eee-c8b8-4291-ba7e-1ad294d5b385 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-18557eee-c8b8-4291-ba7e-1ad294d5b385 .shogun-image-content {
  
    justify-content: center;
  
}

.s-18557eee-c8b8-4291-ba7e-1ad294d5b385.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18557eee-c8b8-4291-ba7e-1ad294d5b385.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18557eee-c8b8-4291-ba7e-1ad294d5b385.shogun-image {
  box-sizing: border-box;
}



.s-18557eee-c8b8-4291-ba7e-1ad294d5b385 img.shogun-image {
  
}


@media (min-width: 1200px){#s-18557eee-c8b8-4291-ba7e-1ad294d5b385 {
  margin: 0 !important;
  overflow: visible;
}

#s-18557eee-c8b8-4291-ba7e-1ad294d5b385-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-18557eee-c8b8-4291-ba7e-1ad294d5b385 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-18557eee-c8b8-4291-ba7e-1ad294d5b385 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-18557eee-c8b8-4291-ba7e-1ad294d5b385 img.shogun-image {
  /* Add background color handling */
  
}

#s-18557eee-c8b8-4291-ba7e-1ad294d5b385 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-18557eee-c8b8-4291-ba7e-1ad294d5b385 .shogun-image-content {
  
    justify-content: center;
  
}

.s-18557eee-c8b8-4291-ba7e-1ad294d5b385.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18557eee-c8b8-4291-ba7e-1ad294d5b385.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18557eee-c8b8-4291-ba7e-1ad294d5b385.shogun-image {
  box-sizing: border-box;
}



.s-18557eee-c8b8-4291-ba7e-1ad294d5b385 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-18557eee-c8b8-4291-ba7e-1ad294d5b385 {
  margin: 0 !important;
  overflow: visible;
}

#s-18557eee-c8b8-4291-ba7e-1ad294d5b385-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-18557eee-c8b8-4291-ba7e-1ad294d5b385 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-18557eee-c8b8-4291-ba7e-1ad294d5b385 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-18557eee-c8b8-4291-ba7e-1ad294d5b385 img.shogun-image {
  /* Add background color handling */
  
}

#s-18557eee-c8b8-4291-ba7e-1ad294d5b385 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-18557eee-c8b8-4291-ba7e-1ad294d5b385 .shogun-image-content {
  
    justify-content: center;
  
}

.s-18557eee-c8b8-4291-ba7e-1ad294d5b385.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18557eee-c8b8-4291-ba7e-1ad294d5b385.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18557eee-c8b8-4291-ba7e-1ad294d5b385.shogun-image {
  box-sizing: border-box;
}



.s-18557eee-c8b8-4291-ba7e-1ad294d5b385 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-18557eee-c8b8-4291-ba7e-1ad294d5b385 {
  margin: 0 !important;
  overflow: visible;
}

#s-18557eee-c8b8-4291-ba7e-1ad294d5b385-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-18557eee-c8b8-4291-ba7e-1ad294d5b385 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-18557eee-c8b8-4291-ba7e-1ad294d5b385 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-18557eee-c8b8-4291-ba7e-1ad294d5b385 img.shogun-image {
  /* Add background color handling */
  
}

#s-18557eee-c8b8-4291-ba7e-1ad294d5b385 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-18557eee-c8b8-4291-ba7e-1ad294d5b385 .shogun-image-content {
  
    justify-content: center;
  
}

.s-18557eee-c8b8-4291-ba7e-1ad294d5b385.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18557eee-c8b8-4291-ba7e-1ad294d5b385.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18557eee-c8b8-4291-ba7e-1ad294d5b385.shogun-image {
  box-sizing: border-box;
}



.s-18557eee-c8b8-4291-ba7e-1ad294d5b385 img.shogun-image {
  
}


}@media (max-width: 767px){#s-18557eee-c8b8-4291-ba7e-1ad294d5b385 {
  margin: 0 !important;
  overflow: visible;
}

#s-18557eee-c8b8-4291-ba7e-1ad294d5b385-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-18557eee-c8b8-4291-ba7e-1ad294d5b385 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-18557eee-c8b8-4291-ba7e-1ad294d5b385 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-18557eee-c8b8-4291-ba7e-1ad294d5b385 img.shogun-image {
  /* Add background color handling */
  
}

#s-18557eee-c8b8-4291-ba7e-1ad294d5b385 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-18557eee-c8b8-4291-ba7e-1ad294d5b385 .shogun-image-content {
  
    justify-content: center;
  
}

.s-18557eee-c8b8-4291-ba7e-1ad294d5b385.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18557eee-c8b8-4291-ba7e-1ad294d5b385.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18557eee-c8b8-4291-ba7e-1ad294d5b385.shogun-image {
  box-sizing: border-box;
}



.s-18557eee-c8b8-4291-ba7e-1ad294d5b385 img.shogun-image {
  
}


}
#s-71190bd8-7f8b-4b52-b111-121339eb006d {
  margin-left: auto;
margin-right: auto;
}

#s-50333614-c955-4910-9604-002c6fadea7f {
  margin-top: 0px;
margin-left: 15%;
margin-bottom: 9px;
margin-right: 15%;
}
@media (min-width: 768px) and (max-width: 991px){#s-50333614-c955-4910-9604-002c6fadea7f {
  margin-left: 3%;
margin-right: 3%;
}
}@media (max-width: 767px){#s-50333614-c955-4910-9604-002c6fadea7f {
  margin-left: 4%;
margin-right: 4%;
}
}
#s-7d454051-4281-4506-893d-ec8d7c39ee36 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(27, 67, 118, 1);
}








#s-7d454051-4281-4506-893d-ec8d7c39ee36 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7d454051-4281-4506-893d-ec8d7c39ee36.shg-box.shg-c {
  justify-content: center;
}

#s-2aa293e8-a8c0-4de1-b08a-b11bd14aacbc {
  margin-top: 25px;
margin-left: 15%;
margin-bottom: 25px;
margin-right: 15%;
}
@media (min-width: 768px) and (max-width: 991px){#s-2aa293e8-a8c0-4de1-b08a-b11bd14aacbc {
  margin-left: 6%;
margin-right: 6%;
}
}@media (max-width: 767px){#s-2aa293e8-a8c0-4de1-b08a-b11bd14aacbc {
  margin-left: 4%;
margin-right: 4%;
}
}
@media (min-width: 0px) {
[id="s-2aa293e8-a8c0-4de1-b08a-b11bd14aacbc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2aa293e8-a8c0-4de1-b08a-b11bd14aacbc"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-2aa293e8-a8c0-4de1-b08a-b11bd14aacbc"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2aa293e8-a8c0-4de1-b08a-b11bd14aacbc"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-2aa293e8-a8c0-4de1-b08a-b11bd14aacbc"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2aa293e8-a8c0-4de1-b08a-b11bd14aacbc"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-2aa293e8-a8c0-4de1-b08a-b11bd14aacbc"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-2aa293e8-a8c0-4de1-b08a-b11bd14aacbc"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-1aacd945-bf4e-4625-9f7a-32e06b93a6df {
  margin-top: 20px;
margin-bottom: 0px;
text-align: left;
}

#s-1aacd945-bf4e-4625-9f7a-32e06b93a6df .shogun-heading-component h1 {
  color: rgba(254, 254, 254, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 28px;
  line-height: 1.25em;
  
  
}



#s-9cf9867b-9beb-4a10-bc84-e50b0116da47 {
  margin-left: auto;
margin-right: auto;
}

#s-9cf9867b-9beb-4a10-bc84-e50b0116da47 .shg-proportional-font-size,
#s-9cf9867b-9beb-4a10-bc84-e50b0116da47 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-c933721b-ae9d-43ac-b7fc-41a39be874d6 {
  margin-top: 25px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 75%;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-c933721b-ae9d-43ac-b7fc-41a39be874d6 {
  margin-top: 50px;
max-width: 150%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-c933721b-ae9d-43ac-b7fc-41a39be874d6 {
  max-width: 125%;
}
}@media (max-width: 767px){#s-c933721b-ae9d-43ac-b7fc-41a39be874d6 {
  margin-top: 0px;
max-width: 100%;
}
}
#s-c933721b-ae9d-43ac-b7fc-41a39be874d6 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c933721b-ae9d-43ac-b7fc-41a39be874d6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c933721b-ae9d-43ac-b7fc-41a39be874d6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-c933721b-ae9d-43ac-b7fc-41a39be874d6 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c933721b-ae9d-43ac-b7fc-41a39be874d6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c933721b-ae9d-43ac-b7fc-41a39be874d6 img.shogun-image {
  width: 100%;
  
  
  max-width: 75%;

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




.s-c933721b-ae9d-43ac-b7fc-41a39be874d6 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c933721b-ae9d-43ac-b7fc-41a39be874d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c933721b-ae9d-43ac-b7fc-41a39be874d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c933721b-ae9d-43ac-b7fc-41a39be874d6.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-c933721b-ae9d-43ac-b7fc-41a39be874d6 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c933721b-ae9d-43ac-b7fc-41a39be874d6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c933721b-ae9d-43ac-b7fc-41a39be874d6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c933721b-ae9d-43ac-b7fc-41a39be874d6 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c933721b-ae9d-43ac-b7fc-41a39be874d6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c933721b-ae9d-43ac-b7fc-41a39be874d6 img.shogun-image {
  width: 100%;
  
  
  

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




.s-c933721b-ae9d-43ac-b7fc-41a39be874d6 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c933721b-ae9d-43ac-b7fc-41a39be874d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c933721b-ae9d-43ac-b7fc-41a39be874d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c933721b-ae9d-43ac-b7fc-41a39be874d6.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-c933721b-ae9d-43ac-b7fc-41a39be874d6 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c933721b-ae9d-43ac-b7fc-41a39be874d6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c933721b-ae9d-43ac-b7fc-41a39be874d6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-c933721b-ae9d-43ac-b7fc-41a39be874d6 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c933721b-ae9d-43ac-b7fc-41a39be874d6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c933721b-ae9d-43ac-b7fc-41a39be874d6 img.shogun-image {
  width: 100%;
  
  
  max-width: 150%;

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




.s-c933721b-ae9d-43ac-b7fc-41a39be874d6 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c933721b-ae9d-43ac-b7fc-41a39be874d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c933721b-ae9d-43ac-b7fc-41a39be874d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c933721b-ae9d-43ac-b7fc-41a39be874d6.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-c933721b-ae9d-43ac-b7fc-41a39be874d6 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c933721b-ae9d-43ac-b7fc-41a39be874d6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c933721b-ae9d-43ac-b7fc-41a39be874d6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c933721b-ae9d-43ac-b7fc-41a39be874d6 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c933721b-ae9d-43ac-b7fc-41a39be874d6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c933721b-ae9d-43ac-b7fc-41a39be874d6 img.shogun-image {
  width: 100%;
  
  
  max-width: 125%;

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




.s-c933721b-ae9d-43ac-b7fc-41a39be874d6 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c933721b-ae9d-43ac-b7fc-41a39be874d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c933721b-ae9d-43ac-b7fc-41a39be874d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c933721b-ae9d-43ac-b7fc-41a39be874d6.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-c933721b-ae9d-43ac-b7fc-41a39be874d6 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c933721b-ae9d-43ac-b7fc-41a39be874d6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c933721b-ae9d-43ac-b7fc-41a39be874d6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-c933721b-ae9d-43ac-b7fc-41a39be874d6 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c933721b-ae9d-43ac-b7fc-41a39be874d6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c933721b-ae9d-43ac-b7fc-41a39be874d6 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-c933721b-ae9d-43ac-b7fc-41a39be874d6 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c933721b-ae9d-43ac-b7fc-41a39be874d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c933721b-ae9d-43ac-b7fc-41a39be874d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c933721b-ae9d-43ac-b7fc-41a39be874d6.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-fb3812a0-c7b6-4925-a6ed-946b33227c3c {
  margin-top: 0px;
padding-top: 30px;
padding-left: 0%;
padding-bottom: 30px;
padding-right: 0%;
background-color: rgba(255, 255, 255, 1);
}








#s-fb3812a0-c7b6-4925-a6ed-946b33227c3c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fb3812a0-c7b6-4925-a6ed-946b33227c3c.shg-box.shg-c {
  justify-content: center;
}

#s-46922bee-3f1f-447e-8799-c24ebaedea6e {
  margin-left: 15%;
margin-bottom: 20px;
margin-right: 15%;
text-align: center;
}
@media (max-width: 767px){#s-46922bee-3f1f-447e-8799-c24ebaedea6e {
  margin-left: 6%;
margin-right: 6%;
display: none;
}
#s-46922bee-3f1f-447e-8799-c24ebaedea6e, #wrap-s-46922bee-3f1f-447e-8799-c24ebaedea6e, #wrap-content-s-46922bee-3f1f-447e-8799-c24ebaedea6e { display: none !important; }}
#s-46922bee-3f1f-447e-8799-c24ebaedea6e .shogun-heading-component h3 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1.25em;
  
  
}



#s-43d675ac-f985-4c41-aee9-32ce0036f368 {
  margin-left: 15%;
margin-bottom: 20px;
margin-right: 15%;
text-align: center;
}
@media (min-width: 1200px){#s-43d675ac-f985-4c41-aee9-32ce0036f368 {
  display: none;
}
#s-43d675ac-f985-4c41-aee9-32ce0036f368, #wrap-s-43d675ac-f985-4c41-aee9-32ce0036f368, #wrap-content-s-43d675ac-f985-4c41-aee9-32ce0036f368 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-43d675ac-f985-4c41-aee9-32ce0036f368 {
  display: none;
}
#s-43d675ac-f985-4c41-aee9-32ce0036f368, #wrap-s-43d675ac-f985-4c41-aee9-32ce0036f368, #wrap-content-s-43d675ac-f985-4c41-aee9-32ce0036f368 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-43d675ac-f985-4c41-aee9-32ce0036f368 {
  display: none;
}
#s-43d675ac-f985-4c41-aee9-32ce0036f368, #wrap-s-43d675ac-f985-4c41-aee9-32ce0036f368, #wrap-content-s-43d675ac-f985-4c41-aee9-32ce0036f368 { display: none !important; }}@media (max-width: 767px){#s-43d675ac-f985-4c41-aee9-32ce0036f368 {
  margin-left: 4%;
margin-right: 4%;
}
}
#s-43d675ac-f985-4c41-aee9-32ce0036f368 .shogun-heading-component h3 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1.25em;
  
  
}



#s-e3526b9e-9e0d-4271-8d3c-76f93a26683d {
  margin-left: 9%;
margin-right: 9%;
}
@media (min-width: 1200px){#s-e3526b9e-9e0d-4271-8d3c-76f93a26683d {
  margin-left: 15%;
margin-right: 15%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e3526b9e-9e0d-4271-8d3c-76f93a26683d {
  margin-left: 15%;
margin-right: 15%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-e3526b9e-9e0d-4271-8d3c-76f93a26683d {
  margin-left: 3%;
margin-right: 3%;
}
}@media (max-width: 767px){#s-e3526b9e-9e0d-4271-8d3c-76f93a26683d {
  margin-left: 4%;
margin-right: 4%;
}
}
@media (min-width: 0px) {
[id="s-e3526b9e-9e0d-4271-8d3c-76f93a26683d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e3526b9e-9e0d-4271-8d3c-76f93a26683d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e3526b9e-9e0d-4271-8d3c-76f93a26683d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e3526b9e-9e0d-4271-8d3c-76f93a26683d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-19a1fff2-c546-418b-9bd0-5e2166c52408 {
  margin-left: auto;
margin-right: auto;
max-width: 300px;
text-align: center;
}
@media (min-width: 1200px){#s-19a1fff2-c546-418b-9bd0-5e2166c52408 {
  margin-top: 25px;
margin-left: 26%;
margin-bottom: 20px;
margin-right: 0%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-19a1fff2-c546-418b-9bd0-5e2166c52408 {
  margin-top: 25px;
margin-bottom: 25px;
}
}
#s-19a1fff2-c546-418b-9bd0-5e2166c52408 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-19a1fff2-c546-418b-9bd0-5e2166c52408-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-19a1fff2-c546-418b-9bd0-5e2166c52408 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-19a1fff2-c546-418b-9bd0-5e2166c52408 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-19a1fff2-c546-418b-9bd0-5e2166c52408 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-19a1fff2-c546-418b-9bd0-5e2166c52408 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-19a1fff2-c546-418b-9bd0-5e2166c52408 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-19a1fff2-c546-418b-9bd0-5e2166c52408.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19a1fff2-c546-418b-9bd0-5e2166c52408.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19a1fff2-c546-418b-9bd0-5e2166c52408.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-19a1fff2-c546-418b-9bd0-5e2166c52408 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-19a1fff2-c546-418b-9bd0-5e2166c52408-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-19a1fff2-c546-418b-9bd0-5e2166c52408 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 26%;
  margin-right: 0%;
  margin-top: 25px;
  margin-bottom: 20px;
}

#s-19a1fff2-c546-418b-9bd0-5e2166c52408 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-19a1fff2-c546-418b-9bd0-5e2166c52408 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-19a1fff2-c546-418b-9bd0-5e2166c52408 img.shogun-image {
  width: 100%;
  
  
  

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




.s-19a1fff2-c546-418b-9bd0-5e2166c52408 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-19a1fff2-c546-418b-9bd0-5e2166c52408.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19a1fff2-c546-418b-9bd0-5e2166c52408.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19a1fff2-c546-418b-9bd0-5e2166c52408.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-19a1fff2-c546-418b-9bd0-5e2166c52408 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-19a1fff2-c546-418b-9bd0-5e2166c52408-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-19a1fff2-c546-418b-9bd0-5e2166c52408 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-19a1fff2-c546-418b-9bd0-5e2166c52408 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-19a1fff2-c546-418b-9bd0-5e2166c52408 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-19a1fff2-c546-418b-9bd0-5e2166c52408 img.shogun-image {
  width: 100%;
  
  
  

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




.s-19a1fff2-c546-418b-9bd0-5e2166c52408 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-19a1fff2-c546-418b-9bd0-5e2166c52408.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19a1fff2-c546-418b-9bd0-5e2166c52408.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19a1fff2-c546-418b-9bd0-5e2166c52408.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-19a1fff2-c546-418b-9bd0-5e2166c52408 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-19a1fff2-c546-418b-9bd0-5e2166c52408-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-19a1fff2-c546-418b-9bd0-5e2166c52408 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-19a1fff2-c546-418b-9bd0-5e2166c52408 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-19a1fff2-c546-418b-9bd0-5e2166c52408 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-19a1fff2-c546-418b-9bd0-5e2166c52408 img.shogun-image {
  width: 100%;
  
  
  

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




.s-19a1fff2-c546-418b-9bd0-5e2166c52408 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-19a1fff2-c546-418b-9bd0-5e2166c52408.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19a1fff2-c546-418b-9bd0-5e2166c52408.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19a1fff2-c546-418b-9bd0-5e2166c52408.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-19a1fff2-c546-418b-9bd0-5e2166c52408 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-19a1fff2-c546-418b-9bd0-5e2166c52408-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-19a1fff2-c546-418b-9bd0-5e2166c52408 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-19a1fff2-c546-418b-9bd0-5e2166c52408 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-19a1fff2-c546-418b-9bd0-5e2166c52408 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-19a1fff2-c546-418b-9bd0-5e2166c52408 img.shogun-image {
  width: 100%;
  
  
  

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




.s-19a1fff2-c546-418b-9bd0-5e2166c52408 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-19a1fff2-c546-418b-9bd0-5e2166c52408.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19a1fff2-c546-418b-9bd0-5e2166c52408.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19a1fff2-c546-418b-9bd0-5e2166c52408.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-5eb7b429-a07e-42be-8b2e-996cc52ce55b {
  margin-left: 0%;
margin-right: 0%;
}

#s-51b6a8f8-2ded-4aff-809f-1802990f7f21 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
}
@media (max-width: 767px){#s-51b6a8f8-2ded-4aff-809f-1802990f7f21 {
  
}
}
#s-df1778b1-37e1-46be-a1f8-b2d9c298ef5f {
  margin-left: 15%;
margin-right: 15%;
}
@media (min-width: 768px) and (max-width: 991px){#s-df1778b1-37e1-46be-a1f8-b2d9c298ef5f {
  margin-left: 6%;
margin-right: 6%;
}
}@media (max-width: 767px){#s-df1778b1-37e1-46be-a1f8-b2d9c298ef5f {
  margin-top: 10px;
margin-left: 4%;
margin-bottom: 0px;
margin-right: 4%;
}
}
#s-76921f34-244a-4aef-bb67-f13d5f727fef {
  margin-top: 20px;
margin-left: 15%;
margin-bottom: 0px;
margin-right: 15%;
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-76921f34-244a-4aef-bb67-f13d5f727fef:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-76921f34-244a-4aef-bb67-f13d5f727fef:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-76921f34-244a-4aef-bb67-f13d5f727fef-root {
    text-align: center;
  }


#s-76921f34-244a-4aef-bb67-f13d5f727fef.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-76921f34-244a-4aef-bb67-f13d5f727fef-root {
    text-align: center;
  }


#s-76921f34-244a-4aef-bb67-f13d5f727fef.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-76921f34-244a-4aef-bb67-f13d5f727fef-root {
    text-align: center;
  }


#s-76921f34-244a-4aef-bb67-f13d5f727fef.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-76921f34-244a-4aef-bb67-f13d5f727fef-root {
    text-align: center;
  }


#s-76921f34-244a-4aef-bb67-f13d5f727fef.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-76921f34-244a-4aef-bb67-f13d5f727fef-root {
    text-align: center;
  }


#s-76921f34-244a-4aef-bb67-f13d5f727fef.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-793c86cd-17d6-447d-993a-e5eae2ec83cb {
  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-793c86cd-17d6-447d-993a-e5eae2ec83cb {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
}
}
#s-793c86cd-17d6-447d-993a-e5eae2ec83cb {
  background-image: url(https://i.shgcdn.com/0376bdc6-e648-44db-9b43-44a357ddbfb3/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-793c86cd-17d6-447d-993a-e5eae2ec83cb {
  background-image: url(https://i.shgcdn.com/0376bdc6-e648-44db-9b43-44a357ddbfb3/-/resize/480x/);
}
#s-793c86cd-17d6-447d-993a-e5eae2ec83cb.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-793c86cd-17d6-447d-993a-e5eae2ec83cb {
  background-image: url(https://i.shgcdn.com/0376bdc6-e648-44db-9b43-44a357ddbfb3/-/resize/960x/);
}
#s-793c86cd-17d6-447d-993a-e5eae2ec83cb.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-793c86cd-17d6-447d-993a-e5eae2ec83cb {
  background-image: url(https://i.shgcdn.com/0376bdc6-e648-44db-9b43-44a357ddbfb3/-/resize/768x/);
}
#s-793c86cd-17d6-447d-993a-e5eae2ec83cb.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-793c86cd-17d6-447d-993a-e5eae2ec83cb {
  background-image: url(https://i.shgcdn.com/0376bdc6-e648-44db-9b43-44a357ddbfb3/-/resize/1536x/);
}
#s-793c86cd-17d6-447d-993a-e5eae2ec83cb.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-793c86cd-17d6-447d-993a-e5eae2ec83cb {
  background-image: url(https://i.shgcdn.com/0376bdc6-e648-44db-9b43-44a357ddbfb3/-/resize/1024x/);
}
#s-793c86cd-17d6-447d-993a-e5eae2ec83cb.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-793c86cd-17d6-447d-993a-e5eae2ec83cb {
  background-image: url(https://i.shgcdn.com/0376bdc6-e648-44db-9b43-44a357ddbfb3/-/resize/2048x/);
}
#s-793c86cd-17d6-447d-993a-e5eae2ec83cb.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-793c86cd-17d6-447d-993a-e5eae2ec83cb {
  background-image: url(https://i.shgcdn.com/0376bdc6-e648-44db-9b43-44a357ddbfb3/-/resize/1200x/);
}
#s-793c86cd-17d6-447d-993a-e5eae2ec83cb.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-793c86cd-17d6-447d-993a-e5eae2ec83cb {
  background-image: url(https://i.shgcdn.com/0376bdc6-e648-44db-9b43-44a357ddbfb3/-/resize/2048x/);
}
#s-793c86cd-17d6-447d-993a-e5eae2ec83cb.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-793c86cd-17d6-447d-993a-e5eae2ec83cb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-793c86cd-17d6-447d-993a-e5eae2ec83cb.shg-box.shg-c {
  justify-content: center;
}

#s-0c5b71bc-87f7-4b8b-8140-cd308b811de6 {
  margin-left: 0px;
margin-bottom: 50px;
margin-right: 0px;
padding-top: 33px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-0c5b71bc-87f7-4b8b-8140-cd308b811de6 {
  margin-top: 25px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
padding-top: 0px;
}
}
#s-0c5b71bc-87f7-4b8b-8140-cd308b811de6 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  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-7e13e532-12a3-43c9-9d33-41ac472fc879 {
  margin-top: 0px;
margin-left: 15%;
margin-bottom: 0px;
margin-right: 15%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-7e13e532-12a3-43c9-9d33-41ac472fc879 {
  margin-left: 6%;
margin-right: 6%;
}
}@media (max-width: 767px){#s-7e13e532-12a3-43c9-9d33-41ac472fc879 {
  margin-top: 0px;
margin-left: 4%;
margin-bottom: 0px;
margin-right: 4%;
}
}
/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-7e13e532-12a3-43c9-9d33-41ac472fc879 {
  --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-7e13e532-12a3-43c9-9d33-41ac472fc879 > .swiper-button-prev,
#slider-v3-s-7e13e532-12a3-43c9-9d33-41ac472fc879 > .swiper-button-next {
  
}

#slider-v3-s-7e13e532-12a3-43c9-9d33-41ac472fc879 > .swiper-button-prev svg,
#slider-v3-s-7e13e532-12a3-43c9-9d33-41ac472fc879 > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-7e13e532-12a3-43c9-9d33-41ac472fc879 > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-7e13e532-12a3-43c9-9d33-41ac472fc879 > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-7e13e532-12a3-43c9-9d33-41ac472fc879 > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-7e13e532-12a3-43c9-9d33-41ac472fc879 .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-7e13e532-12a3-43c9-9d33-41ac472fc879 .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-7e13e532-12a3-43c9-9d33-41ac472fc879 .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-ff411aa3-5bba-44e4-88ba-8e57f7703e6d {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-ff411aa3-5bba-44e4-88ba-8e57f7703e6d {
  margin-left: 0%;
margin-right: 0%;
}
}
@media (min-width: 0px) {
[id="s-ff411aa3-5bba-44e4-88ba-8e57f7703e6d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ff411aa3-5bba-44e4-88ba-8e57f7703e6d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-ff411aa3-5bba-44e4-88ba-8e57f7703e6d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-ff411aa3-5bba-44e4-88ba-8e57f7703e6d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 {
  margin-left: auto;
margin-right: auto;
max-width: 150px;
aspect-ratio: 158/37;
text-align: center;
}

#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 {
  margin: 0 !important;
  overflow: visible;
}

#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image {
  /* Add background color handling */
  
}

#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image {
  box-sizing: border-box;
}



.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container {
      position: relative;
    }

    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

@media (min-width: 1200px){#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 {
  margin: 0 !important;
  overflow: visible;
}

#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image {
  /* Add background color handling */
  
}

#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image {
  box-sizing: border-box;
}



.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container {
      position: relative;
    }

    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 {
  margin: 0 !important;
  overflow: visible;
}

#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image {
  /* Add background color handling */
  
}

#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image {
  box-sizing: border-box;
}



.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container {
      position: relative;
    }

    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 {
  margin: 0 !important;
  overflow: visible;
}

#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image {
  /* Add background color handling */
  
}

#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image {
  box-sizing: border-box;
}



.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container {
      position: relative;
    }

    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (max-width: 767px){#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 {
  margin: 0 !important;
  overflow: visible;
}

#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image {
  /* Add background color handling */
  
}

#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image {
  box-sizing: border-box;
}



.s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container {
      position: relative;
    }

    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-934364d6-00ea-49a5-ba7a-d98f0d0471a0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}
#s-f8786e99-0d45-431c-b97c-f0de128d919e {
  margin-left: auto;
margin-right: auto;
}

#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba {
  margin-left: auto;
margin-right: auto;
max-width: 150px;
aspect-ratio: 158/37;
text-align: center;
}

#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba {
  margin: 0 !important;
  overflow: visible;
}

#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image {
  /* Add background color handling */
  
}

#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image {
  box-sizing: border-box;
}



.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container {
      position: relative;
    }

    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

@media (min-width: 1200px){#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba {
  margin: 0 !important;
  overflow: visible;
}

#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image {
  /* Add background color handling */
  
}

#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image {
  box-sizing: border-box;
}



.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container {
      position: relative;
    }

    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba {
  margin: 0 !important;
  overflow: visible;
}

#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image {
  /* Add background color handling */
  
}

#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image {
  box-sizing: border-box;
}



.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container {
      position: relative;
    }

    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba {
  margin: 0 !important;
  overflow: visible;
}

#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image {
  /* Add background color handling */
  
}

#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image {
  box-sizing: border-box;
}



.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container {
      position: relative;
    }

    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (max-width: 767px){#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba {
  margin: 0 !important;
  overflow: visible;
}

#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image {
  /* Add background color handling */
  
}

#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image {
  box-sizing: border-box;
}



.s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container {
      position: relative;
    }

    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dbb6ebbe-1b07-4b9c-81b4-6246503660ba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}
#s-87643dc7-7734-4b84-9fea-b931bb2f6c19 {
  margin-left: auto;
margin-right: auto;
}

#s-8240c1c8-28c3-476f-aebb-6341003aac97 {
  margin-left: auto;
margin-right: auto;
max-width: 150px;
aspect-ratio: 158/37;
text-align: center;
}

#s-8240c1c8-28c3-476f-aebb-6341003aac97 {
  margin: 0 !important;
  overflow: visible;
}

#s-8240c1c8-28c3-476f-aebb-6341003aac97-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8240c1c8-28c3-476f-aebb-6341003aac97 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8240c1c8-28c3-476f-aebb-6341003aac97 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image {
  /* Add background color handling */
  
}

#s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8240c1c8-28c3-476f-aebb-6341003aac97 .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-8240c1c8-28c3-476f-aebb-6341003aac97 .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8240c1c8-28c3-476f-aebb-6341003aac97 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-8240c1c8-28c3-476f-aebb-6341003aac97 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8240c1c8-28c3-476f-aebb-6341003aac97.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image {
  box-sizing: border-box;
}



.s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8240c1c8-28c3-476f-aebb-6341003aac97 {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container {
      position: relative;
    }

    .s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

@media (min-width: 1200px){#s-8240c1c8-28c3-476f-aebb-6341003aac97 {
  margin: 0 !important;
  overflow: visible;
}

#s-8240c1c8-28c3-476f-aebb-6341003aac97-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8240c1c8-28c3-476f-aebb-6341003aac97 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8240c1c8-28c3-476f-aebb-6341003aac97 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image {
  /* Add background color handling */
  
}

#s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8240c1c8-28c3-476f-aebb-6341003aac97 .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-8240c1c8-28c3-476f-aebb-6341003aac97 .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8240c1c8-28c3-476f-aebb-6341003aac97 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-8240c1c8-28c3-476f-aebb-6341003aac97 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8240c1c8-28c3-476f-aebb-6341003aac97.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image {
  box-sizing: border-box;
}



.s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8240c1c8-28c3-476f-aebb-6341003aac97 {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container {
      position: relative;
    }

    .s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-8240c1c8-28c3-476f-aebb-6341003aac97 {
  margin: 0 !important;
  overflow: visible;
}

#s-8240c1c8-28c3-476f-aebb-6341003aac97-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8240c1c8-28c3-476f-aebb-6341003aac97 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8240c1c8-28c3-476f-aebb-6341003aac97 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image {
  /* Add background color handling */
  
}

#s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8240c1c8-28c3-476f-aebb-6341003aac97 .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-8240c1c8-28c3-476f-aebb-6341003aac97 .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8240c1c8-28c3-476f-aebb-6341003aac97 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-8240c1c8-28c3-476f-aebb-6341003aac97 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8240c1c8-28c3-476f-aebb-6341003aac97.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image {
  box-sizing: border-box;
}



.s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8240c1c8-28c3-476f-aebb-6341003aac97 {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container {
      position: relative;
    }

    .s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-8240c1c8-28c3-476f-aebb-6341003aac97 {
  margin: 0 !important;
  overflow: visible;
}

#s-8240c1c8-28c3-476f-aebb-6341003aac97-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8240c1c8-28c3-476f-aebb-6341003aac97 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8240c1c8-28c3-476f-aebb-6341003aac97 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image {
  /* Add background color handling */
  
}

#s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8240c1c8-28c3-476f-aebb-6341003aac97 .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-8240c1c8-28c3-476f-aebb-6341003aac97 .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8240c1c8-28c3-476f-aebb-6341003aac97 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-8240c1c8-28c3-476f-aebb-6341003aac97 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8240c1c8-28c3-476f-aebb-6341003aac97.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image {
  box-sizing: border-box;
}



.s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8240c1c8-28c3-476f-aebb-6341003aac97 {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container {
      position: relative;
    }

    .s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (max-width: 767px){#s-8240c1c8-28c3-476f-aebb-6341003aac97 {
  margin: 0 !important;
  overflow: visible;
}

#s-8240c1c8-28c3-476f-aebb-6341003aac97-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8240c1c8-28c3-476f-aebb-6341003aac97 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8240c1c8-28c3-476f-aebb-6341003aac97 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image {
  /* Add background color handling */
  
}

#s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8240c1c8-28c3-476f-aebb-6341003aac97 .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-8240c1c8-28c3-476f-aebb-6341003aac97 .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8240c1c8-28c3-476f-aebb-6341003aac97 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-8240c1c8-28c3-476f-aebb-6341003aac97 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8240c1c8-28c3-476f-aebb-6341003aac97.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image {
  box-sizing: border-box;
}



.s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8240c1c8-28c3-476f-aebb-6341003aac97 {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container {
      position: relative;
    }

    .s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8240c1c8-28c3-476f-aebb-6341003aac97.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8240c1c8-28c3-476f-aebb-6341003aac97 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}
#s-64c5e89c-66ca-4790-91f1-2487e5caba7a {
  margin-left: auto;
margin-right: auto;
}

#s-20102238-5bba-4fe2-abb9-f1b933b2a2a3 {
  margin-left: 3%;
margin-right: 3%;
}

@media (min-width: 0px) {
[id="s-20102238-5bba-4fe2-abb9-f1b933b2a2a3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-20102238-5bba-4fe2-abb9-f1b933b2a2a3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-20102238-5bba-4fe2-abb9-f1b933b2a2a3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-20102238-5bba-4fe2-abb9-f1b933b2a2a3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-e170d147-c1ce-45cf-8a77-dd248e94c17c {
  margin-left: auto;
margin-right: auto;
max-width: 150px;
aspect-ratio: 158/37;
text-align: center;
}

#s-e170d147-c1ce-45cf-8a77-dd248e94c17c {
  margin: 0 !important;
  overflow: visible;
}

#s-e170d147-c1ce-45cf-8a77-dd248e94c17c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e170d147-c1ce-45cf-8a77-dd248e94c17c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e170d147-c1ce-45cf-8a77-dd248e94c17c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image {
  /* Add background color handling */
  
}

#s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e170d147-c1ce-45cf-8a77-dd248e94c17c .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-e170d147-c1ce-45cf-8a77-dd248e94c17c .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e170d147-c1ce-45cf-8a77-dd248e94c17c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-e170d147-c1ce-45cf-8a77-dd248e94c17c .shogun-image-content {
  
    justify-content: center;
  
}

.s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image {
  box-sizing: border-box;
}



.s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container {
      position: relative;
    }

    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

@media (min-width: 1200px){#s-e170d147-c1ce-45cf-8a77-dd248e94c17c {
  margin: 0 !important;
  overflow: visible;
}

#s-e170d147-c1ce-45cf-8a77-dd248e94c17c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e170d147-c1ce-45cf-8a77-dd248e94c17c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e170d147-c1ce-45cf-8a77-dd248e94c17c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image {
  /* Add background color handling */
  
}

#s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e170d147-c1ce-45cf-8a77-dd248e94c17c .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-e170d147-c1ce-45cf-8a77-dd248e94c17c .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e170d147-c1ce-45cf-8a77-dd248e94c17c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-e170d147-c1ce-45cf-8a77-dd248e94c17c .shogun-image-content {
  
    justify-content: center;
  
}

.s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image {
  box-sizing: border-box;
}



.s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container {
      position: relative;
    }

    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-e170d147-c1ce-45cf-8a77-dd248e94c17c {
  margin: 0 !important;
  overflow: visible;
}

#s-e170d147-c1ce-45cf-8a77-dd248e94c17c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e170d147-c1ce-45cf-8a77-dd248e94c17c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e170d147-c1ce-45cf-8a77-dd248e94c17c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image {
  /* Add background color handling */
  
}

#s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e170d147-c1ce-45cf-8a77-dd248e94c17c .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-e170d147-c1ce-45cf-8a77-dd248e94c17c .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e170d147-c1ce-45cf-8a77-dd248e94c17c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-e170d147-c1ce-45cf-8a77-dd248e94c17c .shogun-image-content {
  
    justify-content: center;
  
}

.s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image {
  box-sizing: border-box;
}



.s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container {
      position: relative;
    }

    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-e170d147-c1ce-45cf-8a77-dd248e94c17c {
  margin: 0 !important;
  overflow: visible;
}

#s-e170d147-c1ce-45cf-8a77-dd248e94c17c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e170d147-c1ce-45cf-8a77-dd248e94c17c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e170d147-c1ce-45cf-8a77-dd248e94c17c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image {
  /* Add background color handling */
  
}

#s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e170d147-c1ce-45cf-8a77-dd248e94c17c .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-e170d147-c1ce-45cf-8a77-dd248e94c17c .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e170d147-c1ce-45cf-8a77-dd248e94c17c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-e170d147-c1ce-45cf-8a77-dd248e94c17c .shogun-image-content {
  
    justify-content: center;
  
}

.s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image {
  box-sizing: border-box;
}



.s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container {
      position: relative;
    }

    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (max-width: 767px){#s-e170d147-c1ce-45cf-8a77-dd248e94c17c {
  margin: 0 !important;
  overflow: visible;
}

#s-e170d147-c1ce-45cf-8a77-dd248e94c17c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e170d147-c1ce-45cf-8a77-dd248e94c17c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e170d147-c1ce-45cf-8a77-dd248e94c17c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image {
  /* Add background color handling */
  
}

#s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e170d147-c1ce-45cf-8a77-dd248e94c17c .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-e170d147-c1ce-45cf-8a77-dd248e94c17c .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e170d147-c1ce-45cf-8a77-dd248e94c17c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-e170d147-c1ce-45cf-8a77-dd248e94c17c .shogun-image-content {
  
    justify-content: center;
  
}

.s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image {
  box-sizing: border-box;
}



.s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container {
      position: relative;
    }

    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e170d147-c1ce-45cf-8a77-dd248e94c17c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}
#s-ed71e9f3-59b8-41f0-b58a-b1e919f7cc92 {
  margin-left: auto;
margin-right: auto;
}

#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 {
  margin-left: auto;
margin-right: auto;
max-width: 150px;
aspect-ratio: 158/37;
text-align: center;
}

#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 {
  margin: 0 !important;
  overflow: visible;
}

#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image {
  /* Add background color handling */
  
}

#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image {
  box-sizing: border-box;
}



.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container {
      position: relative;
    }

    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

@media (min-width: 1200px){#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 {
  margin: 0 !important;
  overflow: visible;
}

#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image {
  /* Add background color handling */
  
}

#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image {
  box-sizing: border-box;
}



.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container {
      position: relative;
    }

    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 {
  margin: 0 !important;
  overflow: visible;
}

#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image {
  /* Add background color handling */
  
}

#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image {
  box-sizing: border-box;
}



.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container {
      position: relative;
    }

    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 {
  margin: 0 !important;
  overflow: visible;
}

#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image {
  /* Add background color handling */
  
}

#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image {
  box-sizing: border-box;
}



.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container {
      position: relative;
    }

    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (max-width: 767px){#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 {
  margin: 0 !important;
  overflow: visible;
}

#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image {
  /* Add background color handling */
  
}

#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image {
  box-sizing: border-box;
}



.s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container {
      position: relative;
    }

    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9ce56a3d-48a6-48ee-89c2-5236dfb765a2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}
#s-58226df5-eb99-457d-b3f9-b31a3e39bd32 {
  margin-left: auto;
margin-right: auto;
}

#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f {
  margin-left: auto;
margin-right: auto;
max-width: 150px;
aspect-ratio: 158/37;
text-align: center;
}

#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f {
  margin: 0 !important;
  overflow: visible;
}

#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image {
  /* Add background color handling */
  
}

#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f .shogun-image-content {
  
    justify-content: center;
  
}

.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image {
  box-sizing: border-box;
}



.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container {
      position: relative;
    }

    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

@media (min-width: 1200px){#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f {
  margin: 0 !important;
  overflow: visible;
}

#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image {
  /* Add background color handling */
  
}

#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f .shogun-image-content {
  
    justify-content: center;
  
}

.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image {
  box-sizing: border-box;
}



.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container {
      position: relative;
    }

    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f {
  margin: 0 !important;
  overflow: visible;
}

#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image {
  /* Add background color handling */
  
}

#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f .shogun-image-content {
  
    justify-content: center;
  
}

.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image {
  box-sizing: border-box;
}



.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container {
      position: relative;
    }

    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f {
  margin: 0 !important;
  overflow: visible;
}

#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image {
  /* Add background color handling */
  
}

#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f .shogun-image-content {
  
    justify-content: center;
  
}

.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image {
  box-sizing: border-box;
}



.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container {
      position: relative;
    }

    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (max-width: 767px){#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f {
  margin: 0 !important;
  overflow: visible;
}

#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image {
  /* Add background color handling */
  
}

#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f .shg-image-content-wrapper {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }

    #s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f .shogun-image-link {
      aspect-ratio: 158/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 150px;
  }



  img.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f .shogun-image-content {
  
    justify-content: center;
  
}

.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image {
  box-sizing: border-box;
}



.s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f {
      --shg-aspect-ratio: calc(158/37); 
    }

    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container {
      position: relative;
    }

    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd31f399-deaf-4ad8-8871-fa7c90a30d1f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}
#s-424e565a-f7e1-450e-9cbc-4a47d96572c3 {
  margin-left: auto;
margin-right: auto;
}

#s-db8fb626-724b-4c3c-963e-42a7e899447e {
  background-repeat: no-repeat;
padding-top: 50px;
padding-left: 10%;
padding-bottom: 50px;
padding-right: 10%;
min-height: 50px;
}
@media (min-width: 1200px){#s-db8fb626-724b-4c3c-963e-42a7e899447e {
  display: none;
}
#s-db8fb626-724b-4c3c-963e-42a7e899447e, #wrap-s-db8fb626-724b-4c3c-963e-42a7e899447e, #wrap-content-s-db8fb626-724b-4c3c-963e-42a7e899447e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-db8fb626-724b-4c3c-963e-42a7e899447e {
  display: none;
}
#s-db8fb626-724b-4c3c-963e-42a7e899447e, #wrap-s-db8fb626-724b-4c3c-963e-42a7e899447e, #wrap-content-s-db8fb626-724b-4c3c-963e-42a7e899447e { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-db8fb626-724b-4c3c-963e-42a7e899447e {
  padding-left: 5%;
padding-right: 5%;
display: none;
}
#s-db8fb626-724b-4c3c-963e-42a7e899447e, #wrap-s-db8fb626-724b-4c3c-963e-42a7e899447e, #wrap-content-s-db8fb626-724b-4c3c-963e-42a7e899447e { display: none !important; }}@media (max-width: 767px){#s-db8fb626-724b-4c3c-963e-42a7e899447e {
  padding-left: 20px;
padding-right: 20px;
display: none;
}
#s-db8fb626-724b-4c3c-963e-42a7e899447e, #wrap-s-db8fb626-724b-4c3c-963e-42a7e899447e, #wrap-content-s-db8fb626-724b-4c3c-963e-42a7e899447e { display: none !important; }}
#s-db8fb626-724b-4c3c-963e-42a7e899447e {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjkxMDhkNTMtMDdjYS00ODEyLTk5OTktYjE3NzM5ODJjZTI4IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZmZmZmZmO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmZmZmZmO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiOTEwOGQ1My0wN2NhLTQ4MTItOTk5OS1iMTc3Mzk4MmNlMjgpIi8+PC9zdmc+);
}








#s-db8fb626-724b-4c3c-963e-42a7e899447e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-db8fb626-724b-4c3c-963e-42a7e899447e.shg-box.shg-c {
  justify-content: center;
}

#s-9c9982b3-e320-41ad-8020-2db7b334bb2f {
  margin-left: auto;
margin-right: auto;
}

.shogun-video {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.shogun-video-16x9 {
  padding-bottom: 56.25%;
}

.shogun-video-4x3 {
  padding-bottom: 75%;
}

.shogun-video-embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#s-cdafd182-201e-449c-ace9-600e2588b2f8 {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
max-width: 500px;
}

#s-4240f7ac-ae78-432c-8059-ccdd40a34f69 {
  margin-top: 25px;
margin-left: 15%;
margin-bottom: 0px;
margin-right: 15%;
padding-bottom: 0px;
}

#s-934f4e21-2108-4026-9ebc-b0ceef03720c {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 11px;
background-color: rgba(0, 88, 142, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-934f4e21-2108-4026-9ebc-b0ceef03720c:hover {background-color: rgba(0, 172, 78, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-934f4e21-2108-4026-9ebc-b0ceef03720c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-934f4e21-2108-4026-9ebc-b0ceef03720c-root {
    text-align: center;
  }


#s-934f4e21-2108-4026-9ebc-b0ceef03720c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-934f4e21-2108-4026-9ebc-b0ceef03720c-root {
    text-align: center;
  }


#s-934f4e21-2108-4026-9ebc-b0ceef03720c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-934f4e21-2108-4026-9ebc-b0ceef03720c-root {
    text-align: center;
  }


#s-934f4e21-2108-4026-9ebc-b0ceef03720c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-934f4e21-2108-4026-9ebc-b0ceef03720c-root {
    text-align: center;
  }


#s-934f4e21-2108-4026-9ebc-b0ceef03720c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-934f4e21-2108-4026-9ebc-b0ceef03720c-root {
    text-align: center;
  }


#s-934f4e21-2108-4026-9ebc-b0ceef03720c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-d15d09d8-f09a-4393-a26a-fbdc544672e1 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-d15d09d8-f09a-4393-a26a-fbdc544672e1 {
  padding-bottom: 25px;
}
}@media (max-width: 767px){#s-d15d09d8-f09a-4393-a26a-fbdc544672e1 {
  padding-top: 0px;
padding-bottom: 0px;
}
}







#s-d15d09d8-f09a-4393-a26a-fbdc544672e1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d15d09d8-f09a-4393-a26a-fbdc544672e1.shg-box.shg-c {
  justify-content: center;
}

#s-fa9b6a7b-898c-4c2b-974c-ff03eab6aad4 {
  margin-top: 0px;
margin-left: 15%;
margin-bottom: 0px;
margin-right: 15%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-fa9b6a7b-898c-4c2b-974c-ff03eab6aad4 {
  margin-left: 4%;
margin-right: 4%;
padding-left: 20px;
padding-right: 20px;
}
}@media (max-width: 767px){#s-fa9b6a7b-898c-4c2b-974c-ff03eab6aad4 {
  margin-left: 4%;
margin-right: 4%;
}
}
@media (min-width: 0px) {
[id="s-fa9b6a7b-898c-4c2b-974c-ff03eab6aad4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fa9b6a7b-898c-4c2b-974c-ff03eab6aad4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fa9b6a7b-898c-4c2b-974c-ff03eab6aad4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fa9b6a7b-898c-4c2b-974c-ff03eab6aad4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-fa9b6a7b-898c-4c2b-974c-ff03eab6aad4"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-d55d2c98-73d1-412b-92a5-5397c2d7cb0f {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 1200px){#s-d55d2c98-73d1-412b-92a5-5397c2d7cb0f {
  display: none;
}
#s-d55d2c98-73d1-412b-92a5-5397c2d7cb0f, #wrap-s-d55d2c98-73d1-412b-92a5-5397c2d7cb0f, #wrap-content-s-d55d2c98-73d1-412b-92a5-5397c2d7cb0f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d55d2c98-73d1-412b-92a5-5397c2d7cb0f {
  display: none;
}
#s-d55d2c98-73d1-412b-92a5-5397c2d7cb0f, #wrap-s-d55d2c98-73d1-412b-92a5-5397c2d7cb0f, #wrap-content-s-d55d2c98-73d1-412b-92a5-5397c2d7cb0f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d55d2c98-73d1-412b-92a5-5397c2d7cb0f {
  display: none;
}
#s-d55d2c98-73d1-412b-92a5-5397c2d7cb0f, #wrap-s-d55d2c98-73d1-412b-92a5-5397c2d7cb0f, #wrap-content-s-d55d2c98-73d1-412b-92a5-5397c2d7cb0f { display: none !important; }}
#s-d55d2c98-73d1-412b-92a5-5397c2d7cb0f .shogun-heading-component h1 {
  color: rgba(0, 68, 143, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 26px;
  
  
  
}



#s-72e0f49f-06f2-43bb-b90f-490755c58e15 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-72e0f49f-06f2-43bb-b90f-490755c58e15 {
  display: none;
}
#s-72e0f49f-06f2-43bb-b90f-490755c58e15, #wrap-s-72e0f49f-06f2-43bb-b90f-490755c58e15, #wrap-content-s-72e0f49f-06f2-43bb-b90f-490755c58e15 { display: none !important; }}
#s-72e0f49f-06f2-43bb-b90f-490755c58e15 .shogun-heading-component h1 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  
  
  
  
}



#s-010738a5-9592-4cb0-b8fd-67d596169f90 {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-010738a5-9592-4cb0-b8fd-67d596169f90 {
  margin-left: 0%;
margin-right: 0%;
}
}
#s-fdbc2b60-f25f-4d0e-8124-a1b28da31b0c {
  margin-top: 20px;
margin-left: 15%;
margin-bottom: 0px;
margin-right: 15%;
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-fdbc2b60-f25f-4d0e-8124-a1b28da31b0c:hover {background-color: rgba(0, 88, 142, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-fdbc2b60-f25f-4d0e-8124-a1b28da31b0c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-fdbc2b60-f25f-4d0e-8124-a1b28da31b0c-root {
    text-align: center;
  }


#s-fdbc2b60-f25f-4d0e-8124-a1b28da31b0c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-fdbc2b60-f25f-4d0e-8124-a1b28da31b0c-root {
    text-align: center;
  }


#s-fdbc2b60-f25f-4d0e-8124-a1b28da31b0c.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-fdbc2b60-f25f-4d0e-8124-a1b28da31b0c-root {
    text-align: center;
  }


#s-fdbc2b60-f25f-4d0e-8124-a1b28da31b0c.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-fdbc2b60-f25f-4d0e-8124-a1b28da31b0c-root {
    text-align: center;
  }


#s-fdbc2b60-f25f-4d0e-8124-a1b28da31b0c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-fdbc2b60-f25f-4d0e-8124-a1b28da31b0c-root {
    text-align: center;
  }


#s-fdbc2b60-f25f-4d0e-8124-a1b28da31b0c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-8123e79c-bcb2-4322-8713-f01744e34502 {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 500px;
text-align: center;
}
@media (min-width: 1200px){#s-8123e79c-bcb2-4322-8713-f01744e34502 {
  margin-top: 0px;
max-width: 400px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-8123e79c-bcb2-4322-8713-f01744e34502 {
  margin-top: 0px;
max-width: 700px;
}
}
#s-8123e79c-bcb2-4322-8713-f01744e34502 {
  margin: 0 !important;
  overflow: visible;
}

#s-8123e79c-bcb2-4322-8713-f01744e34502-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8123e79c-bcb2-4322-8713-f01744e34502 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

.shg-image-content-margin-container-s-8123e79c-bcb2-4322-8713-f01744e34502 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8123e79c-bcb2-4322-8713-f01744e34502 img.shogun-image {
  /* Add background color handling */
  
}

#s-8123e79c-bcb2-4322-8713-f01744e34502 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8123e79c-bcb2-4322-8713-f01744e34502 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8123e79c-bcb2-4322-8713-f01744e34502.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8123e79c-bcb2-4322-8713-f01744e34502.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8123e79c-bcb2-4322-8713-f01744e34502.shogun-image {
  box-sizing: border-box;
}



.s-8123e79c-bcb2-4322-8713-f01744e34502 img.shogun-image {
  
}


@media (min-width: 1200px){#s-8123e79c-bcb2-4322-8713-f01744e34502 {
  margin: 0 !important;
  overflow: visible;
}

#s-8123e79c-bcb2-4322-8713-f01744e34502-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8123e79c-bcb2-4322-8713-f01744e34502 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

.shg-image-content-margin-container-s-8123e79c-bcb2-4322-8713-f01744e34502 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8123e79c-bcb2-4322-8713-f01744e34502 img.shogun-image {
  /* Add background color handling */
  
}

#s-8123e79c-bcb2-4322-8713-f01744e34502 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8123e79c-bcb2-4322-8713-f01744e34502 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8123e79c-bcb2-4322-8713-f01744e34502.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8123e79c-bcb2-4322-8713-f01744e34502.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8123e79c-bcb2-4322-8713-f01744e34502.shogun-image {
  box-sizing: border-box;
}



.s-8123e79c-bcb2-4322-8713-f01744e34502 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-8123e79c-bcb2-4322-8713-f01744e34502 {
  margin: 0 !important;
  overflow: visible;
}

#s-8123e79c-bcb2-4322-8713-f01744e34502-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8123e79c-bcb2-4322-8713-f01744e34502 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

.shg-image-content-margin-container-s-8123e79c-bcb2-4322-8713-f01744e34502 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8123e79c-bcb2-4322-8713-f01744e34502 img.shogun-image {
  /* Add background color handling */
  
}

#s-8123e79c-bcb2-4322-8713-f01744e34502 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8123e79c-bcb2-4322-8713-f01744e34502 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8123e79c-bcb2-4322-8713-f01744e34502.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8123e79c-bcb2-4322-8713-f01744e34502.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8123e79c-bcb2-4322-8713-f01744e34502.shogun-image {
  box-sizing: border-box;
}



.s-8123e79c-bcb2-4322-8713-f01744e34502 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-8123e79c-bcb2-4322-8713-f01744e34502 {
  margin: 0 !important;
  overflow: visible;
}

#s-8123e79c-bcb2-4322-8713-f01744e34502-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8123e79c-bcb2-4322-8713-f01744e34502 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8123e79c-bcb2-4322-8713-f01744e34502 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8123e79c-bcb2-4322-8713-f01744e34502 img.shogun-image {
  /* Add background color handling */
  
}

#s-8123e79c-bcb2-4322-8713-f01744e34502 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8123e79c-bcb2-4322-8713-f01744e34502 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8123e79c-bcb2-4322-8713-f01744e34502.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8123e79c-bcb2-4322-8713-f01744e34502.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8123e79c-bcb2-4322-8713-f01744e34502.shogun-image {
  box-sizing: border-box;
}



.s-8123e79c-bcb2-4322-8713-f01744e34502 img.shogun-image {
  
}


}@media (max-width: 767px){#s-8123e79c-bcb2-4322-8713-f01744e34502 {
  margin: 0 !important;
  overflow: visible;
}

#s-8123e79c-bcb2-4322-8713-f01744e34502-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8123e79c-bcb2-4322-8713-f01744e34502 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8123e79c-bcb2-4322-8713-f01744e34502 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8123e79c-bcb2-4322-8713-f01744e34502 img.shogun-image {
  /* Add background color handling */
  
}

#s-8123e79c-bcb2-4322-8713-f01744e34502 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8123e79c-bcb2-4322-8713-f01744e34502 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8123e79c-bcb2-4322-8713-f01744e34502.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8123e79c-bcb2-4322-8713-f01744e34502.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8123e79c-bcb2-4322-8713-f01744e34502.shogun-image {
  box-sizing: border-box;
}



.s-8123e79c-bcb2-4322-8713-f01744e34502 img.shogun-image {
  
}


}
.shg-hr-wrapper {
  padding: 30px 0;
}

.shg-hr-wrapper hr {
  margin: 0;
  border: 0;
  width: 100%;
}

#s-d89226c3-6bd2-46db-9206-9eff841332e2 {
  margin-left: 10%;
margin-right: 10%;
}
@media (min-width: 768px) and (max-width: 991px){#s-d89226c3-6bd2-46db-9206-9eff841332e2 {
  display: none;
}
#s-d89226c3-6bd2-46db-9206-9eff841332e2, #wrap-s-d89226c3-6bd2-46db-9206-9eff841332e2, #wrap-content-s-d89226c3-6bd2-46db-9206-9eff841332e2 { display: none !important; }}@media (max-width: 767px){#s-d89226c3-6bd2-46db-9206-9eff841332e2 {
  display: none;
}
#s-d89226c3-6bd2-46db-9206-9eff841332e2, #wrap-s-d89226c3-6bd2-46db-9206-9eff841332e2, #wrap-content-s-d89226c3-6bd2-46db-9206-9eff841332e2 { display: none !important; }}
#s-d89226c3-6bd2-46db-9206-9eff841332e2 hr {
  border-top: 2px solid #ddd;
}

#s-b2658f89-6001-47fb-b745-e40c752bf7ae {
  margin-left: 0%;
margin-right: 0%;
padding-top: 20px;
padding-left: 6%;
padding-bottom: 20px;
padding-right: 6%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-b2658f89-6001-47fb-b745-e40c752bf7ae {
  padding-left: 4%;
padding-right: 4%;
}
}







#s-b2658f89-6001-47fb-b745-e40c752bf7ae > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b2658f89-6001-47fb-b745-e40c752bf7ae.shg-box.shg-c {
  justify-content: center;
}

#s-c246460c-8d80-4796-8295-b054e02559f1 {
  margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-c246460c-8d80-4796-8295-b054e02559f1 {
  margin-left: 1%;
margin-right: 1%;
text-align: center;
}
}
#s-c246460c-8d80-4796-8295-b054e02559f1 .shogun-heading-component h3 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 40px;
  
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-c246460c-8d80-4796-8295-b054e02559f1 .shogun-heading-component h3 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: left;
}


}@media (max-width: 767px){#s-c246460c-8d80-4796-8295-b054e02559f1 .shogun-heading-component h3 {
  color: rgba(27, 67, 118, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  
  text-align: left;
}


}
.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-050474ac-b2f8-4d50-9930-338a5cab791f {
  margin-top: 20px;
margin-left: 10%;
margin-bottom: 20px;
margin-right: 10%;
}
@media (min-width: 1200px){#s-050474ac-b2f8-4d50-9930-338a5cab791f {
  display: none;
}
#s-050474ac-b2f8-4d50-9930-338a5cab791f, #wrap-s-050474ac-b2f8-4d50-9930-338a5cab791f, #wrap-content-s-050474ac-b2f8-4d50-9930-338a5cab791f { display: none !important; }}@media (max-width: 767px){#s-050474ac-b2f8-4d50-9930-338a5cab791f {
  margin-left: 0%;
margin-right: 0%;
display: none;
}
#s-050474ac-b2f8-4d50-9930-338a5cab791f, #wrap-s-050474ac-b2f8-4d50-9930-338a5cab791f, #wrap-content-s-050474ac-b2f8-4d50-9930-338a5cab791f { display: none !important; }}
#s-050474ac-b2f8-4d50-9930-338a5cab791f > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(27, 67, 118, 1);
}

#s-050474ac-b2f8-4d50-9930-338a5cab791f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 10px;
}

#s-050474ac-b2f8-4d50-9930-338a5cab791f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(27, 67, 118, 1);
}

#s-050474ac-b2f8-4d50-9930-338a5cab791f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(27, 67, 118, 1);
}

#s-050474ac-b2f8-4d50-9930-338a5cab791f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(27, 67, 118, 1);
  text-align: left;
  font-family: Montserrat;
  font-weight: 700;
  
  font-size: 24px;
}

#s-050474ac-b2f8-4d50-9930-338a5cab791f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 24px;
}@media (max-width: 767px){#s-050474ac-b2f8-4d50-9930-338a5cab791f > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(27, 67, 118, 1);
}

#s-050474ac-b2f8-4d50-9930-338a5cab791f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 10px;
}

#s-050474ac-b2f8-4d50-9930-338a5cab791f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(27, 67, 118, 1);
}

#s-050474ac-b2f8-4d50-9930-338a5cab791f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(27, 67, 118, 1);
}

#s-050474ac-b2f8-4d50-9930-338a5cab791f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(27, 67, 118, 1);
  text-align: left;
  font-family: Montserrat;
  font-weight: 700;
  
  font-size: 18px;
}

#s-050474ac-b2f8-4d50-9930-338a5cab791f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}}
#s-845fcdee-1c28-4fdc-b69d-e93470ff038a {
  margin-left: auto;
margin-right: auto;
padding-left: 4%;
padding-right: 4%;
}

#s-a6210e7f-1865-4634-b17c-7bea95c66626 {
  margin-left: auto;
margin-right: auto;
padding-left: 4%;
padding-right: 4%;
}

#s-5ab7a02a-686c-4cf1-bd22-a300f73c9ffe {
  margin-left: auto;
margin-right: auto;
padding-left: 4%;
padding-right: 4%;
}

#s-6c68c1fe-7bae-44ec-b146-09067d7ad6d0 {
  margin-left: auto;
margin-right: auto;
padding-left: 4%;
padding-right: 4%;
}

#s-5ee3eb2b-56ef-4806-bbfe-ab2861e6c580 {
  margin-left: auto;
margin-right: auto;
padding-left: 4%;
padding-right: 4%;
}

#s-818ce823-c3d0-4bd0-99df-54bcf41b2401 {
  margin-left: auto;
margin-right: auto;
padding-left: 4%;
padding-right: 4%;
}

#s-5f4cef69-4714-4752-a1b5-70ddc492a47a {
  margin-left: auto;
margin-right: auto;
padding-left: 4%;
padding-right: 4%;
}

#s-0fb5fcaa-c8d4-4b45-875f-f296b79cd85a {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-0fb5fcaa-c8d4-4b45-875f-f296b79cd85a {
  display: none;
}
#s-0fb5fcaa-c8d4-4b45-875f-f296b79cd85a, #wrap-s-0fb5fcaa-c8d4-4b45-875f-f296b79cd85a, #wrap-content-s-0fb5fcaa-c8d4-4b45-875f-f296b79cd85a { display: none !important; }}
#s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0 {
  margin-top: 20px;
margin-left: 10%;
margin-bottom: 20px;
margin-right: 10%;
}
@media (min-width: 1200px){#s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0 {
  display: none;
}
#s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0, #wrap-s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0, #wrap-content-s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0 {
  display: none;
}
#s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0, #wrap-s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0, #wrap-content-s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0 { display: none !important; }}@media (max-width: 767px){#s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0 {
  margin-left: 0%;
margin-right: 0%;
display: none;
}
#s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0, #wrap-s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0, #wrap-content-s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0 { display: none !important; }}
#s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(27, 67, 118, 1);
}

#s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 10px;
}

#s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(27, 67, 118, 1);
}

#s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(27, 67, 118, 1);
}

#s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(27, 67, 118, 1);
  text-align: left;
  font-family: Montserrat;
  font-weight: 700;
  
  font-size: 24px;
}

#s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 24px;
}@media (max-width: 767px){#s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(27, 67, 118, 1);
}

#s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 10px;
}

#s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(27, 67, 118, 1);
}

#s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(27, 67, 118, 1);
}

#s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(27, 67, 118, 1);
  text-align: left;
  font-family: Montserrat;
  font-weight: 700;
  
  font-size: 18px;
}

#s-13ed26e7-5a65-4224-9720-6e5eaa58b5e0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}}
#s-d4c5213f-5b83-419d-86ee-2c30dfae86f6 {
  margin-left: auto;
margin-right: auto;
padding-left: 4%;
padding-right: 4%;
}

#s-88c65138-8ca6-4b43-a03b-fb65696cf25a {
  margin-left: auto;
margin-right: auto;
padding-left: 4%;
padding-right: 4%;
}

#s-98f06850-1dc9-4c81-ae7e-3d5264b5bef8 {
  margin-left: auto;
margin-right: auto;
padding-left: 4%;
padding-right: 4%;
}

#s-b6030719-86e0-4a07-bfb7-2b87847bac27 {
  margin-left: auto;
margin-right: auto;
padding-left: 4%;
padding-right: 4%;
}

#s-e53a109f-17af-4354-9966-ad0a26943c7a {
  margin-left: auto;
margin-right: auto;
padding-left: 4%;
padding-right: 4%;
}

#s-889980e3-660b-41e3-ac93-baba64b58937 {
  margin-left: auto;
margin-right: auto;
padding-left: 4%;
padding-right: 4%;
}

#s-13c5b6fb-ba83-47fb-93c9-2fbdaaae827c {
  margin-left: auto;
margin-right: auto;
padding-left: 4%;
padding-right: 4%;
}

#s-c224cc91-3e53-44be-83fc-343752e1d1d0 {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-c224cc91-3e53-44be-83fc-343752e1d1d0 {
  display: none;
}
#s-c224cc91-3e53-44be-83fc-343752e1d1d0, #wrap-s-c224cc91-3e53-44be-83fc-343752e1d1d0, #wrap-content-s-c224cc91-3e53-44be-83fc-343752e1d1d0 { display: none !important; }}
#s-0e332857-c774-4315-b03f-56bc3af04ff1 {
  margin-top: 20px;
margin-left: 10%;
margin-bottom: 20px;
margin-right: 10%;
}
@media (min-width: 1200px){#s-0e332857-c774-4315-b03f-56bc3af04ff1 {
  display: none;
}
#s-0e332857-c774-4315-b03f-56bc3af04ff1, #wrap-s-0e332857-c774-4315-b03f-56bc3af04ff1, #wrap-content-s-0e332857-c774-4315-b03f-56bc3af04ff1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0e332857-c774-4315-b03f-56bc3af04ff1 {
  display: none;
}
#s-0e332857-c774-4315-b03f-56bc3af04ff1, #wrap-s-0e332857-c774-4315-b03f-56bc3af04ff1, #wrap-content-s-0e332857-c774-4315-b03f-56bc3af04ff1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0e332857-c774-4315-b03f-56bc3af04ff1 {
  display: none;
}
#s-0e332857-c774-4315-b03f-56bc3af04ff1, #wrap-s-0e332857-c774-4315-b03f-56bc3af04ff1, #wrap-content-s-0e332857-c774-4315-b03f-56bc3af04ff1 { display: none !important; }}@media (max-width: 767px){#s-0e332857-c774-4315-b03f-56bc3af04ff1 {
  margin-left: 0%;
margin-right: 0%;
}
}
#s-0e332857-c774-4315-b03f-56bc3af04ff1 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(27, 67, 118, 1);
}

#s-0e332857-c774-4315-b03f-56bc3af04ff1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 10px;
}

#s-0e332857-c774-4315-b03f-56bc3af04ff1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(27, 67, 118, 1);
}

#s-0e332857-c774-4315-b03f-56bc3af04ff1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(27, 67, 118, 1);
}

#s-0e332857-c774-4315-b03f-56bc3af04ff1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(27, 67, 118, 1);
  text-align: left;
  font-family: Montserrat;
  font-weight: 700;
  
  font-size: 24px;
}

#s-0e332857-c774-4315-b03f-56bc3af04ff1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 24px;
}@media (max-width: 767px){#s-0e332857-c774-4315-b03f-56bc3af04ff1 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(27, 67, 118, 1);
}

#s-0e332857-c774-4315-b03f-56bc3af04ff1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 10px;
}

#s-0e332857-c774-4315-b03f-56bc3af04ff1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(27, 67, 118, 1);
}

#s-0e332857-c774-4315-b03f-56bc3af04ff1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(27, 67, 118, 1);
}

#s-0e332857-c774-4315-b03f-56bc3af04ff1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(27, 67, 118, 1);
  text-align: left;
  font-family: Montserrat;
  font-weight: 700;
  
  font-size: 18px;
}

#s-0e332857-c774-4315-b03f-56bc3af04ff1 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}}
#s-d1b18c65-b561-48d4-b07f-1d9176e6d9fb {
  margin-left: auto;
margin-right: auto;
}

#s-9a594172-02f0-4b75-881b-2f2bb78b8baa {
  margin-left: auto;
margin-right: auto;
}

#s-6eb5bd46-0d11-4220-bad7-f7c3e26b3bce {
  margin-left: auto;
margin-right: auto;
padding-left: 4%;
padding-right: 4%;
}

#s-68b9fc69-ea0f-4401-a159-d7a73c5cc829 {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
}

#s-cc3550e9-eab3-4627-8fda-faa40e821f02 {
  margin-left: auto;
margin-right: auto;
padding-left: 4%;
padding-right: 4%;
}

#s-689aeb9c-d4d3-48c6-a1c6-554ffa085777 {
  margin-left: auto;
margin-right: auto;
padding-left: 4%;
padding-right: 4%;
}

#s-2167921a-6825-4c3f-bcb3-e4cc0c9df9b1 {
  margin-left: auto;
margin-right: auto;
padding-left: 4%;
padding-right: 4%;
}

#s-0f0dadc2-9a98-48eb-b091-b2a2b8e23148 {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-0f0dadc2-9a98-48eb-b091-b2a2b8e23148 {
  display: none;
}
#s-0f0dadc2-9a98-48eb-b091-b2a2b8e23148, #wrap-s-0f0dadc2-9a98-48eb-b091-b2a2b8e23148, #wrap-content-s-0f0dadc2-9a98-48eb-b091-b2a2b8e23148 { display: none !important; }}
#s-17e0086c-05c5-41a3-b11f-e75910622745 {
  margin-left: auto;
margin-right: auto;
}

#s-17e0086c-05c5-41a3-b11f-e75910622745 hr {
  border-top: 20px solid rgba(0, 68, 143, 1);
}

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