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

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

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

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

.shg-box-vertical-align-center, .shg-box-vertical-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

#s-5949b5cc-3110-4323-a599-94abf4380884 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-5949b5cc-3110-4323-a599-94abf4380884 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5949b5cc-3110-4323-a599-94abf4380884.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

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

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

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

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

#s-26e29035-bfc5-4a04-ae08-af40bd052736 {
  margin-left: auto;
margin-right: auto;
background-color: rgba(199, 209, 219, 1);
}

@media (min-width: 0px) {
[id="s-26e29035-bfc5-4a04-ae08-af40bd052736"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-26e29035-bfc5-4a04-ae08-af40bd052736"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-26e29035-bfc5-4a04-ae08-af40bd052736"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-26e29035-bfc5-4a04-ae08-af40bd052736"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.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-59ed551e-acf7-4a51-8d31-2448ca52808a {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-59ed551e-acf7-4a51-8d31-2448ca52808a {
  
}
}@media (max-width: 767px){#s-59ed551e-acf7-4a51-8d31-2448ca52808a {
  display: none;
}
#s-59ed551e-acf7-4a51-8d31-2448ca52808a, #wrap-s-59ed551e-acf7-4a51-8d31-2448ca52808a, #wrap-content-s-59ed551e-acf7-4a51-8d31-2448ca52808a { display: none !important; }}
#s-59ed551e-acf7-4a51-8d31-2448ca52808a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-59ed551e-acf7-4a51-8d31-2448ca52808a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-59ed551e-acf7-4a51-8d31-2448ca52808a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-59ed551e-acf7-4a51-8d31-2448ca52808a .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-59ed551e-acf7-4a51-8d31-2448ca52808a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-59ed551e-acf7-4a51-8d31-2448ca52808a img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-59ed551e-acf7-4a51-8d31-2448ca52808a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-59ed551e-acf7-4a51-8d31-2448ca52808a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-59ed551e-acf7-4a51-8d31-2448ca52808a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59ed551e-acf7-4a51-8d31-2448ca52808a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-59ed551e-acf7-4a51-8d31-2448ca52808a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-59ed551e-acf7-4a51-8d31-2448ca52808a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-59ed551e-acf7-4a51-8d31-2448ca52808a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-59ed551e-acf7-4a51-8d31-2448ca52808a .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-59ed551e-acf7-4a51-8d31-2448ca52808a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-59ed551e-acf7-4a51-8d31-2448ca52808a img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-59ed551e-acf7-4a51-8d31-2448ca52808a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-59ed551e-acf7-4a51-8d31-2448ca52808a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-59ed551e-acf7-4a51-8d31-2448ca52808a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59ed551e-acf7-4a51-8d31-2448ca52808a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-59ed551e-acf7-4a51-8d31-2448ca52808a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-59ed551e-acf7-4a51-8d31-2448ca52808a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-59ed551e-acf7-4a51-8d31-2448ca52808a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-59ed551e-acf7-4a51-8d31-2448ca52808a .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-59ed551e-acf7-4a51-8d31-2448ca52808a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-59ed551e-acf7-4a51-8d31-2448ca52808a img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-59ed551e-acf7-4a51-8d31-2448ca52808a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-59ed551e-acf7-4a51-8d31-2448ca52808a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-59ed551e-acf7-4a51-8d31-2448ca52808a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59ed551e-acf7-4a51-8d31-2448ca52808a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-59ed551e-acf7-4a51-8d31-2448ca52808a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-59ed551e-acf7-4a51-8d31-2448ca52808a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-59ed551e-acf7-4a51-8d31-2448ca52808a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-59ed551e-acf7-4a51-8d31-2448ca52808a .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-59ed551e-acf7-4a51-8d31-2448ca52808a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-59ed551e-acf7-4a51-8d31-2448ca52808a img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-59ed551e-acf7-4a51-8d31-2448ca52808a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-59ed551e-acf7-4a51-8d31-2448ca52808a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-59ed551e-acf7-4a51-8d31-2448ca52808a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59ed551e-acf7-4a51-8d31-2448ca52808a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-59ed551e-acf7-4a51-8d31-2448ca52808a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-59ed551e-acf7-4a51-8d31-2448ca52808a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-59ed551e-acf7-4a51-8d31-2448ca52808a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-59ed551e-acf7-4a51-8d31-2448ca52808a .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-59ed551e-acf7-4a51-8d31-2448ca52808a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-59ed551e-acf7-4a51-8d31-2448ca52808a img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-59ed551e-acf7-4a51-8d31-2448ca52808a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-59ed551e-acf7-4a51-8d31-2448ca52808a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-59ed551e-acf7-4a51-8d31-2448ca52808a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59ed551e-acf7-4a51-8d31-2448ca52808a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}
@media (min-width: 1200px){#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce {
  display: none;
}
#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce, #wrap-s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce, #wrap-content-s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce {
  display: none;
}
#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce, #wrap-s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce, #wrap-content-s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce {
  display: none;
}
#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce, #wrap-s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce, #wrap-content-s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce { display: none !important; }}
#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5fcfa2e-8adc-4e56-aaad-2705a1c254ce.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-dee26187-4058-4b69-949a-68b7a290be3e {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}
@media (max-width: 767px){#s-dee26187-4058-4b69-949a-68b7a290be3e {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-dee26187-4058-4b69-949a-68b7a290be3e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dee26187-4058-4b69-949a-68b7a290be3e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-dee26187-4058-4b69-949a-68b7a290be3e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-dee26187-4058-4b69-949a-68b7a290be3e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-dee26187-4058-4b69-949a-68b7a290be3e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-dee26187-4058-4b69-949a-68b7a290be3e img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-dee26187-4058-4b69-949a-68b7a290be3e .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-dee26187-4058-4b69-949a-68b7a290be3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dee26187-4058-4b69-949a-68b7a290be3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dee26187-4058-4b69-949a-68b7a290be3e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-dee26187-4058-4b69-949a-68b7a290be3e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dee26187-4058-4b69-949a-68b7a290be3e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-dee26187-4058-4b69-949a-68b7a290be3e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-dee26187-4058-4b69-949a-68b7a290be3e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-dee26187-4058-4b69-949a-68b7a290be3e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-dee26187-4058-4b69-949a-68b7a290be3e img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-dee26187-4058-4b69-949a-68b7a290be3e .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-dee26187-4058-4b69-949a-68b7a290be3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dee26187-4058-4b69-949a-68b7a290be3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dee26187-4058-4b69-949a-68b7a290be3e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-dee26187-4058-4b69-949a-68b7a290be3e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dee26187-4058-4b69-949a-68b7a290be3e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-dee26187-4058-4b69-949a-68b7a290be3e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-dee26187-4058-4b69-949a-68b7a290be3e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-dee26187-4058-4b69-949a-68b7a290be3e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-dee26187-4058-4b69-949a-68b7a290be3e img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-dee26187-4058-4b69-949a-68b7a290be3e .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-dee26187-4058-4b69-949a-68b7a290be3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dee26187-4058-4b69-949a-68b7a290be3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dee26187-4058-4b69-949a-68b7a290be3e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-dee26187-4058-4b69-949a-68b7a290be3e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dee26187-4058-4b69-949a-68b7a290be3e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-dee26187-4058-4b69-949a-68b7a290be3e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-dee26187-4058-4b69-949a-68b7a290be3e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-dee26187-4058-4b69-949a-68b7a290be3e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-dee26187-4058-4b69-949a-68b7a290be3e img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-dee26187-4058-4b69-949a-68b7a290be3e .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-dee26187-4058-4b69-949a-68b7a290be3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dee26187-4058-4b69-949a-68b7a290be3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dee26187-4058-4b69-949a-68b7a290be3e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-dee26187-4058-4b69-949a-68b7a290be3e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-dee26187-4058-4b69-949a-68b7a290be3e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-dee26187-4058-4b69-949a-68b7a290be3e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-dee26187-4058-4b69-949a-68b7a290be3e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-dee26187-4058-4b69-949a-68b7a290be3e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-dee26187-4058-4b69-949a-68b7a290be3e img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-dee26187-4058-4b69-949a-68b7a290be3e .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-dee26187-4058-4b69-949a-68b7a290be3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dee26187-4058-4b69-949a-68b7a290be3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dee26187-4058-4b69-949a-68b7a290be3e.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 {
  color: ;
  font-family: ;
  font-weight: ;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-theme-text-content h1,
.shg-theme-text-content h2,
.shg-theme-text-content h3,
.shg-theme-text-content h4,
.shg-theme-text-content h5,
.shg-theme-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

.shg-theme-text-content p {
  color: ;
  font-family: ;
  font-weight: ;
}

#s-7c09c584-e8bb-434d-a2e6-bb54209d98e5 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 20px;
padding-right: 10%;
}
@media (min-width: 768px) and (max-width: 991px){#s-7c09c584-e8bb-434d-a2e6-bb54209d98e5 {
  display: none;
}
#s-7c09c584-e8bb-434d-a2e6-bb54209d98e5, #wrap-s-7c09c584-e8bb-434d-a2e6-bb54209d98e5, #wrap-content-s-7c09c584-e8bb-434d-a2e6-bb54209d98e5 { display: none !important; }}@media (max-width: 767px){#s-7c09c584-e8bb-434d-a2e6-bb54209d98e5 {
  display: none;
}
#s-7c09c584-e8bb-434d-a2e6-bb54209d98e5, #wrap-s-7c09c584-e8bb-434d-a2e6-bb54209d98e5, #wrap-content-s-7c09c584-e8bb-434d-a2e6-bb54209d98e5 { display: none !important; }}
#s-7c09c584-e8bb-434d-a2e6-bb54209d98e5 .shg-proportional-font-size,
#s-7c09c584-e8bb-434d-a2e6-bb54209d98e5 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-68caace4-6806-4039-8d93-b011f4db4a17 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 20px;
padding-right: 10%;
}
@media (min-width: 1200px){#s-68caace4-6806-4039-8d93-b011f4db4a17 {
  display: none;
}
#s-68caace4-6806-4039-8d93-b011f4db4a17, #wrap-s-68caace4-6806-4039-8d93-b011f4db4a17, #wrap-content-s-68caace4-6806-4039-8d93-b011f4db4a17 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-68caace4-6806-4039-8d93-b011f4db4a17 {
  display: none;
}
#s-68caace4-6806-4039-8d93-b011f4db4a17, #wrap-s-68caace4-6806-4039-8d93-b011f4db4a17, #wrap-content-s-68caace4-6806-4039-8d93-b011f4db4a17 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-68caace4-6806-4039-8d93-b011f4db4a17 {
  padding-left: 5%;
padding-right: 0%;
}
}@media (max-width: 767px){#s-68caace4-6806-4039-8d93-b011f4db4a17 {
  padding-left: 5%;
padding-right: 0%;
}
}
#s-68caace4-6806-4039-8d93-b011f4db4a17 .shg-proportional-font-size,
#s-68caace4-6806-4039-8d93-b011f4db4a17 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-9b21561c-ceba-4c7f-8165-ae940bf9d354 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 20px;
padding-right: 10%;
}
@media (min-width: 768px) and (max-width: 991px){#s-9b21561c-ceba-4c7f-8165-ae940bf9d354 {
  display: none;
}
#s-9b21561c-ceba-4c7f-8165-ae940bf9d354, #wrap-s-9b21561c-ceba-4c7f-8165-ae940bf9d354, #wrap-content-s-9b21561c-ceba-4c7f-8165-ae940bf9d354 { display: none !important; }}@media (max-width: 767px){#s-9b21561c-ceba-4c7f-8165-ae940bf9d354 {
  display: none;
}
#s-9b21561c-ceba-4c7f-8165-ae940bf9d354, #wrap-s-9b21561c-ceba-4c7f-8165-ae940bf9d354, #wrap-content-s-9b21561c-ceba-4c7f-8165-ae940bf9d354 { display: none !important; }}
#s-9b21561c-ceba-4c7f-8165-ae940bf9d354 .shg-proportional-font-size,
#s-9b21561c-ceba-4c7f-8165-ae940bf9d354 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-e4a5331d-c55d-4864-96b5-93cab7c2e305 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 20px;
padding-right: 10%;
}
@media (min-width: 1200px){#s-e4a5331d-c55d-4864-96b5-93cab7c2e305 {
  display: none;
}
#s-e4a5331d-c55d-4864-96b5-93cab7c2e305, #wrap-s-e4a5331d-c55d-4864-96b5-93cab7c2e305, #wrap-content-s-e4a5331d-c55d-4864-96b5-93cab7c2e305 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e4a5331d-c55d-4864-96b5-93cab7c2e305 {
  display: none;
}
#s-e4a5331d-c55d-4864-96b5-93cab7c2e305, #wrap-s-e4a5331d-c55d-4864-96b5-93cab7c2e305, #wrap-content-s-e4a5331d-c55d-4864-96b5-93cab7c2e305 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e4a5331d-c55d-4864-96b5-93cab7c2e305 {
  padding-left: 5%;
padding-right: 0%;
}
}@media (max-width: 767px){#s-e4a5331d-c55d-4864-96b5-93cab7c2e305 {
  padding-left: 5%;
padding-right: 0%;
}
}
#s-e4a5331d-c55d-4864-96b5-93cab7c2e305 .shg-proportional-font-size,
#s-e4a5331d-c55d-4864-96b5-93cab7c2e305 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-c336095a-243e-4b64-a17a-98f18d397e76 {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-bottom: 20px;
padding-right: 10%;
}
@media (min-width: 768px) and (max-width: 991px){#s-c336095a-243e-4b64-a17a-98f18d397e76 {
  display: none;
}
#s-c336095a-243e-4b64-a17a-98f18d397e76, #wrap-s-c336095a-243e-4b64-a17a-98f18d397e76, #wrap-content-s-c336095a-243e-4b64-a17a-98f18d397e76 { display: none !important; }}@media (max-width: 767px){#s-c336095a-243e-4b64-a17a-98f18d397e76 {
  display: none;
}
#s-c336095a-243e-4b64-a17a-98f18d397e76, #wrap-s-c336095a-243e-4b64-a17a-98f18d397e76, #wrap-content-s-c336095a-243e-4b64-a17a-98f18d397e76 { display: none !important; }}
#s-c336095a-243e-4b64-a17a-98f18d397e76 .shg-proportional-font-size,
#s-c336095a-243e-4b64-a17a-98f18d397e76 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-e8c7b552-b5e6-4e2e-870d-1a539f1e043a {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-bottom: 20px;
padding-right: 10%;
}
@media (min-width: 1200px){#s-e8c7b552-b5e6-4e2e-870d-1a539f1e043a {
  display: none;
}
#s-e8c7b552-b5e6-4e2e-870d-1a539f1e043a, #wrap-s-e8c7b552-b5e6-4e2e-870d-1a539f1e043a, #wrap-content-s-e8c7b552-b5e6-4e2e-870d-1a539f1e043a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e8c7b552-b5e6-4e2e-870d-1a539f1e043a {
  display: none;
}
#s-e8c7b552-b5e6-4e2e-870d-1a539f1e043a, #wrap-s-e8c7b552-b5e6-4e2e-870d-1a539f1e043a, #wrap-content-s-e8c7b552-b5e6-4e2e-870d-1a539f1e043a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e8c7b552-b5e6-4e2e-870d-1a539f1e043a {
  padding-left: 5%;
padding-right: 0%;
}
}@media (max-width: 767px){#s-e8c7b552-b5e6-4e2e-870d-1a539f1e043a {
  padding-left: 5%;
padding-right: 5%;
}
}
#s-e8c7b552-b5e6-4e2e-870d-1a539f1e043a .shg-proportional-font-size,
#s-e8c7b552-b5e6-4e2e-870d-1a539f1e043a .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-ee890e3b-7c69-4e6b-afaf-d702317e7895 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 20px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-ee890e3b-7c69-4e6b-afaf-d702317e7895 {
  display: none;
}
#s-ee890e3b-7c69-4e6b-afaf-d702317e7895, #wrap-s-ee890e3b-7c69-4e6b-afaf-d702317e7895, #wrap-content-s-ee890e3b-7c69-4e6b-afaf-d702317e7895 { display: none !important; }}@media (max-width: 767px){#s-ee890e3b-7c69-4e6b-afaf-d702317e7895 {
  display: none;
}
#s-ee890e3b-7c69-4e6b-afaf-d702317e7895, #wrap-s-ee890e3b-7c69-4e6b-afaf-d702317e7895, #wrap-content-s-ee890e3b-7c69-4e6b-afaf-d702317e7895 { display: none !important; }}







#s-ee890e3b-7c69-4e6b-afaf-d702317e7895 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ee890e3b-7c69-4e6b-afaf-d702317e7895.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0b56ef3a-25a8-4899-a5fb-4b9308207077 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px){#s-0b56ef3a-25a8-4899-a5fb-4b9308207077 {
  padding-left: 0%;
padding-right: 0%;
}
}
@media (min-width: 0px) {
[id="s-0b56ef3a-25a8-4899-a5fb-4b9308207077"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0b56ef3a-25a8-4899-a5fb-4b9308207077"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0b56ef3a-25a8-4899-a5fb-4b9308207077"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0b56ef3a-25a8-4899-a5fb-4b9308207077"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff {
  margin-left: 4%;
margin-right: 0%;
max-width: 1080px;
text-align: center;
}

#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2988e0bc-ad72-4006-8b8b-fb21bcdcefff.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c {
  margin-left: auto;
margin-right: auto;
max-width: 2747px;
text-align: center;
}

#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-010dc2cd-7897-4d4c-be36-aadc56f7a34c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 4%;
  padding-right: 50%;
  
  padding-bottom: 8px;
}


.shg-image-content-margin-container-s-010dc2cd-7897-4d4c-be36-aadc56f7a34c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c img.shogun-image {
  width: 100%;
  
  
  max-width: 2747px;

      
    max-width: 2747px;

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




.s-010dc2cd-7897-4d4c-be36-aadc56f7a34c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-010dc2cd-7897-4d4c-be36-aadc56f7a34c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-010dc2cd-7897-4d4c-be36-aadc56f7a34c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-010dc2cd-7897-4d4c-be36-aadc56f7a34c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-010dc2cd-7897-4d4c-be36-aadc56f7a34c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c img.shogun-image {
  width: 100%;
  
  
  max-width: 2747px;

      
    max-width: 2747px;

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




.s-010dc2cd-7897-4d4c-be36-aadc56f7a34c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-010dc2cd-7897-4d4c-be36-aadc56f7a34c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-010dc2cd-7897-4d4c-be36-aadc56f7a34c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-010dc2cd-7897-4d4c-be36-aadc56f7a34c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-010dc2cd-7897-4d4c-be36-aadc56f7a34c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c img.shogun-image {
  width: 100%;
  
  
  max-width: 2747px;

      
    max-width: 2747px;

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




.s-010dc2cd-7897-4d4c-be36-aadc56f7a34c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-010dc2cd-7897-4d4c-be36-aadc56f7a34c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-010dc2cd-7897-4d4c-be36-aadc56f7a34c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-010dc2cd-7897-4d4c-be36-aadc56f7a34c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-010dc2cd-7897-4d4c-be36-aadc56f7a34c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c img.shogun-image {
  width: 100%;
  
  
  max-width: 2747px;

      
    max-width: 2747px;

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




.s-010dc2cd-7897-4d4c-be36-aadc56f7a34c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-010dc2cd-7897-4d4c-be36-aadc56f7a34c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-010dc2cd-7897-4d4c-be36-aadc56f7a34c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-010dc2cd-7897-4d4c-be36-aadc56f7a34c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-010dc2cd-7897-4d4c-be36-aadc56f7a34c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c img.shogun-image {
  width: 100%;
  
  
  max-width: 2747px;

      
    max-width: 2747px;

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




.s-010dc2cd-7897-4d4c-be36-aadc56f7a34c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-010dc2cd-7897-4d4c-be36-aadc56f7a34c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-010dc2cd-7897-4d4c-be36-aadc56f7a34c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-010dc2cd-7897-4d4c-be36-aadc56f7a34c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-c4915f3e-197d-40cd-ac30-3ce0bbb56d50 {
  margin-left: auto;
margin-right: auto;
padding-left: 7%;
padding-right: 0%;
}

#s-c4915f3e-197d-40cd-ac30-3ce0bbb56d50 .shg-proportional-font-size,
#s-c4915f3e-197d-40cd-ac30-3ce0bbb56d50 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-df1c1af1-d84f-4833-aa5e-99b28d062284 {
  margin-left: auto;
margin-right: auto;
max-width: 3026px;
text-align: center;
}

#s-df1c1af1-d84f-4833-aa5e-99b28d062284 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-df1c1af1-d84f-4833-aa5e-99b28d062284-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-df1c1af1-d84f-4833-aa5e-99b28d062284 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-df1c1af1-d84f-4833-aa5e-99b28d062284 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 50%;
  padding-right: 4%;
  padding-top: 60px;
  padding-bottom: 8px;
}


.shg-image-content-margin-container-s-df1c1af1-d84f-4833-aa5e-99b28d062284 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-df1c1af1-d84f-4833-aa5e-99b28d062284 img.shogun-image {
  width: 100%;
  
  
  max-width: 3026px;

      
    max-width: 3026px;

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




.s-df1c1af1-d84f-4833-aa5e-99b28d062284 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-df1c1af1-d84f-4833-aa5e-99b28d062284.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df1c1af1-d84f-4833-aa5e-99b28d062284.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df1c1af1-d84f-4833-aa5e-99b28d062284.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-df1c1af1-d84f-4833-aa5e-99b28d062284 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-df1c1af1-d84f-4833-aa5e-99b28d062284-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-df1c1af1-d84f-4833-aa5e-99b28d062284 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-df1c1af1-d84f-4833-aa5e-99b28d062284 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-df1c1af1-d84f-4833-aa5e-99b28d062284 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-df1c1af1-d84f-4833-aa5e-99b28d062284 img.shogun-image {
  width: 100%;
  
  
  max-width: 3026px;

      
    max-width: 3026px;

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




.s-df1c1af1-d84f-4833-aa5e-99b28d062284 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-df1c1af1-d84f-4833-aa5e-99b28d062284.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df1c1af1-d84f-4833-aa5e-99b28d062284.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df1c1af1-d84f-4833-aa5e-99b28d062284.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-df1c1af1-d84f-4833-aa5e-99b28d062284 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-df1c1af1-d84f-4833-aa5e-99b28d062284-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-df1c1af1-d84f-4833-aa5e-99b28d062284 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-df1c1af1-d84f-4833-aa5e-99b28d062284 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-df1c1af1-d84f-4833-aa5e-99b28d062284 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-df1c1af1-d84f-4833-aa5e-99b28d062284 img.shogun-image {
  width: 100%;
  
  
  max-width: 3026px;

      
    max-width: 3026px;

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




.s-df1c1af1-d84f-4833-aa5e-99b28d062284 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-df1c1af1-d84f-4833-aa5e-99b28d062284.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df1c1af1-d84f-4833-aa5e-99b28d062284.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df1c1af1-d84f-4833-aa5e-99b28d062284.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-df1c1af1-d84f-4833-aa5e-99b28d062284 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-df1c1af1-d84f-4833-aa5e-99b28d062284-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-df1c1af1-d84f-4833-aa5e-99b28d062284 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-df1c1af1-d84f-4833-aa5e-99b28d062284 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-df1c1af1-d84f-4833-aa5e-99b28d062284 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-df1c1af1-d84f-4833-aa5e-99b28d062284 img.shogun-image {
  width: 100%;
  
  
  max-width: 3026px;

      
    max-width: 3026px;

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




.s-df1c1af1-d84f-4833-aa5e-99b28d062284 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-df1c1af1-d84f-4833-aa5e-99b28d062284.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df1c1af1-d84f-4833-aa5e-99b28d062284.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df1c1af1-d84f-4833-aa5e-99b28d062284.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-df1c1af1-d84f-4833-aa5e-99b28d062284 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-df1c1af1-d84f-4833-aa5e-99b28d062284-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-df1c1af1-d84f-4833-aa5e-99b28d062284 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-df1c1af1-d84f-4833-aa5e-99b28d062284 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-df1c1af1-d84f-4833-aa5e-99b28d062284 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-df1c1af1-d84f-4833-aa5e-99b28d062284 img.shogun-image {
  width: 100%;
  
  
  max-width: 3026px;

      
    max-width: 3026px;

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




.s-df1c1af1-d84f-4833-aa5e-99b28d062284 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-df1c1af1-d84f-4833-aa5e-99b28d062284.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df1c1af1-d84f-4833-aa5e-99b28d062284.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df1c1af1-d84f-4833-aa5e-99b28d062284.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-d15e962e-bdb0-429a-83a4-53aabb2fea77 {
  margin-left: auto;
margin-right: auto;
padding-left: 7%;
padding-right: 0%;
}

#s-d15e962e-bdb0-429a-83a4-53aabb2fea77 .shg-proportional-font-size,
#s-d15e962e-bdb0-429a-83a4-53aabb2fea77 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-ee612995-d3c9-4839-a7a7-c25c6bca0115 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-ee612995-d3c9-4839-a7a7-c25c6bca0115 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ee612995-d3c9-4839-a7a7-c25c6bca0115-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ee612995-d3c9-4839-a7a7-c25c6bca0115 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ee612995-d3c9-4839-a7a7-c25c6bca0115 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-ee612995-d3c9-4839-a7a7-c25c6bca0115 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ee612995-d3c9-4839-a7a7-c25c6bca0115 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-ee612995-d3c9-4839-a7a7-c25c6bca0115 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ee612995-d3c9-4839-a7a7-c25c6bca0115.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ee612995-d3c9-4839-a7a7-c25c6bca0115.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee612995-d3c9-4839-a7a7-c25c6bca0115.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-ee612995-d3c9-4839-a7a7-c25c6bca0115 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ee612995-d3c9-4839-a7a7-c25c6bca0115-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ee612995-d3c9-4839-a7a7-c25c6bca0115 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ee612995-d3c9-4839-a7a7-c25c6bca0115 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-ee612995-d3c9-4839-a7a7-c25c6bca0115 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ee612995-d3c9-4839-a7a7-c25c6bca0115 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-ee612995-d3c9-4839-a7a7-c25c6bca0115 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ee612995-d3c9-4839-a7a7-c25c6bca0115.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ee612995-d3c9-4839-a7a7-c25c6bca0115.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee612995-d3c9-4839-a7a7-c25c6bca0115.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-ee612995-d3c9-4839-a7a7-c25c6bca0115 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ee612995-d3c9-4839-a7a7-c25c6bca0115-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ee612995-d3c9-4839-a7a7-c25c6bca0115 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ee612995-d3c9-4839-a7a7-c25c6bca0115 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-ee612995-d3c9-4839-a7a7-c25c6bca0115 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ee612995-d3c9-4839-a7a7-c25c6bca0115 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-ee612995-d3c9-4839-a7a7-c25c6bca0115 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ee612995-d3c9-4839-a7a7-c25c6bca0115.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ee612995-d3c9-4839-a7a7-c25c6bca0115.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee612995-d3c9-4839-a7a7-c25c6bca0115.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-ee612995-d3c9-4839-a7a7-c25c6bca0115 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ee612995-d3c9-4839-a7a7-c25c6bca0115-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ee612995-d3c9-4839-a7a7-c25c6bca0115 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ee612995-d3c9-4839-a7a7-c25c6bca0115 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-ee612995-d3c9-4839-a7a7-c25c6bca0115 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ee612995-d3c9-4839-a7a7-c25c6bca0115 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-ee612995-d3c9-4839-a7a7-c25c6bca0115 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ee612995-d3c9-4839-a7a7-c25c6bca0115.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ee612995-d3c9-4839-a7a7-c25c6bca0115.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee612995-d3c9-4839-a7a7-c25c6bca0115.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-ee612995-d3c9-4839-a7a7-c25c6bca0115 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ee612995-d3c9-4839-a7a7-c25c6bca0115-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ee612995-d3c9-4839-a7a7-c25c6bca0115 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ee612995-d3c9-4839-a7a7-c25c6bca0115 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-ee612995-d3c9-4839-a7a7-c25c6bca0115 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ee612995-d3c9-4839-a7a7-c25c6bca0115 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-ee612995-d3c9-4839-a7a7-c25c6bca0115 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ee612995-d3c9-4839-a7a7-c25c6bca0115.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ee612995-d3c9-4839-a7a7-c25c6bca0115.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee612995-d3c9-4839-a7a7-c25c6bca0115.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-f0a58c73-bec0-42e4-814a-d845f7ae5319 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-f0a58c73-bec0-42e4-814a-d845f7ae5319 {
  display: none;
}
#s-f0a58c73-bec0-42e4-814a-d845f7ae5319, #wrap-s-f0a58c73-bec0-42e4-814a-d845f7ae5319, #wrap-content-s-f0a58c73-bec0-42e4-814a-d845f7ae5319 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f0a58c73-bec0-42e4-814a-d845f7ae5319 {
  display: none;
}
#s-f0a58c73-bec0-42e4-814a-d845f7ae5319, #wrap-s-f0a58c73-bec0-42e4-814a-d845f7ae5319, #wrap-content-s-f0a58c73-bec0-42e4-814a-d845f7ae5319 { display: none !important; }}







#s-f0a58c73-bec0-42e4-814a-d845f7ae5319 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f0a58c73-bec0-42e4-814a-d845f7ae5319.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 {
  margin-left: auto;
margin-right: auto;
max-width: 5560px;
text-align: center;
}
@media (max-width: 767px){#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 {
  display: none;
}
#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169, #wrap-s-008a7888-7e60-4d0e-a2e6-ddd7da61c169, #wrap-content-s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 { display: none !important; }}
#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 img.shogun-image {
  width: 100%;
  
  
  max-width: 5560px;

      
    max-width: 5560px;

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




.s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-008a7888-7e60-4d0e-a2e6-ddd7da61c169.shg-align-container {
  display: flex;
  justify-content: center
}

.s-008a7888-7e60-4d0e-a2e6-ddd7da61c169.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 img.shogun-image {
  width: 100%;
  
  
  max-width: 5560px;

      
    max-width: 5560px;

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




.s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-008a7888-7e60-4d0e-a2e6-ddd7da61c169.shg-align-container {
  display: flex;
  justify-content: center
}

.s-008a7888-7e60-4d0e-a2e6-ddd7da61c169.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 img.shogun-image {
  width: 100%;
  
  
  max-width: 5560px;

      
    max-width: 5560px;

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




.s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-008a7888-7e60-4d0e-a2e6-ddd7da61c169.shg-align-container {
  display: flex;
  justify-content: center
}

.s-008a7888-7e60-4d0e-a2e6-ddd7da61c169.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 img.shogun-image {
  width: 100%;
  
  
  max-width: 5560px;

      
    max-width: 5560px;

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




.s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-008a7888-7e60-4d0e-a2e6-ddd7da61c169.shg-align-container {
  display: flex;
  justify-content: center
}

.s-008a7888-7e60-4d0e-a2e6-ddd7da61c169.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 35%;
  padding-right: 8%;
  padding-top: 25px;
  padding-bottom: 0px;
}


.shg-image-content-margin-container-s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 img.shogun-image {
  width: 100%;
  
  
  max-width: 5560px;

      
    max-width: 5560px;

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




.s-008a7888-7e60-4d0e-a2e6-ddd7da61c169 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-008a7888-7e60-4d0e-a2e6-ddd7da61c169.shg-align-container {
  display: flex;
  justify-content: center
}

.s-008a7888-7e60-4d0e-a2e6-ddd7da61c169.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-008a7888-7e60-4d0e-a2e6-ddd7da61c169.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-804eca65-f122-4bc9-a7e1-9141bbde67c7 {
  margin-left: auto;
margin-right: auto;
max-width: 2747px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-804eca65-f122-4bc9-a7e1-9141bbde67c7 {
  display: none;
}
#s-804eca65-f122-4bc9-a7e1-9141bbde67c7, #wrap-s-804eca65-f122-4bc9-a7e1-9141bbde67c7, #wrap-content-s-804eca65-f122-4bc9-a7e1-9141bbde67c7 { display: none !important; }}@media (max-width: 767px){#s-804eca65-f122-4bc9-a7e1-9141bbde67c7 {
  
}
}
#s-804eca65-f122-4bc9-a7e1-9141bbde67c7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-804eca65-f122-4bc9-a7e1-9141bbde67c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-804eca65-f122-4bc9-a7e1-9141bbde67c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-804eca65-f122-4bc9-a7e1-9141bbde67c7 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-804eca65-f122-4bc9-a7e1-9141bbde67c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-804eca65-f122-4bc9-a7e1-9141bbde67c7 img.shogun-image {
  width: 100%;
  
  
  max-width: 2747px;

      
    max-width: 2747px;

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




.s-804eca65-f122-4bc9-a7e1-9141bbde67c7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-804eca65-f122-4bc9-a7e1-9141bbde67c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-804eca65-f122-4bc9-a7e1-9141bbde67c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-804eca65-f122-4bc9-a7e1-9141bbde67c7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-804eca65-f122-4bc9-a7e1-9141bbde67c7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-804eca65-f122-4bc9-a7e1-9141bbde67c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-804eca65-f122-4bc9-a7e1-9141bbde67c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-804eca65-f122-4bc9-a7e1-9141bbde67c7 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-804eca65-f122-4bc9-a7e1-9141bbde67c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-804eca65-f122-4bc9-a7e1-9141bbde67c7 img.shogun-image {
  width: 100%;
  
  
  max-width: 2747px;

      
    max-width: 2747px;

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




.s-804eca65-f122-4bc9-a7e1-9141bbde67c7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-804eca65-f122-4bc9-a7e1-9141bbde67c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-804eca65-f122-4bc9-a7e1-9141bbde67c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-804eca65-f122-4bc9-a7e1-9141bbde67c7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-804eca65-f122-4bc9-a7e1-9141bbde67c7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-804eca65-f122-4bc9-a7e1-9141bbde67c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-804eca65-f122-4bc9-a7e1-9141bbde67c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-804eca65-f122-4bc9-a7e1-9141bbde67c7 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-804eca65-f122-4bc9-a7e1-9141bbde67c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-804eca65-f122-4bc9-a7e1-9141bbde67c7 img.shogun-image {
  width: 100%;
  
  
  max-width: 2747px;

      
    max-width: 2747px;

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




.s-804eca65-f122-4bc9-a7e1-9141bbde67c7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-804eca65-f122-4bc9-a7e1-9141bbde67c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-804eca65-f122-4bc9-a7e1-9141bbde67c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-804eca65-f122-4bc9-a7e1-9141bbde67c7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-804eca65-f122-4bc9-a7e1-9141bbde67c7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-804eca65-f122-4bc9-a7e1-9141bbde67c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-804eca65-f122-4bc9-a7e1-9141bbde67c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-804eca65-f122-4bc9-a7e1-9141bbde67c7 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 55%;
  padding-right: 10%;
  padding-top: 25px;
  
}


.shg-image-content-margin-container-s-804eca65-f122-4bc9-a7e1-9141bbde67c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-804eca65-f122-4bc9-a7e1-9141bbde67c7 img.shogun-image {
  width: 100%;
  
  
  max-width: 2747px;

      
    max-width: 2747px;

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




.s-804eca65-f122-4bc9-a7e1-9141bbde67c7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-804eca65-f122-4bc9-a7e1-9141bbde67c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-804eca65-f122-4bc9-a7e1-9141bbde67c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-804eca65-f122-4bc9-a7e1-9141bbde67c7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-804eca65-f122-4bc9-a7e1-9141bbde67c7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-804eca65-f122-4bc9-a7e1-9141bbde67c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-804eca65-f122-4bc9-a7e1-9141bbde67c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-804eca65-f122-4bc9-a7e1-9141bbde67c7 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 35%;
  padding-right: 8%;
  padding-top: 30px;
  padding-bottom: 0px;
}


.shg-image-content-margin-container-s-804eca65-f122-4bc9-a7e1-9141bbde67c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-804eca65-f122-4bc9-a7e1-9141bbde67c7 img.shogun-image {
  width: 100%;
  
  
  max-width: 2747px;

      
    max-width: 2747px;

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




.s-804eca65-f122-4bc9-a7e1-9141bbde67c7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-804eca65-f122-4bc9-a7e1-9141bbde67c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-804eca65-f122-4bc9-a7e1-9141bbde67c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-804eca65-f122-4bc9-a7e1-9141bbde67c7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-479f41fc-1baa-463d-b7cb-54f0d84bc1c6 {
  margin-left: auto;
margin-right: auto;
padding-left: 10%;
padding-right: 5%;
}
@media (min-width: 768px) and (max-width: 991px){#s-479f41fc-1baa-463d-b7cb-54f0d84bc1c6 {
  padding-left: 5%;
padding-bottom: 20px;
}
}@media (max-width: 767px){#s-479f41fc-1baa-463d-b7cb-54f0d84bc1c6 {
  padding-top: 25px;
padding-left: 5%;
padding-bottom: 30px;
padding-right: 5%;
}
}
#s-479f41fc-1baa-463d-b7cb-54f0d84bc1c6 .shg-proportional-font-size,
#s-479f41fc-1baa-463d-b7cb-54f0d84bc1c6 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-4ad3d54a-d5b8-4265-b752-37b74a722590 {
  margin-left: auto;
margin-right: auto;
max-width: 5250px;
text-align: center;
}
@media (max-width: 767px){#s-4ad3d54a-d5b8-4265-b752-37b74a722590 {
  display: none;
}
#s-4ad3d54a-d5b8-4265-b752-37b74a722590, #wrap-s-4ad3d54a-d5b8-4265-b752-37b74a722590, #wrap-content-s-4ad3d54a-d5b8-4265-b752-37b74a722590 { display: none !important; }}
#s-4ad3d54a-d5b8-4265-b752-37b74a722590 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4ad3d54a-d5b8-4265-b752-37b74a722590-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4ad3d54a-d5b8-4265-b752-37b74a722590 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4ad3d54a-d5b8-4265-b752-37b74a722590 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-4ad3d54a-d5b8-4265-b752-37b74a722590 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4ad3d54a-d5b8-4265-b752-37b74a722590 img.shogun-image {
  width: 100%;
  
  
  max-width: 5250px;

      
    max-width: 5250px;

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




.s-4ad3d54a-d5b8-4265-b752-37b74a722590 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4ad3d54a-d5b8-4265-b752-37b74a722590.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4ad3d54a-d5b8-4265-b752-37b74a722590.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ad3d54a-d5b8-4265-b752-37b74a722590.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-4ad3d54a-d5b8-4265-b752-37b74a722590 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4ad3d54a-d5b8-4265-b752-37b74a722590-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4ad3d54a-d5b8-4265-b752-37b74a722590 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4ad3d54a-d5b8-4265-b752-37b74a722590 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-4ad3d54a-d5b8-4265-b752-37b74a722590 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4ad3d54a-d5b8-4265-b752-37b74a722590 img.shogun-image {
  width: 100%;
  
  
  max-width: 5250px;

      
    max-width: 5250px;

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




.s-4ad3d54a-d5b8-4265-b752-37b74a722590 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4ad3d54a-d5b8-4265-b752-37b74a722590.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4ad3d54a-d5b8-4265-b752-37b74a722590.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ad3d54a-d5b8-4265-b752-37b74a722590.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-4ad3d54a-d5b8-4265-b752-37b74a722590 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4ad3d54a-d5b8-4265-b752-37b74a722590-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4ad3d54a-d5b8-4265-b752-37b74a722590 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4ad3d54a-d5b8-4265-b752-37b74a722590 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-4ad3d54a-d5b8-4265-b752-37b74a722590 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4ad3d54a-d5b8-4265-b752-37b74a722590 img.shogun-image {
  width: 100%;
  
  
  max-width: 5250px;

      
    max-width: 5250px;

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




.s-4ad3d54a-d5b8-4265-b752-37b74a722590 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4ad3d54a-d5b8-4265-b752-37b74a722590.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4ad3d54a-d5b8-4265-b752-37b74a722590.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ad3d54a-d5b8-4265-b752-37b74a722590.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-4ad3d54a-d5b8-4265-b752-37b74a722590 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4ad3d54a-d5b8-4265-b752-37b74a722590-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4ad3d54a-d5b8-4265-b752-37b74a722590 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4ad3d54a-d5b8-4265-b752-37b74a722590 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-4ad3d54a-d5b8-4265-b752-37b74a722590 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4ad3d54a-d5b8-4265-b752-37b74a722590 img.shogun-image {
  width: 100%;
  
  
  max-width: 5250px;

      
    max-width: 5250px;

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




.s-4ad3d54a-d5b8-4265-b752-37b74a722590 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4ad3d54a-d5b8-4265-b752-37b74a722590.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4ad3d54a-d5b8-4265-b752-37b74a722590.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ad3d54a-d5b8-4265-b752-37b74a722590.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-4ad3d54a-d5b8-4265-b752-37b74a722590 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4ad3d54a-d5b8-4265-b752-37b74a722590-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4ad3d54a-d5b8-4265-b752-37b74a722590 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4ad3d54a-d5b8-4265-b752-37b74a722590 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 8%;
  padding-right: 35%;
  padding-top: 25px;
  padding-bottom: 0px;
}


.shg-image-content-margin-container-s-4ad3d54a-d5b8-4265-b752-37b74a722590 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4ad3d54a-d5b8-4265-b752-37b74a722590 img.shogun-image {
  width: 100%;
  
  
  max-width: 5250px;

      
    max-width: 5250px;

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




.s-4ad3d54a-d5b8-4265-b752-37b74a722590 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4ad3d54a-d5b8-4265-b752-37b74a722590.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4ad3d54a-d5b8-4265-b752-37b74a722590.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ad3d54a-d5b8-4265-b752-37b74a722590.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c {
  margin-left: auto;
margin-right: auto;
max-width: 3026px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c {
  display: none;
}
#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c, #wrap-s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c, #wrap-content-s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c { display: none !important; }}
#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c img.shogun-image {
  width: 100%;
  
  
  max-width: 3026px;

      
    max-width: 3026px;

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




.s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c img.shogun-image {
  width: 100%;
  
  
  max-width: 3026px;

      
    max-width: 3026px;

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




.s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c img.shogun-image {
  width: 100%;
  
  
  max-width: 3026px;

      
    max-width: 3026px;

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




.s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 10%;
  padding-right: 55%;
  padding-top: 25px;
  
}


.shg-image-content-margin-container-s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c img.shogun-image {
  width: 100%;
  
  
  max-width: 3026px;

      
    max-width: 3026px;

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




.s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 8%;
  padding-right: 35%;
  padding-top: 25px;
  padding-bottom: 0px;
}


.shg-image-content-margin-container-s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c img.shogun-image {
  width: 100%;
  
  
  max-width: 3026px;

      
    max-width: 3026px;

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




.s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6b37bfff-8167-4915-bb85-3d8b5fb23e3c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-53064cd5-8759-42ed-b5e0-27f810a2f395 {
  margin-left: auto;
margin-right: auto;
padding-left: 10%;
padding-right: 5%;
}
@media (min-width: 768px) and (max-width: 991px){#s-53064cd5-8759-42ed-b5e0-27f810a2f395 {
  padding-left: 5%;
padding-bottom: 20px;
}
}@media (max-width: 767px){#s-53064cd5-8759-42ed-b5e0-27f810a2f395 {
  padding-top: 25px;
padding-left: 5%;
padding-bottom: 30px;
padding-right: 5%;
}
}
#s-53064cd5-8759-42ed-b5e0-27f810a2f395 .shg-proportional-font-size,
#s-53064cd5-8759-42ed-b5e0-27f810a2f395 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-d299a1a2-d379-4f36-92dc-6bb7ef1c28a7 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-d299a1a2-d379-4f36-92dc-6bb7ef1c28a7 {
  display: none;
}
#s-d299a1a2-d379-4f36-92dc-6bb7ef1c28a7, #wrap-s-d299a1a2-d379-4f36-92dc-6bb7ef1c28a7, #wrap-content-s-d299a1a2-d379-4f36-92dc-6bb7ef1c28a7 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d299a1a2-d379-4f36-92dc-6bb7ef1c28a7 {
  display: none;
}
#s-d299a1a2-d379-4f36-92dc-6bb7ef1c28a7, #wrap-s-d299a1a2-d379-4f36-92dc-6bb7ef1c28a7, #wrap-content-s-d299a1a2-d379-4f36-92dc-6bb7ef1c28a7 { display: none !important; }}







#s-d299a1a2-d379-4f36-92dc-6bb7ef1c28a7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d299a1a2-d379-4f36-92dc-6bb7ef1c28a7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-03177d49-fe3c-4dc1-8548-3694add1b91b {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-03177d49-fe3c-4dc1-8548-3694add1b91b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-03177d49-fe3c-4dc1-8548-3694add1b91b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-03177d49-fe3c-4dc1-8548-3694add1b91b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-03177d49-fe3c-4dc1-8548-3694add1b91b .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-03177d49-fe3c-4dc1-8548-3694add1b91b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-03177d49-fe3c-4dc1-8548-3694add1b91b img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-03177d49-fe3c-4dc1-8548-3694add1b91b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-03177d49-fe3c-4dc1-8548-3694add1b91b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03177d49-fe3c-4dc1-8548-3694add1b91b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03177d49-fe3c-4dc1-8548-3694add1b91b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-03177d49-fe3c-4dc1-8548-3694add1b91b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-03177d49-fe3c-4dc1-8548-3694add1b91b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-03177d49-fe3c-4dc1-8548-3694add1b91b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-03177d49-fe3c-4dc1-8548-3694add1b91b .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-03177d49-fe3c-4dc1-8548-3694add1b91b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-03177d49-fe3c-4dc1-8548-3694add1b91b img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-03177d49-fe3c-4dc1-8548-3694add1b91b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-03177d49-fe3c-4dc1-8548-3694add1b91b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03177d49-fe3c-4dc1-8548-3694add1b91b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03177d49-fe3c-4dc1-8548-3694add1b91b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-03177d49-fe3c-4dc1-8548-3694add1b91b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-03177d49-fe3c-4dc1-8548-3694add1b91b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-03177d49-fe3c-4dc1-8548-3694add1b91b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-03177d49-fe3c-4dc1-8548-3694add1b91b .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-03177d49-fe3c-4dc1-8548-3694add1b91b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-03177d49-fe3c-4dc1-8548-3694add1b91b img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-03177d49-fe3c-4dc1-8548-3694add1b91b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-03177d49-fe3c-4dc1-8548-3694add1b91b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03177d49-fe3c-4dc1-8548-3694add1b91b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03177d49-fe3c-4dc1-8548-3694add1b91b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-03177d49-fe3c-4dc1-8548-3694add1b91b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-03177d49-fe3c-4dc1-8548-3694add1b91b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-03177d49-fe3c-4dc1-8548-3694add1b91b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-03177d49-fe3c-4dc1-8548-3694add1b91b .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-03177d49-fe3c-4dc1-8548-3694add1b91b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-03177d49-fe3c-4dc1-8548-3694add1b91b img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-03177d49-fe3c-4dc1-8548-3694add1b91b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-03177d49-fe3c-4dc1-8548-3694add1b91b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03177d49-fe3c-4dc1-8548-3694add1b91b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03177d49-fe3c-4dc1-8548-3694add1b91b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-03177d49-fe3c-4dc1-8548-3694add1b91b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-03177d49-fe3c-4dc1-8548-3694add1b91b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-03177d49-fe3c-4dc1-8548-3694add1b91b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-03177d49-fe3c-4dc1-8548-3694add1b91b .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-03177d49-fe3c-4dc1-8548-3694add1b91b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-03177d49-fe3c-4dc1-8548-3694add1b91b img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-03177d49-fe3c-4dc1-8548-3694add1b91b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-03177d49-fe3c-4dc1-8548-3694add1b91b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03177d49-fe3c-4dc1-8548-3694add1b91b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03177d49-fe3c-4dc1-8548-3694add1b91b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-45fbb3c1-6f15-4940-80b1-e77a60dbc105 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(199, 209, 219, 1);
}
@media (min-width: 1200px){#s-45fbb3c1-6f15-4940-80b1-e77a60dbc105 {
  display: none;
}
#s-45fbb3c1-6f15-4940-80b1-e77a60dbc105, #wrap-s-45fbb3c1-6f15-4940-80b1-e77a60dbc105, #wrap-content-s-45fbb3c1-6f15-4940-80b1-e77a60dbc105 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-45fbb3c1-6f15-4940-80b1-e77a60dbc105 {
  display: none;
}
#s-45fbb3c1-6f15-4940-80b1-e77a60dbc105, #wrap-s-45fbb3c1-6f15-4940-80b1-e77a60dbc105, #wrap-content-s-45fbb3c1-6f15-4940-80b1-e77a60dbc105 { display: none !important; }}







#s-45fbb3c1-6f15-4940-80b1-e77a60dbc105 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-45fbb3c1-6f15-4940-80b1-e77a60dbc105.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-29563e33-db0c-4a5a-b0c8-04c03cf0c01f {
  margin-left: auto;
margin-right: auto;
padding-top: 30px;
padding-bottom: 20px;
padding-right: 0%;
}
@media (min-width: 768px) and (max-width: 991px){#s-29563e33-db0c-4a5a-b0c8-04c03cf0c01f {
  padding-left: 5%;
}
}@media (max-width: 767px){#s-29563e33-db0c-4a5a-b0c8-04c03cf0c01f {
  padding-left: 5%;
}
}
#s-29563e33-db0c-4a5a-b0c8-04c03cf0c01f .shg-proportional-font-size,
#s-29563e33-db0c-4a5a-b0c8-04c03cf0c01f .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-f6393480-afc2-487e-acfe-1baa1358d7ee {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f6393480-afc2-487e-acfe-1baa1358d7ee {
  padding-left: 5%;
}
}@media (max-width: 767px){#s-f6393480-afc2-487e-acfe-1baa1358d7ee {
  padding-left: 5%;
}
}
#s-f6393480-afc2-487e-acfe-1baa1358d7ee .shg-proportional-font-size,
#s-f6393480-afc2-487e-acfe-1baa1358d7ee .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-c8540320-b2fa-4cea-901e-29ad1a03703d {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(199, 209, 219, 1);
}
@media (min-width: 1200px){#s-c8540320-b2fa-4cea-901e-29ad1a03703d {
  display: none;
}
#s-c8540320-b2fa-4cea-901e-29ad1a03703d, #wrap-s-c8540320-b2fa-4cea-901e-29ad1a03703d, #wrap-content-s-c8540320-b2fa-4cea-901e-29ad1a03703d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c8540320-b2fa-4cea-901e-29ad1a03703d {
  display: none;
}
#s-c8540320-b2fa-4cea-901e-29ad1a03703d, #wrap-s-c8540320-b2fa-4cea-901e-29ad1a03703d, #wrap-content-s-c8540320-b2fa-4cea-901e-29ad1a03703d { display: none !important; }}@media (max-width: 767px){#s-c8540320-b2fa-4cea-901e-29ad1a03703d {
  display: none;
}
#s-c8540320-b2fa-4cea-901e-29ad1a03703d, #wrap-s-c8540320-b2fa-4cea-901e-29ad1a03703d, #wrap-content-s-c8540320-b2fa-4cea-901e-29ad1a03703d { display: none !important; }}







#s-c8540320-b2fa-4cea-901e-29ad1a03703d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c8540320-b2fa-4cea-901e-29ad1a03703d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2c49982b-189b-4e7f-b71d-0d7cf2800597 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-2c49982b-189b-4e7f-b71d-0d7cf2800597 {
  display: none;
}
#s-2c49982b-189b-4e7f-b71d-0d7cf2800597, #wrap-s-2c49982b-189b-4e7f-b71d-0d7cf2800597, #wrap-content-s-2c49982b-189b-4e7f-b71d-0d7cf2800597 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2c49982b-189b-4e7f-b71d-0d7cf2800597 {
  display: none;
}
#s-2c49982b-189b-4e7f-b71d-0d7cf2800597, #wrap-s-2c49982b-189b-4e7f-b71d-0d7cf2800597, #wrap-content-s-2c49982b-189b-4e7f-b71d-0d7cf2800597 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2c49982b-189b-4e7f-b71d-0d7cf2800597 {
  padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
}
}@media (max-width: 767px){#s-2c49982b-189b-4e7f-b71d-0d7cf2800597 {
  padding-left: 4%;
padding-right: 4%;
display: none;
}
#s-2c49982b-189b-4e7f-b71d-0d7cf2800597, #wrap-s-2c49982b-189b-4e7f-b71d-0d7cf2800597, #wrap-content-s-2c49982b-189b-4e7f-b71d-0d7cf2800597 { display: none !important; }}
@media (min-width: 0px) {
[id="s-2c49982b-189b-4e7f-b71d-0d7cf2800597"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-2c49982b-189b-4e7f-b71d-0d7cf2800597"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2c49982b-189b-4e7f-b71d-0d7cf2800597"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2c49982b-189b-4e7f-b71d-0d7cf2800597"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-eef165e5-9085-486e-9852-f3d760ca01a1 {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}

#s-eef165e5-9085-486e-9852-f3d760ca01a1 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-eef165e5-9085-486e-9852-f3d760ca01a1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-eef165e5-9085-486e-9852-f3d760ca01a1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-eef165e5-9085-486e-9852-f3d760ca01a1 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-eef165e5-9085-486e-9852-f3d760ca01a1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-eef165e5-9085-486e-9852-f3d760ca01a1 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-eef165e5-9085-486e-9852-f3d760ca01a1 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-eef165e5-9085-486e-9852-f3d760ca01a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eef165e5-9085-486e-9852-f3d760ca01a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eef165e5-9085-486e-9852-f3d760ca01a1.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-eef165e5-9085-486e-9852-f3d760ca01a1 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-eef165e5-9085-486e-9852-f3d760ca01a1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-eef165e5-9085-486e-9852-f3d760ca01a1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-eef165e5-9085-486e-9852-f3d760ca01a1 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-eef165e5-9085-486e-9852-f3d760ca01a1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-eef165e5-9085-486e-9852-f3d760ca01a1 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-eef165e5-9085-486e-9852-f3d760ca01a1 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-eef165e5-9085-486e-9852-f3d760ca01a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eef165e5-9085-486e-9852-f3d760ca01a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eef165e5-9085-486e-9852-f3d760ca01a1.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-eef165e5-9085-486e-9852-f3d760ca01a1 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-eef165e5-9085-486e-9852-f3d760ca01a1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-eef165e5-9085-486e-9852-f3d760ca01a1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-eef165e5-9085-486e-9852-f3d760ca01a1 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-eef165e5-9085-486e-9852-f3d760ca01a1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-eef165e5-9085-486e-9852-f3d760ca01a1 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-eef165e5-9085-486e-9852-f3d760ca01a1 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-eef165e5-9085-486e-9852-f3d760ca01a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eef165e5-9085-486e-9852-f3d760ca01a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eef165e5-9085-486e-9852-f3d760ca01a1.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-eef165e5-9085-486e-9852-f3d760ca01a1 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-eef165e5-9085-486e-9852-f3d760ca01a1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-eef165e5-9085-486e-9852-f3d760ca01a1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-eef165e5-9085-486e-9852-f3d760ca01a1 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-eef165e5-9085-486e-9852-f3d760ca01a1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-eef165e5-9085-486e-9852-f3d760ca01a1 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-eef165e5-9085-486e-9852-f3d760ca01a1 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-eef165e5-9085-486e-9852-f3d760ca01a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eef165e5-9085-486e-9852-f3d760ca01a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eef165e5-9085-486e-9852-f3d760ca01a1.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-eef165e5-9085-486e-9852-f3d760ca01a1 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-eef165e5-9085-486e-9852-f3d760ca01a1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-eef165e5-9085-486e-9852-f3d760ca01a1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-eef165e5-9085-486e-9852-f3d760ca01a1 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-eef165e5-9085-486e-9852-f3d760ca01a1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-eef165e5-9085-486e-9852-f3d760ca01a1 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-eef165e5-9085-486e-9852-f3d760ca01a1 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-eef165e5-9085-486e-9852-f3d760ca01a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eef165e5-9085-486e-9852-f3d760ca01a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eef165e5-9085-486e-9852-f3d760ca01a1.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-6a84b9ca-d8c4-4ec5-afd9-b757afc20711 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 4%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-6a84b9ca-d8c4-4ec5-afd9-b757afc20711 .shg-proportional-font-size,
#s-6a84b9ca-d8c4-4ec5-afd9-b757afc20711 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-988f3e24-ab11-4825-88a3-0811c734a7b9 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 4%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-988f3e24-ab11-4825-88a3-0811c734a7b9 .shg-proportional-font-size,
#s-988f3e24-ab11-4825-88a3-0811c734a7b9 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}

#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94b1cbbd-e29e-4a8a-b17c-8e13bb775175.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-099ad335-bbc5-4a12-a7eb-444e4f6feeda {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 4%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-099ad335-bbc5-4a12-a7eb-444e4f6feeda .shg-proportional-font-size,
#s-099ad335-bbc5-4a12-a7eb-444e4f6feeda .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-c7fe2ecb-e629-4159-b425-18af92189dce {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 4%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-c7fe2ecb-e629-4159-b425-18af92189dce .shg-proportional-font-size,
#s-c7fe2ecb-e629-4159-b425-18af92189dce .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-05e270f4-f904-4243-bce4-72f198d0dcda {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-05e270f4-f904-4243-bce4-72f198d0dcda {
  display: none;
}
#s-05e270f4-f904-4243-bce4-72f198d0dcda, #wrap-s-05e270f4-f904-4243-bce4-72f198d0dcda, #wrap-content-s-05e270f4-f904-4243-bce4-72f198d0dcda { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-05e270f4-f904-4243-bce4-72f198d0dcda {
  display: none;
}
#s-05e270f4-f904-4243-bce4-72f198d0dcda, #wrap-s-05e270f4-f904-4243-bce4-72f198d0dcda, #wrap-content-s-05e270f4-f904-4243-bce4-72f198d0dcda { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-05e270f4-f904-4243-bce4-72f198d0dcda {
  display: none;
}
#s-05e270f4-f904-4243-bce4-72f198d0dcda, #wrap-s-05e270f4-f904-4243-bce4-72f198d0dcda, #wrap-content-s-05e270f4-f904-4243-bce4-72f198d0dcda { display: none !important; }}@media (max-width: 767px){#s-05e270f4-f904-4243-bce4-72f198d0dcda {
  padding-left: 4%;
padding-right: 4%;
}
}
@media (min-width: 0px) {
[id="s-05e270f4-f904-4243-bce4-72f198d0dcda"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-05e270f4-f904-4243-bce4-72f198d0dcda"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-05e270f4-f904-4243-bce4-72f198d0dcda"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-05e270f4-f904-4243-bce4-72f198d0dcda"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-fc9f9656-a26d-415e-8f5b-9347e14a8275 {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}

#s-fc9f9656-a26d-415e-8f5b-9347e14a8275 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fc9f9656-a26d-415e-8f5b-9347e14a8275-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fc9f9656-a26d-415e-8f5b-9347e14a8275 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-fc9f9656-a26d-415e-8f5b-9347e14a8275 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-fc9f9656-a26d-415e-8f5b-9347e14a8275 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-fc9f9656-a26d-415e-8f5b-9347e14a8275 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-fc9f9656-a26d-415e-8f5b-9347e14a8275 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fc9f9656-a26d-415e-8f5b-9347e14a8275.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc9f9656-a26d-415e-8f5b-9347e14a8275.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc9f9656-a26d-415e-8f5b-9347e14a8275.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-fc9f9656-a26d-415e-8f5b-9347e14a8275 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fc9f9656-a26d-415e-8f5b-9347e14a8275-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fc9f9656-a26d-415e-8f5b-9347e14a8275 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-fc9f9656-a26d-415e-8f5b-9347e14a8275 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-fc9f9656-a26d-415e-8f5b-9347e14a8275 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-fc9f9656-a26d-415e-8f5b-9347e14a8275 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-fc9f9656-a26d-415e-8f5b-9347e14a8275 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fc9f9656-a26d-415e-8f5b-9347e14a8275.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc9f9656-a26d-415e-8f5b-9347e14a8275.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc9f9656-a26d-415e-8f5b-9347e14a8275.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-fc9f9656-a26d-415e-8f5b-9347e14a8275 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fc9f9656-a26d-415e-8f5b-9347e14a8275-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fc9f9656-a26d-415e-8f5b-9347e14a8275 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-fc9f9656-a26d-415e-8f5b-9347e14a8275 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-fc9f9656-a26d-415e-8f5b-9347e14a8275 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-fc9f9656-a26d-415e-8f5b-9347e14a8275 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-fc9f9656-a26d-415e-8f5b-9347e14a8275 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fc9f9656-a26d-415e-8f5b-9347e14a8275.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc9f9656-a26d-415e-8f5b-9347e14a8275.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc9f9656-a26d-415e-8f5b-9347e14a8275.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-fc9f9656-a26d-415e-8f5b-9347e14a8275 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fc9f9656-a26d-415e-8f5b-9347e14a8275-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fc9f9656-a26d-415e-8f5b-9347e14a8275 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-fc9f9656-a26d-415e-8f5b-9347e14a8275 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-fc9f9656-a26d-415e-8f5b-9347e14a8275 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-fc9f9656-a26d-415e-8f5b-9347e14a8275 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-fc9f9656-a26d-415e-8f5b-9347e14a8275 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fc9f9656-a26d-415e-8f5b-9347e14a8275.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc9f9656-a26d-415e-8f5b-9347e14a8275.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc9f9656-a26d-415e-8f5b-9347e14a8275.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-fc9f9656-a26d-415e-8f5b-9347e14a8275 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fc9f9656-a26d-415e-8f5b-9347e14a8275-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fc9f9656-a26d-415e-8f5b-9347e14a8275 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-fc9f9656-a26d-415e-8f5b-9347e14a8275 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-fc9f9656-a26d-415e-8f5b-9347e14a8275 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-fc9f9656-a26d-415e-8f5b-9347e14a8275 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-fc9f9656-a26d-415e-8f5b-9347e14a8275 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fc9f9656-a26d-415e-8f5b-9347e14a8275.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc9f9656-a26d-415e-8f5b-9347e14a8275.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc9f9656-a26d-415e-8f5b-9347e14a8275.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-94b565b2-e9ba-4d95-90fa-21e47d4306f1 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 4%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-94b565b2-e9ba-4d95-90fa-21e47d4306f1 .shg-proportional-font-size,
#s-94b565b2-e9ba-4d95-90fa-21e47d4306f1 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-419f77d0-450f-432f-a1d5-88313e549905 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 4%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-419f77d0-450f-432f-a1d5-88313e549905 .shg-proportional-font-size,
#s-419f77d0-450f-432f-a1d5-88313e549905 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-540f9eee-5434-45e3-a207-869fc8323ca8 {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}

#s-540f9eee-5434-45e3-a207-869fc8323ca8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-540f9eee-5434-45e3-a207-869fc8323ca8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-540f9eee-5434-45e3-a207-869fc8323ca8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-540f9eee-5434-45e3-a207-869fc8323ca8 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-540f9eee-5434-45e3-a207-869fc8323ca8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-540f9eee-5434-45e3-a207-869fc8323ca8 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-540f9eee-5434-45e3-a207-869fc8323ca8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-540f9eee-5434-45e3-a207-869fc8323ca8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-540f9eee-5434-45e3-a207-869fc8323ca8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-540f9eee-5434-45e3-a207-869fc8323ca8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-540f9eee-5434-45e3-a207-869fc8323ca8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-540f9eee-5434-45e3-a207-869fc8323ca8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-540f9eee-5434-45e3-a207-869fc8323ca8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-540f9eee-5434-45e3-a207-869fc8323ca8 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-540f9eee-5434-45e3-a207-869fc8323ca8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-540f9eee-5434-45e3-a207-869fc8323ca8 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-540f9eee-5434-45e3-a207-869fc8323ca8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-540f9eee-5434-45e3-a207-869fc8323ca8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-540f9eee-5434-45e3-a207-869fc8323ca8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-540f9eee-5434-45e3-a207-869fc8323ca8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-540f9eee-5434-45e3-a207-869fc8323ca8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-540f9eee-5434-45e3-a207-869fc8323ca8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-540f9eee-5434-45e3-a207-869fc8323ca8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-540f9eee-5434-45e3-a207-869fc8323ca8 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-540f9eee-5434-45e3-a207-869fc8323ca8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-540f9eee-5434-45e3-a207-869fc8323ca8 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-540f9eee-5434-45e3-a207-869fc8323ca8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-540f9eee-5434-45e3-a207-869fc8323ca8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-540f9eee-5434-45e3-a207-869fc8323ca8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-540f9eee-5434-45e3-a207-869fc8323ca8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-540f9eee-5434-45e3-a207-869fc8323ca8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-540f9eee-5434-45e3-a207-869fc8323ca8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-540f9eee-5434-45e3-a207-869fc8323ca8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-540f9eee-5434-45e3-a207-869fc8323ca8 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-540f9eee-5434-45e3-a207-869fc8323ca8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-540f9eee-5434-45e3-a207-869fc8323ca8 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-540f9eee-5434-45e3-a207-869fc8323ca8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-540f9eee-5434-45e3-a207-869fc8323ca8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-540f9eee-5434-45e3-a207-869fc8323ca8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-540f9eee-5434-45e3-a207-869fc8323ca8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-540f9eee-5434-45e3-a207-869fc8323ca8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-540f9eee-5434-45e3-a207-869fc8323ca8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-540f9eee-5434-45e3-a207-869fc8323ca8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-540f9eee-5434-45e3-a207-869fc8323ca8 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-540f9eee-5434-45e3-a207-869fc8323ca8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-540f9eee-5434-45e3-a207-869fc8323ca8 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-540f9eee-5434-45e3-a207-869fc8323ca8 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-540f9eee-5434-45e3-a207-869fc8323ca8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-540f9eee-5434-45e3-a207-869fc8323ca8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-540f9eee-5434-45e3-a207-869fc8323ca8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-b0877522-a782-4b94-939f-0c6a0d568c16 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 4%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-b0877522-a782-4b94-939f-0c6a0d568c16 .shg-proportional-font-size,
#s-b0877522-a782-4b94-939f-0c6a0d568c16 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-c476e8c8-8e95-4a4b-aeef-be281fc440fb {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 4%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-c476e8c8-8e95-4a4b-aeef-be281fc440fb .shg-proportional-font-size,
#s-c476e8c8-8e95-4a4b-aeef-be281fc440fb .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-3a4ed39f-bc83-42fa-98b4-75ad415e9f72 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-3a4ed39f-bc83-42fa-98b4-75ad415e9f72 {
  display: none;
}
#s-3a4ed39f-bc83-42fa-98b4-75ad415e9f72, #wrap-s-3a4ed39f-bc83-42fa-98b4-75ad415e9f72, #wrap-content-s-3a4ed39f-bc83-42fa-98b4-75ad415e9f72 { display: none !important; }}







#s-3a4ed39f-bc83-42fa-98b4-75ad415e9f72 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3a4ed39f-bc83-42fa-98b4-75ad415e9f72.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 {
  display: none;
}
#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6, #wrap-s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6, #wrap-content-s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 { display: none !important; }}
#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e2c4c7f-e282-45e0-a888-395b7e6f47b6.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-f2829cba-85a7-4933-80b6-c2cfbb070e9e {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 4%;
padding-bottom: 0px;
padding-right: 5%;
}
@media (min-width: 768px) and (max-width: 991px){#s-f2829cba-85a7-4933-80b6-c2cfbb070e9e {
  display: none;
}
#s-f2829cba-85a7-4933-80b6-c2cfbb070e9e, #wrap-s-f2829cba-85a7-4933-80b6-c2cfbb070e9e, #wrap-content-s-f2829cba-85a7-4933-80b6-c2cfbb070e9e { display: none !important; }}@media (max-width: 767px){#s-f2829cba-85a7-4933-80b6-c2cfbb070e9e {
  
}
}
#s-f2829cba-85a7-4933-80b6-c2cfbb070e9e .shg-proportional-font-size,
#s-f2829cba-85a7-4933-80b6-c2cfbb070e9e .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-da9407ac-fec8-4d24-a486-2843061543fc {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 4%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-da9407ac-fec8-4d24-a486-2843061543fc .shg-proportional-font-size,
#s-da9407ac-fec8-4d24-a486-2843061543fc .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-849c7e45-d3a7-442d-bc96-e9f3f264c4a6 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-849c7e45-d3a7-442d-bc96-e9f3f264c4a6 {
  display: none;
}
#s-849c7e45-d3a7-442d-bc96-e9f3f264c4a6, #wrap-s-849c7e45-d3a7-442d-bc96-e9f3f264c4a6, #wrap-content-s-849c7e45-d3a7-442d-bc96-e9f3f264c4a6 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-849c7e45-d3a7-442d-bc96-e9f3f264c4a6 {
  display: none;
}
#s-849c7e45-d3a7-442d-bc96-e9f3f264c4a6, #wrap-s-849c7e45-d3a7-442d-bc96-e9f3f264c4a6, #wrap-content-s-849c7e45-d3a7-442d-bc96-e9f3f264c4a6 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-849c7e45-d3a7-442d-bc96-e9f3f264c4a6 {
  padding-left: 3%;
padding-bottom: 25px;
padding-right: 3%;
}
}@media (max-width: 767px){#s-849c7e45-d3a7-442d-bc96-e9f3f264c4a6 {
  padding-left: 4%;
padding-right: 4%;
}
}
@media (min-width: 0px) {
[id="s-849c7e45-d3a7-442d-bc96-e9f3f264c4a6"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-849c7e45-d3a7-442d-bc96-e9f3f264c4a6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-849c7e45-d3a7-442d-bc96-e9f3f264c4a6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-849c7e45-d3a7-442d-bc96-e9f3f264c4a6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}

#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4f45462d-7dc8-4093-9cfa-c460a2f675d2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4f45462d-7dc8-4093-9cfa-c460a2f675d2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4f45462d-7dc8-4093-9cfa-c460a2f675d2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4f45462d-7dc8-4093-9cfa-c460a2f675d2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4f45462d-7dc8-4093-9cfa-c460a2f675d2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4f45462d-7dc8-4093-9cfa-c460a2f675d2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4f45462d-7dc8-4093-9cfa-c460a2f675d2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4f45462d-7dc8-4093-9cfa-c460a2f675d2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-4f45462d-7dc8-4093-9cfa-c460a2f675d2 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-4f45462d-7dc8-4093-9cfa-c460a2f675d2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4f45462d-7dc8-4093-9cfa-c460a2f675d2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f45462d-7dc8-4093-9cfa-c460a2f675d2.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-a39ccdbb-c231-49aa-8066-e63a3d72052e {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 4%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-a39ccdbb-c231-49aa-8066-e63a3d72052e .shg-proportional-font-size,
#s-a39ccdbb-c231-49aa-8066-e63a3d72052e .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-33dfe9e2-3566-4198-95bf-ad3ba87d7d22 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 4%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-33dfe9e2-3566-4198-95bf-ad3ba87d7d22 .shg-proportional-font-size,
#s-33dfe9e2-3566-4198-95bf-ad3ba87d7d22 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}

#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2cfd0de3-445f-4eb2-b76e-ed47e8f84b2d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-783178a9-2f02-43e9-a800-0eb79eca3950 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 4%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-783178a9-2f02-43e9-a800-0eb79eca3950 .shg-proportional-font-size,
#s-783178a9-2f02-43e9-a800-0eb79eca3950 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-c89dc96f-c237-4e66-9c4d-277a984ea60b {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 4%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-c89dc96f-c237-4e66-9c4d-277a984ea60b .shg-proportional-font-size,
#s-c89dc96f-c237-4e66-9c4d-277a984ea60b .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}

#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6118af45-9f80-4d0c-aa66-d4c3cb462f4e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-d67638a8-7fbc-410e-b786-f9f779be9e92 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 4%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-d67638a8-7fbc-410e-b786-f9f779be9e92 .shg-proportional-font-size,
#s-d67638a8-7fbc-410e-b786-f9f779be9e92 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-47f20af0-4e18-4610-876b-c5fd6177fcab {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 4%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-47f20af0-4e18-4610-876b-c5fd6177fcab .shg-proportional-font-size,
#s-47f20af0-4e18-4610-876b-c5fd6177fcab .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-8eb98a99-8754-43cb-ad1f-3da622688381 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-8eb98a99-8754-43cb-ad1f-3da622688381 {
  display: none;
}
#s-8eb98a99-8754-43cb-ad1f-3da622688381, #wrap-s-8eb98a99-8754-43cb-ad1f-3da622688381, #wrap-content-s-8eb98a99-8754-43cb-ad1f-3da622688381 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8eb98a99-8754-43cb-ad1f-3da622688381 {
  display: none;
}
#s-8eb98a99-8754-43cb-ad1f-3da622688381, #wrap-s-8eb98a99-8754-43cb-ad1f-3da622688381, #wrap-content-s-8eb98a99-8754-43cb-ad1f-3da622688381 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8eb98a99-8754-43cb-ad1f-3da622688381 {
  display: none;
}
#s-8eb98a99-8754-43cb-ad1f-3da622688381, #wrap-s-8eb98a99-8754-43cb-ad1f-3da622688381, #wrap-content-s-8eb98a99-8754-43cb-ad1f-3da622688381 { display: none !important; }}@media (max-width: 767px){#s-8eb98a99-8754-43cb-ad1f-3da622688381 {
  padding-left: 4%;
padding-right: 4%;
}
}
@media (min-width: 0px) {
[id="s-8eb98a99-8754-43cb-ad1f-3da622688381"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-8eb98a99-8754-43cb-ad1f-3da622688381"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8eb98a99-8754-43cb-ad1f-3da622688381"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8eb98a99-8754-43cb-ad1f-3da622688381"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-32bc898c-1eb5-44f1-9307-3632376585bc {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}

#s-32bc898c-1eb5-44f1-9307-3632376585bc {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-32bc898c-1eb5-44f1-9307-3632376585bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-32bc898c-1eb5-44f1-9307-3632376585bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-32bc898c-1eb5-44f1-9307-3632376585bc .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-32bc898c-1eb5-44f1-9307-3632376585bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-32bc898c-1eb5-44f1-9307-3632376585bc img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-32bc898c-1eb5-44f1-9307-3632376585bc .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-32bc898c-1eb5-44f1-9307-3632376585bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-32bc898c-1eb5-44f1-9307-3632376585bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-32bc898c-1eb5-44f1-9307-3632376585bc.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-32bc898c-1eb5-44f1-9307-3632376585bc {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-32bc898c-1eb5-44f1-9307-3632376585bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-32bc898c-1eb5-44f1-9307-3632376585bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-32bc898c-1eb5-44f1-9307-3632376585bc .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-32bc898c-1eb5-44f1-9307-3632376585bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-32bc898c-1eb5-44f1-9307-3632376585bc img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-32bc898c-1eb5-44f1-9307-3632376585bc .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-32bc898c-1eb5-44f1-9307-3632376585bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-32bc898c-1eb5-44f1-9307-3632376585bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-32bc898c-1eb5-44f1-9307-3632376585bc.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-32bc898c-1eb5-44f1-9307-3632376585bc {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-32bc898c-1eb5-44f1-9307-3632376585bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-32bc898c-1eb5-44f1-9307-3632376585bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-32bc898c-1eb5-44f1-9307-3632376585bc .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-32bc898c-1eb5-44f1-9307-3632376585bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-32bc898c-1eb5-44f1-9307-3632376585bc img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-32bc898c-1eb5-44f1-9307-3632376585bc .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-32bc898c-1eb5-44f1-9307-3632376585bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-32bc898c-1eb5-44f1-9307-3632376585bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-32bc898c-1eb5-44f1-9307-3632376585bc.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-32bc898c-1eb5-44f1-9307-3632376585bc {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-32bc898c-1eb5-44f1-9307-3632376585bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-32bc898c-1eb5-44f1-9307-3632376585bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-32bc898c-1eb5-44f1-9307-3632376585bc .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-32bc898c-1eb5-44f1-9307-3632376585bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-32bc898c-1eb5-44f1-9307-3632376585bc img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-32bc898c-1eb5-44f1-9307-3632376585bc .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-32bc898c-1eb5-44f1-9307-3632376585bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-32bc898c-1eb5-44f1-9307-3632376585bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-32bc898c-1eb5-44f1-9307-3632376585bc.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-32bc898c-1eb5-44f1-9307-3632376585bc {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-32bc898c-1eb5-44f1-9307-3632376585bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-32bc898c-1eb5-44f1-9307-3632376585bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-32bc898c-1eb5-44f1-9307-3632376585bc .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-32bc898c-1eb5-44f1-9307-3632376585bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-32bc898c-1eb5-44f1-9307-3632376585bc img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-32bc898c-1eb5-44f1-9307-3632376585bc .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-32bc898c-1eb5-44f1-9307-3632376585bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-32bc898c-1eb5-44f1-9307-3632376585bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-32bc898c-1eb5-44f1-9307-3632376585bc.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-48ec570e-c1cb-4fac-93f7-d8b41172857c {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 4%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-48ec570e-c1cb-4fac-93f7-d8b41172857c .shg-proportional-font-size,
#s-48ec570e-c1cb-4fac-93f7-d8b41172857c .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-7c0d4a7f-e863-49cf-b5fe-13c37e11c06e {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 4%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-7c0d4a7f-e863-49cf-b5fe-13c37e11c06e .shg-proportional-font-size,
#s-7c0d4a7f-e863-49cf-b5fe-13c37e11c06e .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-ec1e62cc-c852-42f5-95dd-09b0480da44f {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}

#s-ec1e62cc-c852-42f5-95dd-09b0480da44f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ec1e62cc-c852-42f5-95dd-09b0480da44f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ec1e62cc-c852-42f5-95dd-09b0480da44f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ec1e62cc-c852-42f5-95dd-09b0480da44f .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-ec1e62cc-c852-42f5-95dd-09b0480da44f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ec1e62cc-c852-42f5-95dd-09b0480da44f img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-ec1e62cc-c852-42f5-95dd-09b0480da44f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ec1e62cc-c852-42f5-95dd-09b0480da44f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec1e62cc-c852-42f5-95dd-09b0480da44f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec1e62cc-c852-42f5-95dd-09b0480da44f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-ec1e62cc-c852-42f5-95dd-09b0480da44f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ec1e62cc-c852-42f5-95dd-09b0480da44f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ec1e62cc-c852-42f5-95dd-09b0480da44f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ec1e62cc-c852-42f5-95dd-09b0480da44f .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-ec1e62cc-c852-42f5-95dd-09b0480da44f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ec1e62cc-c852-42f5-95dd-09b0480da44f img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-ec1e62cc-c852-42f5-95dd-09b0480da44f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ec1e62cc-c852-42f5-95dd-09b0480da44f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec1e62cc-c852-42f5-95dd-09b0480da44f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec1e62cc-c852-42f5-95dd-09b0480da44f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-ec1e62cc-c852-42f5-95dd-09b0480da44f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ec1e62cc-c852-42f5-95dd-09b0480da44f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ec1e62cc-c852-42f5-95dd-09b0480da44f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ec1e62cc-c852-42f5-95dd-09b0480da44f .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-ec1e62cc-c852-42f5-95dd-09b0480da44f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ec1e62cc-c852-42f5-95dd-09b0480da44f img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-ec1e62cc-c852-42f5-95dd-09b0480da44f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ec1e62cc-c852-42f5-95dd-09b0480da44f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec1e62cc-c852-42f5-95dd-09b0480da44f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec1e62cc-c852-42f5-95dd-09b0480da44f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-ec1e62cc-c852-42f5-95dd-09b0480da44f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ec1e62cc-c852-42f5-95dd-09b0480da44f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ec1e62cc-c852-42f5-95dd-09b0480da44f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ec1e62cc-c852-42f5-95dd-09b0480da44f .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-ec1e62cc-c852-42f5-95dd-09b0480da44f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ec1e62cc-c852-42f5-95dd-09b0480da44f img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-ec1e62cc-c852-42f5-95dd-09b0480da44f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ec1e62cc-c852-42f5-95dd-09b0480da44f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec1e62cc-c852-42f5-95dd-09b0480da44f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec1e62cc-c852-42f5-95dd-09b0480da44f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-ec1e62cc-c852-42f5-95dd-09b0480da44f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ec1e62cc-c852-42f5-95dd-09b0480da44f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ec1e62cc-c852-42f5-95dd-09b0480da44f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ec1e62cc-c852-42f5-95dd-09b0480da44f .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-ec1e62cc-c852-42f5-95dd-09b0480da44f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-ec1e62cc-c852-42f5-95dd-09b0480da44f img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-ec1e62cc-c852-42f5-95dd-09b0480da44f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ec1e62cc-c852-42f5-95dd-09b0480da44f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec1e62cc-c852-42f5-95dd-09b0480da44f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec1e62cc-c852-42f5-95dd-09b0480da44f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-d4721a0a-97cc-40b4-bf83-dd6072d5a93d {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 4%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-d4721a0a-97cc-40b4-bf83-dd6072d5a93d .shg-proportional-font-size,
#s-d4721a0a-97cc-40b4-bf83-dd6072d5a93d .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-6cbacea6-9511-4c16-93c6-3b36af482aac {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 4%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-6cbacea6-9511-4c16-93c6-3b36af482aac .shg-proportional-font-size,
#s-6cbacea6-9511-4c16-93c6-3b36af482aac .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-b00ffd87-23ef-4e19-8ec4-e23777e1d932 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(199, 209, 219, 1);
}
@media (min-width: 1200px){#s-b00ffd87-23ef-4e19-8ec4-e23777e1d932 {
  display: none;
}
#s-b00ffd87-23ef-4e19-8ec4-e23777e1d932, #wrap-s-b00ffd87-23ef-4e19-8ec4-e23777e1d932, #wrap-content-s-b00ffd87-23ef-4e19-8ec4-e23777e1d932 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b00ffd87-23ef-4e19-8ec4-e23777e1d932 {
  display: none;
}
#s-b00ffd87-23ef-4e19-8ec4-e23777e1d932, #wrap-s-b00ffd87-23ef-4e19-8ec4-e23777e1d932, #wrap-content-s-b00ffd87-23ef-4e19-8ec4-e23777e1d932 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b00ffd87-23ef-4e19-8ec4-e23777e1d932 {
  display: none;
}
#s-b00ffd87-23ef-4e19-8ec4-e23777e1d932, #wrap-s-b00ffd87-23ef-4e19-8ec4-e23777e1d932, #wrap-content-s-b00ffd87-23ef-4e19-8ec4-e23777e1d932 { display: none !important; }}@media (max-width: 767px){#s-b00ffd87-23ef-4e19-8ec4-e23777e1d932 {
  
}
}







#s-b00ffd87-23ef-4e19-8ec4-e23777e1d932 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b00ffd87-23ef-4e19-8ec4-e23777e1d932.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1176f1df-fcca-4ca3-b7a2-bd7bc52cae22 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-1176f1df-fcca-4ca3-b7a2-bd7bc52cae22 {
  display: none;
}
#s-1176f1df-fcca-4ca3-b7a2-bd7bc52cae22, #wrap-s-1176f1df-fcca-4ca3-b7a2-bd7bc52cae22, #wrap-content-s-1176f1df-fcca-4ca3-b7a2-bd7bc52cae22 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1176f1df-fcca-4ca3-b7a2-bd7bc52cae22 {
  display: none;
}
#s-1176f1df-fcca-4ca3-b7a2-bd7bc52cae22, #wrap-s-1176f1df-fcca-4ca3-b7a2-bd7bc52cae22, #wrap-content-s-1176f1df-fcca-4ca3-b7a2-bd7bc52cae22 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1176f1df-fcca-4ca3-b7a2-bd7bc52cae22 {
  padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
}
}@media (max-width: 767px){#s-1176f1df-fcca-4ca3-b7a2-bd7bc52cae22 {
  padding-left: 4%;
padding-right: 4%;
display: none;
}
#s-1176f1df-fcca-4ca3-b7a2-bd7bc52cae22, #wrap-s-1176f1df-fcca-4ca3-b7a2-bd7bc52cae22, #wrap-content-s-1176f1df-fcca-4ca3-b7a2-bd7bc52cae22 { display: none !important; }}
@media (min-width: 0px) {
[id="s-1176f1df-fcca-4ca3-b7a2-bd7bc52cae22"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-1176f1df-fcca-4ca3-b7a2-bd7bc52cae22"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1176f1df-fcca-4ca3-b7a2-bd7bc52cae22"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1176f1df-fcca-4ca3-b7a2-bd7bc52cae22"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}

#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d5f69c6-45a9-4a00-ba4b-ebc13cdcc2de.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-b8c29795-3398-4adb-b122-b932ea068f53 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 4%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-b8c29795-3398-4adb-b122-b932ea068f53 .shg-proportional-font-size,
#s-b8c29795-3398-4adb-b122-b932ea068f53 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-800a3bbe-69ed-4cc2-a302-243a1a9e5d22 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 4%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-800a3bbe-69ed-4cc2-a302-243a1a9e5d22 .shg-proportional-font-size,
#s-800a3bbe-69ed-4cc2-a302-243a1a9e5d22 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-af4038e9-39ba-4653-bb9f-0b379f78da96 {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}

#s-af4038e9-39ba-4653-bb9f-0b379f78da96 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-af4038e9-39ba-4653-bb9f-0b379f78da96-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-af4038e9-39ba-4653-bb9f-0b379f78da96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-af4038e9-39ba-4653-bb9f-0b379f78da96 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-af4038e9-39ba-4653-bb9f-0b379f78da96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-af4038e9-39ba-4653-bb9f-0b379f78da96 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-af4038e9-39ba-4653-bb9f-0b379f78da96 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-af4038e9-39ba-4653-bb9f-0b379f78da96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af4038e9-39ba-4653-bb9f-0b379f78da96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af4038e9-39ba-4653-bb9f-0b379f78da96.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-af4038e9-39ba-4653-bb9f-0b379f78da96 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-af4038e9-39ba-4653-bb9f-0b379f78da96-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-af4038e9-39ba-4653-bb9f-0b379f78da96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-af4038e9-39ba-4653-bb9f-0b379f78da96 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-af4038e9-39ba-4653-bb9f-0b379f78da96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-af4038e9-39ba-4653-bb9f-0b379f78da96 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-af4038e9-39ba-4653-bb9f-0b379f78da96 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-af4038e9-39ba-4653-bb9f-0b379f78da96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af4038e9-39ba-4653-bb9f-0b379f78da96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af4038e9-39ba-4653-bb9f-0b379f78da96.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-af4038e9-39ba-4653-bb9f-0b379f78da96 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-af4038e9-39ba-4653-bb9f-0b379f78da96-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-af4038e9-39ba-4653-bb9f-0b379f78da96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-af4038e9-39ba-4653-bb9f-0b379f78da96 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-af4038e9-39ba-4653-bb9f-0b379f78da96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-af4038e9-39ba-4653-bb9f-0b379f78da96 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-af4038e9-39ba-4653-bb9f-0b379f78da96 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-af4038e9-39ba-4653-bb9f-0b379f78da96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af4038e9-39ba-4653-bb9f-0b379f78da96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af4038e9-39ba-4653-bb9f-0b379f78da96.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-af4038e9-39ba-4653-bb9f-0b379f78da96 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-af4038e9-39ba-4653-bb9f-0b379f78da96-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-af4038e9-39ba-4653-bb9f-0b379f78da96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-af4038e9-39ba-4653-bb9f-0b379f78da96 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-af4038e9-39ba-4653-bb9f-0b379f78da96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-af4038e9-39ba-4653-bb9f-0b379f78da96 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-af4038e9-39ba-4653-bb9f-0b379f78da96 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-af4038e9-39ba-4653-bb9f-0b379f78da96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af4038e9-39ba-4653-bb9f-0b379f78da96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af4038e9-39ba-4653-bb9f-0b379f78da96.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-af4038e9-39ba-4653-bb9f-0b379f78da96 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-af4038e9-39ba-4653-bb9f-0b379f78da96-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-af4038e9-39ba-4653-bb9f-0b379f78da96 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-af4038e9-39ba-4653-bb9f-0b379f78da96 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-af4038e9-39ba-4653-bb9f-0b379f78da96 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-af4038e9-39ba-4653-bb9f-0b379f78da96 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-af4038e9-39ba-4653-bb9f-0b379f78da96 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-af4038e9-39ba-4653-bb9f-0b379f78da96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af4038e9-39ba-4653-bb9f-0b379f78da96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af4038e9-39ba-4653-bb9f-0b379f78da96.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-ac01109b-c398-43d2-b5da-93d1ffdf9cb9 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 4%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-ac01109b-c398-43d2-b5da-93d1ffdf9cb9 .shg-proportional-font-size,
#s-ac01109b-c398-43d2-b5da-93d1ffdf9cb9 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-f1e525af-6ced-44ca-b072-bc59b0a17dc3 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 4%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-f1e525af-6ced-44ca-b072-bc59b0a17dc3 .shg-proportional-font-size,
#s-f1e525af-6ced-44ca-b072-bc59b0a17dc3 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-7251a301-be3f-490a-8c49-6cc9e913b15e {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-7251a301-be3f-490a-8c49-6cc9e913b15e {
  display: none;
}
#s-7251a301-be3f-490a-8c49-6cc9e913b15e, #wrap-s-7251a301-be3f-490a-8c49-6cc9e913b15e, #wrap-content-s-7251a301-be3f-490a-8c49-6cc9e913b15e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7251a301-be3f-490a-8c49-6cc9e913b15e {
  display: none;
}
#s-7251a301-be3f-490a-8c49-6cc9e913b15e, #wrap-s-7251a301-be3f-490a-8c49-6cc9e913b15e, #wrap-content-s-7251a301-be3f-490a-8c49-6cc9e913b15e { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7251a301-be3f-490a-8c49-6cc9e913b15e {
  display: none;
}
#s-7251a301-be3f-490a-8c49-6cc9e913b15e, #wrap-s-7251a301-be3f-490a-8c49-6cc9e913b15e, #wrap-content-s-7251a301-be3f-490a-8c49-6cc9e913b15e { display: none !important; }}@media (max-width: 767px){#s-7251a301-be3f-490a-8c49-6cc9e913b15e {
  padding-left: 4%;
padding-bottom: 20px;
padding-right: 4%;
}
}
@media (min-width: 0px) {
[id="s-7251a301-be3f-490a-8c49-6cc9e913b15e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-7251a301-be3f-490a-8c49-6cc9e913b15e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7251a301-be3f-490a-8c49-6cc9e913b15e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7251a301-be3f-490a-8c49-6cc9e913b15e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-95427152-cc81-4007-a7b7-99413fa7653e {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}

#s-95427152-cc81-4007-a7b7-99413fa7653e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-95427152-cc81-4007-a7b7-99413fa7653e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-95427152-cc81-4007-a7b7-99413fa7653e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-95427152-cc81-4007-a7b7-99413fa7653e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-95427152-cc81-4007-a7b7-99413fa7653e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-95427152-cc81-4007-a7b7-99413fa7653e img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-95427152-cc81-4007-a7b7-99413fa7653e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-95427152-cc81-4007-a7b7-99413fa7653e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-95427152-cc81-4007-a7b7-99413fa7653e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-95427152-cc81-4007-a7b7-99413fa7653e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-95427152-cc81-4007-a7b7-99413fa7653e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-95427152-cc81-4007-a7b7-99413fa7653e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-95427152-cc81-4007-a7b7-99413fa7653e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-95427152-cc81-4007-a7b7-99413fa7653e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-95427152-cc81-4007-a7b7-99413fa7653e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-95427152-cc81-4007-a7b7-99413fa7653e img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-95427152-cc81-4007-a7b7-99413fa7653e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-95427152-cc81-4007-a7b7-99413fa7653e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-95427152-cc81-4007-a7b7-99413fa7653e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-95427152-cc81-4007-a7b7-99413fa7653e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-95427152-cc81-4007-a7b7-99413fa7653e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-95427152-cc81-4007-a7b7-99413fa7653e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-95427152-cc81-4007-a7b7-99413fa7653e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-95427152-cc81-4007-a7b7-99413fa7653e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-95427152-cc81-4007-a7b7-99413fa7653e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-95427152-cc81-4007-a7b7-99413fa7653e img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-95427152-cc81-4007-a7b7-99413fa7653e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-95427152-cc81-4007-a7b7-99413fa7653e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-95427152-cc81-4007-a7b7-99413fa7653e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-95427152-cc81-4007-a7b7-99413fa7653e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-95427152-cc81-4007-a7b7-99413fa7653e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-95427152-cc81-4007-a7b7-99413fa7653e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-95427152-cc81-4007-a7b7-99413fa7653e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-95427152-cc81-4007-a7b7-99413fa7653e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-95427152-cc81-4007-a7b7-99413fa7653e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-95427152-cc81-4007-a7b7-99413fa7653e img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-95427152-cc81-4007-a7b7-99413fa7653e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-95427152-cc81-4007-a7b7-99413fa7653e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-95427152-cc81-4007-a7b7-99413fa7653e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-95427152-cc81-4007-a7b7-99413fa7653e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-95427152-cc81-4007-a7b7-99413fa7653e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-95427152-cc81-4007-a7b7-99413fa7653e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-95427152-cc81-4007-a7b7-99413fa7653e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-95427152-cc81-4007-a7b7-99413fa7653e .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-95427152-cc81-4007-a7b7-99413fa7653e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-95427152-cc81-4007-a7b7-99413fa7653e img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-95427152-cc81-4007-a7b7-99413fa7653e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-95427152-cc81-4007-a7b7-99413fa7653e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-95427152-cc81-4007-a7b7-99413fa7653e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-95427152-cc81-4007-a7b7-99413fa7653e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-2cf274f2-f13b-46f2-ba0f-b63110bb5945 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 4%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-2cf274f2-f13b-46f2-ba0f-b63110bb5945 .shg-proportional-font-size,
#s-2cf274f2-f13b-46f2-ba0f-b63110bb5945 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-55adbbfd-aadf-4a0c-a77a-e88398421569 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 4%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-55adbbfd-aadf-4a0c-a77a-e88398421569 .shg-proportional-font-size,
#s-55adbbfd-aadf-4a0c-a77a-e88398421569 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-6d1d3183-28de-4c12-9a89-728d63113549 {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}

#s-6d1d3183-28de-4c12-9a89-728d63113549 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6d1d3183-28de-4c12-9a89-728d63113549-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-6d1d3183-28de-4c12-9a89-728d63113549 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6d1d3183-28de-4c12-9a89-728d63113549 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-6d1d3183-28de-4c12-9a89-728d63113549 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6d1d3183-28de-4c12-9a89-728d63113549 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-6d1d3183-28de-4c12-9a89-728d63113549 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6d1d3183-28de-4c12-9a89-728d63113549.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d1d3183-28de-4c12-9a89-728d63113549.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d1d3183-28de-4c12-9a89-728d63113549.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-6d1d3183-28de-4c12-9a89-728d63113549 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6d1d3183-28de-4c12-9a89-728d63113549-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-6d1d3183-28de-4c12-9a89-728d63113549 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6d1d3183-28de-4c12-9a89-728d63113549 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-6d1d3183-28de-4c12-9a89-728d63113549 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6d1d3183-28de-4c12-9a89-728d63113549 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-6d1d3183-28de-4c12-9a89-728d63113549 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6d1d3183-28de-4c12-9a89-728d63113549.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d1d3183-28de-4c12-9a89-728d63113549.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d1d3183-28de-4c12-9a89-728d63113549.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-6d1d3183-28de-4c12-9a89-728d63113549 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6d1d3183-28de-4c12-9a89-728d63113549-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-6d1d3183-28de-4c12-9a89-728d63113549 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6d1d3183-28de-4c12-9a89-728d63113549 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-6d1d3183-28de-4c12-9a89-728d63113549 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6d1d3183-28de-4c12-9a89-728d63113549 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-6d1d3183-28de-4c12-9a89-728d63113549 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6d1d3183-28de-4c12-9a89-728d63113549.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d1d3183-28de-4c12-9a89-728d63113549.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d1d3183-28de-4c12-9a89-728d63113549.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-6d1d3183-28de-4c12-9a89-728d63113549 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6d1d3183-28de-4c12-9a89-728d63113549-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-6d1d3183-28de-4c12-9a89-728d63113549 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6d1d3183-28de-4c12-9a89-728d63113549 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-6d1d3183-28de-4c12-9a89-728d63113549 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6d1d3183-28de-4c12-9a89-728d63113549 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-6d1d3183-28de-4c12-9a89-728d63113549 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6d1d3183-28de-4c12-9a89-728d63113549.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d1d3183-28de-4c12-9a89-728d63113549.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d1d3183-28de-4c12-9a89-728d63113549.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-6d1d3183-28de-4c12-9a89-728d63113549 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6d1d3183-28de-4c12-9a89-728d63113549-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-6d1d3183-28de-4c12-9a89-728d63113549 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6d1d3183-28de-4c12-9a89-728d63113549 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-6d1d3183-28de-4c12-9a89-728d63113549 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6d1d3183-28de-4c12-9a89-728d63113549 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-6d1d3183-28de-4c12-9a89-728d63113549 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6d1d3183-28de-4c12-9a89-728d63113549.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d1d3183-28de-4c12-9a89-728d63113549.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d1d3183-28de-4c12-9a89-728d63113549.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-69296049-7d34-43cc-ba3d-bef09f1cacad {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 4%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-69296049-7d34-43cc-ba3d-bef09f1cacad .shg-proportional-font-size,
#s-69296049-7d34-43cc-ba3d-bef09f1cacad .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-6f976da7-4dee-4449-8234-125db0fb011a {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 4%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-6f976da7-4dee-4449-8234-125db0fb011a .shg-proportional-font-size,
#s-6f976da7-4dee-4449-8234-125db0fb011a .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-7a2718ef-3c7b-4340-9003-99efb48dd084 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-7a2718ef-3c7b-4340-9003-99efb48dd084 {
  display: none;
}
#s-7a2718ef-3c7b-4340-9003-99efb48dd084, #wrap-s-7a2718ef-3c7b-4340-9003-99efb48dd084, #wrap-content-s-7a2718ef-3c7b-4340-9003-99efb48dd084 { display: none !important; }}







#s-7a2718ef-3c7b-4340-9003-99efb48dd084 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7a2718ef-3c7b-4340-9003-99efb48dd084.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1540ad85-7fb6-4b16-9734-4541a26d1f36 {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-1540ad85-7fb6-4b16-9734-4541a26d1f36 {
  display: none;
}
#s-1540ad85-7fb6-4b16-9734-4541a26d1f36, #wrap-s-1540ad85-7fb6-4b16-9734-4541a26d1f36, #wrap-content-s-1540ad85-7fb6-4b16-9734-4541a26d1f36 { display: none !important; }}
#s-1540ad85-7fb6-4b16-9734-4541a26d1f36 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1540ad85-7fb6-4b16-9734-4541a26d1f36-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-1540ad85-7fb6-4b16-9734-4541a26d1f36 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1540ad85-7fb6-4b16-9734-4541a26d1f36 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-1540ad85-7fb6-4b16-9734-4541a26d1f36 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-1540ad85-7fb6-4b16-9734-4541a26d1f36 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-1540ad85-7fb6-4b16-9734-4541a26d1f36 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1540ad85-7fb6-4b16-9734-4541a26d1f36.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1540ad85-7fb6-4b16-9734-4541a26d1f36.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1540ad85-7fb6-4b16-9734-4541a26d1f36.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-1540ad85-7fb6-4b16-9734-4541a26d1f36 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1540ad85-7fb6-4b16-9734-4541a26d1f36-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-1540ad85-7fb6-4b16-9734-4541a26d1f36 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1540ad85-7fb6-4b16-9734-4541a26d1f36 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-1540ad85-7fb6-4b16-9734-4541a26d1f36 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-1540ad85-7fb6-4b16-9734-4541a26d1f36 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-1540ad85-7fb6-4b16-9734-4541a26d1f36 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1540ad85-7fb6-4b16-9734-4541a26d1f36.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1540ad85-7fb6-4b16-9734-4541a26d1f36.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1540ad85-7fb6-4b16-9734-4541a26d1f36.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-1540ad85-7fb6-4b16-9734-4541a26d1f36 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1540ad85-7fb6-4b16-9734-4541a26d1f36-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-1540ad85-7fb6-4b16-9734-4541a26d1f36 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1540ad85-7fb6-4b16-9734-4541a26d1f36 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-1540ad85-7fb6-4b16-9734-4541a26d1f36 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-1540ad85-7fb6-4b16-9734-4541a26d1f36 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-1540ad85-7fb6-4b16-9734-4541a26d1f36 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1540ad85-7fb6-4b16-9734-4541a26d1f36.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1540ad85-7fb6-4b16-9734-4541a26d1f36.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1540ad85-7fb6-4b16-9734-4541a26d1f36.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-1540ad85-7fb6-4b16-9734-4541a26d1f36 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1540ad85-7fb6-4b16-9734-4541a26d1f36-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-1540ad85-7fb6-4b16-9734-4541a26d1f36 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1540ad85-7fb6-4b16-9734-4541a26d1f36 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-1540ad85-7fb6-4b16-9734-4541a26d1f36 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-1540ad85-7fb6-4b16-9734-4541a26d1f36 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-1540ad85-7fb6-4b16-9734-4541a26d1f36 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1540ad85-7fb6-4b16-9734-4541a26d1f36.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1540ad85-7fb6-4b16-9734-4541a26d1f36.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1540ad85-7fb6-4b16-9734-4541a26d1f36.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-1540ad85-7fb6-4b16-9734-4541a26d1f36 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1540ad85-7fb6-4b16-9734-4541a26d1f36-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-1540ad85-7fb6-4b16-9734-4541a26d1f36 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1540ad85-7fb6-4b16-9734-4541a26d1f36 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-1540ad85-7fb6-4b16-9734-4541a26d1f36 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-1540ad85-7fb6-4b16-9734-4541a26d1f36 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-1540ad85-7fb6-4b16-9734-4541a26d1f36 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1540ad85-7fb6-4b16-9734-4541a26d1f36.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1540ad85-7fb6-4b16-9734-4541a26d1f36.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1540ad85-7fb6-4b16-9734-4541a26d1f36.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-bce65be0-0c04-48ff-b6df-82ebaabed5dd {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 4%;
padding-bottom: 0px;
padding-right: 5%;
}
@media (min-width: 768px) and (max-width: 991px){#s-bce65be0-0c04-48ff-b6df-82ebaabed5dd {
  display: none;
}
#s-bce65be0-0c04-48ff-b6df-82ebaabed5dd, #wrap-s-bce65be0-0c04-48ff-b6df-82ebaabed5dd, #wrap-content-s-bce65be0-0c04-48ff-b6df-82ebaabed5dd { display: none !important; }}@media (max-width: 767px){#s-bce65be0-0c04-48ff-b6df-82ebaabed5dd {
  
}
}
#s-bce65be0-0c04-48ff-b6df-82ebaabed5dd .shg-proportional-font-size,
#s-bce65be0-0c04-48ff-b6df-82ebaabed5dd .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-b8b0aa49-8266-4198-ac71-743ed3fef7a7 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 4%;
padding-bottom: 10px;
padding-right: 5%;
}
@media (max-width: 767px){#s-b8b0aa49-8266-4198-ac71-743ed3fef7a7 {
  padding-top: 5px;
padding-bottom: 20px;
}
}
#s-b8b0aa49-8266-4198-ac71-743ed3fef7a7 .shg-proportional-font-size,
#s-b8b0aa49-8266-4198-ac71-743ed3fef7a7 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-fc26cdf0-d6fc-4b3d-b306-46ebddab56e1 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-fc26cdf0-d6fc-4b3d-b306-46ebddab56e1 {
  display: none;
}
#s-fc26cdf0-d6fc-4b3d-b306-46ebddab56e1, #wrap-s-fc26cdf0-d6fc-4b3d-b306-46ebddab56e1, #wrap-content-s-fc26cdf0-d6fc-4b3d-b306-46ebddab56e1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fc26cdf0-d6fc-4b3d-b306-46ebddab56e1 {
  display: none;
}
#s-fc26cdf0-d6fc-4b3d-b306-46ebddab56e1, #wrap-s-fc26cdf0-d6fc-4b3d-b306-46ebddab56e1, #wrap-content-s-fc26cdf0-d6fc-4b3d-b306-46ebddab56e1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-fc26cdf0-d6fc-4b3d-b306-46ebddab56e1 {
  padding-left: 3%;
padding-bottom: 25px;
padding-right: 3%;
}
}@media (max-width: 767px){#s-fc26cdf0-d6fc-4b3d-b306-46ebddab56e1 {
  padding-left: 4%;
padding-right: 4%;
display: none;
}
#s-fc26cdf0-d6fc-4b3d-b306-46ebddab56e1, #wrap-s-fc26cdf0-d6fc-4b3d-b306-46ebddab56e1, #wrap-content-s-fc26cdf0-d6fc-4b3d-b306-46ebddab56e1 { display: none !important; }}
@media (min-width: 0px) {
[id="s-fc26cdf0-d6fc-4b3d-b306-46ebddab56e1"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-fc26cdf0-d6fc-4b3d-b306-46ebddab56e1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-fc26cdf0-d6fc-4b3d-b306-46ebddab56e1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-fc26cdf0-d6fc-4b3d-b306-46ebddab56e1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-06a2f560-f760-4dc7-a834-f34e3e3918d4 {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}

#s-06a2f560-f760-4dc7-a834-f34e3e3918d4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-06a2f560-f760-4dc7-a834-f34e3e3918d4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-06a2f560-f760-4dc7-a834-f34e3e3918d4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-06a2f560-f760-4dc7-a834-f34e3e3918d4 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-06a2f560-f760-4dc7-a834-f34e3e3918d4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-06a2f560-f760-4dc7-a834-f34e3e3918d4 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-06a2f560-f760-4dc7-a834-f34e3e3918d4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-06a2f560-f760-4dc7-a834-f34e3e3918d4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06a2f560-f760-4dc7-a834-f34e3e3918d4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06a2f560-f760-4dc7-a834-f34e3e3918d4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-06a2f560-f760-4dc7-a834-f34e3e3918d4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-06a2f560-f760-4dc7-a834-f34e3e3918d4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-06a2f560-f760-4dc7-a834-f34e3e3918d4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-06a2f560-f760-4dc7-a834-f34e3e3918d4 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-06a2f560-f760-4dc7-a834-f34e3e3918d4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-06a2f560-f760-4dc7-a834-f34e3e3918d4 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-06a2f560-f760-4dc7-a834-f34e3e3918d4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-06a2f560-f760-4dc7-a834-f34e3e3918d4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06a2f560-f760-4dc7-a834-f34e3e3918d4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06a2f560-f760-4dc7-a834-f34e3e3918d4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-06a2f560-f760-4dc7-a834-f34e3e3918d4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-06a2f560-f760-4dc7-a834-f34e3e3918d4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-06a2f560-f760-4dc7-a834-f34e3e3918d4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-06a2f560-f760-4dc7-a834-f34e3e3918d4 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-06a2f560-f760-4dc7-a834-f34e3e3918d4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-06a2f560-f760-4dc7-a834-f34e3e3918d4 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-06a2f560-f760-4dc7-a834-f34e3e3918d4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-06a2f560-f760-4dc7-a834-f34e3e3918d4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06a2f560-f760-4dc7-a834-f34e3e3918d4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06a2f560-f760-4dc7-a834-f34e3e3918d4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-06a2f560-f760-4dc7-a834-f34e3e3918d4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-06a2f560-f760-4dc7-a834-f34e3e3918d4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-06a2f560-f760-4dc7-a834-f34e3e3918d4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-06a2f560-f760-4dc7-a834-f34e3e3918d4 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-06a2f560-f760-4dc7-a834-f34e3e3918d4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-06a2f560-f760-4dc7-a834-f34e3e3918d4 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-06a2f560-f760-4dc7-a834-f34e3e3918d4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-06a2f560-f760-4dc7-a834-f34e3e3918d4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06a2f560-f760-4dc7-a834-f34e3e3918d4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06a2f560-f760-4dc7-a834-f34e3e3918d4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-06a2f560-f760-4dc7-a834-f34e3e3918d4 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-06a2f560-f760-4dc7-a834-f34e3e3918d4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-06a2f560-f760-4dc7-a834-f34e3e3918d4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-06a2f560-f760-4dc7-a834-f34e3e3918d4 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-06a2f560-f760-4dc7-a834-f34e3e3918d4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-06a2f560-f760-4dc7-a834-f34e3e3918d4 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-06a2f560-f760-4dc7-a834-f34e3e3918d4 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-06a2f560-f760-4dc7-a834-f34e3e3918d4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06a2f560-f760-4dc7-a834-f34e3e3918d4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06a2f560-f760-4dc7-a834-f34e3e3918d4.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-6ab549b9-50db-4e10-8f8c-eb95caca5786 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 4%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-6ab549b9-50db-4e10-8f8c-eb95caca5786 .shg-proportional-font-size,
#s-6ab549b9-50db-4e10-8f8c-eb95caca5786 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-18eedd88-ad27-4009-84a2-437c862cd74b {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 4%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-18eedd88-ad27-4009-84a2-437c862cd74b .shg-proportional-font-size,
#s-18eedd88-ad27-4009-84a2-437c862cd74b .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-e2688bb3-6f95-425a-8e11-94422655a519 {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}

#s-e2688bb3-6f95-425a-8e11-94422655a519 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e2688bb3-6f95-425a-8e11-94422655a519-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e2688bb3-6f95-425a-8e11-94422655a519 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e2688bb3-6f95-425a-8e11-94422655a519 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-e2688bb3-6f95-425a-8e11-94422655a519 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e2688bb3-6f95-425a-8e11-94422655a519 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-e2688bb3-6f95-425a-8e11-94422655a519 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e2688bb3-6f95-425a-8e11-94422655a519.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e2688bb3-6f95-425a-8e11-94422655a519.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e2688bb3-6f95-425a-8e11-94422655a519.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-e2688bb3-6f95-425a-8e11-94422655a519 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e2688bb3-6f95-425a-8e11-94422655a519-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e2688bb3-6f95-425a-8e11-94422655a519 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e2688bb3-6f95-425a-8e11-94422655a519 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-e2688bb3-6f95-425a-8e11-94422655a519 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e2688bb3-6f95-425a-8e11-94422655a519 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-e2688bb3-6f95-425a-8e11-94422655a519 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e2688bb3-6f95-425a-8e11-94422655a519.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e2688bb3-6f95-425a-8e11-94422655a519.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e2688bb3-6f95-425a-8e11-94422655a519.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-e2688bb3-6f95-425a-8e11-94422655a519 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e2688bb3-6f95-425a-8e11-94422655a519-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e2688bb3-6f95-425a-8e11-94422655a519 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e2688bb3-6f95-425a-8e11-94422655a519 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-e2688bb3-6f95-425a-8e11-94422655a519 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e2688bb3-6f95-425a-8e11-94422655a519 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-e2688bb3-6f95-425a-8e11-94422655a519 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e2688bb3-6f95-425a-8e11-94422655a519.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e2688bb3-6f95-425a-8e11-94422655a519.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e2688bb3-6f95-425a-8e11-94422655a519.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-e2688bb3-6f95-425a-8e11-94422655a519 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e2688bb3-6f95-425a-8e11-94422655a519-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e2688bb3-6f95-425a-8e11-94422655a519 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e2688bb3-6f95-425a-8e11-94422655a519 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-e2688bb3-6f95-425a-8e11-94422655a519 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e2688bb3-6f95-425a-8e11-94422655a519 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-e2688bb3-6f95-425a-8e11-94422655a519 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e2688bb3-6f95-425a-8e11-94422655a519.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e2688bb3-6f95-425a-8e11-94422655a519.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e2688bb3-6f95-425a-8e11-94422655a519.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-e2688bb3-6f95-425a-8e11-94422655a519 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e2688bb3-6f95-425a-8e11-94422655a519-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e2688bb3-6f95-425a-8e11-94422655a519 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e2688bb3-6f95-425a-8e11-94422655a519 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-e2688bb3-6f95-425a-8e11-94422655a519 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-e2688bb3-6f95-425a-8e11-94422655a519 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-e2688bb3-6f95-425a-8e11-94422655a519 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e2688bb3-6f95-425a-8e11-94422655a519.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e2688bb3-6f95-425a-8e11-94422655a519.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e2688bb3-6f95-425a-8e11-94422655a519.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-aaafa4e1-5c0e-4b05-8c7f-24f6e5ceaae6 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 4%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-aaafa4e1-5c0e-4b05-8c7f-24f6e5ceaae6 .shg-proportional-font-size,
#s-aaafa4e1-5c0e-4b05-8c7f-24f6e5ceaae6 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-e7918900-8d64-479f-8377-e4f645fe8a94 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 4%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-e7918900-8d64-479f-8377-e4f645fe8a94 .shg-proportional-font-size,
#s-e7918900-8d64-479f-8377-e4f645fe8a94 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-5686e393-1363-4d9a-9864-dab17321d73b {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}

#s-5686e393-1363-4d9a-9864-dab17321d73b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5686e393-1363-4d9a-9864-dab17321d73b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-5686e393-1363-4d9a-9864-dab17321d73b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5686e393-1363-4d9a-9864-dab17321d73b .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-5686e393-1363-4d9a-9864-dab17321d73b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5686e393-1363-4d9a-9864-dab17321d73b img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-5686e393-1363-4d9a-9864-dab17321d73b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5686e393-1363-4d9a-9864-dab17321d73b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5686e393-1363-4d9a-9864-dab17321d73b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5686e393-1363-4d9a-9864-dab17321d73b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-5686e393-1363-4d9a-9864-dab17321d73b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5686e393-1363-4d9a-9864-dab17321d73b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-5686e393-1363-4d9a-9864-dab17321d73b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5686e393-1363-4d9a-9864-dab17321d73b .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-5686e393-1363-4d9a-9864-dab17321d73b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5686e393-1363-4d9a-9864-dab17321d73b img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-5686e393-1363-4d9a-9864-dab17321d73b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5686e393-1363-4d9a-9864-dab17321d73b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5686e393-1363-4d9a-9864-dab17321d73b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5686e393-1363-4d9a-9864-dab17321d73b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-5686e393-1363-4d9a-9864-dab17321d73b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5686e393-1363-4d9a-9864-dab17321d73b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-5686e393-1363-4d9a-9864-dab17321d73b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5686e393-1363-4d9a-9864-dab17321d73b .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-5686e393-1363-4d9a-9864-dab17321d73b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5686e393-1363-4d9a-9864-dab17321d73b img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-5686e393-1363-4d9a-9864-dab17321d73b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5686e393-1363-4d9a-9864-dab17321d73b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5686e393-1363-4d9a-9864-dab17321d73b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5686e393-1363-4d9a-9864-dab17321d73b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-5686e393-1363-4d9a-9864-dab17321d73b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5686e393-1363-4d9a-9864-dab17321d73b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-5686e393-1363-4d9a-9864-dab17321d73b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5686e393-1363-4d9a-9864-dab17321d73b .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-5686e393-1363-4d9a-9864-dab17321d73b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5686e393-1363-4d9a-9864-dab17321d73b img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-5686e393-1363-4d9a-9864-dab17321d73b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5686e393-1363-4d9a-9864-dab17321d73b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5686e393-1363-4d9a-9864-dab17321d73b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5686e393-1363-4d9a-9864-dab17321d73b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-5686e393-1363-4d9a-9864-dab17321d73b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5686e393-1363-4d9a-9864-dab17321d73b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-5686e393-1363-4d9a-9864-dab17321d73b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5686e393-1363-4d9a-9864-dab17321d73b .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-5686e393-1363-4d9a-9864-dab17321d73b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5686e393-1363-4d9a-9864-dab17321d73b img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-5686e393-1363-4d9a-9864-dab17321d73b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5686e393-1363-4d9a-9864-dab17321d73b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5686e393-1363-4d9a-9864-dab17321d73b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5686e393-1363-4d9a-9864-dab17321d73b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-57d58175-94ef-4172-8f67-b3034ec35570 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 4%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-57d58175-94ef-4172-8f67-b3034ec35570 .shg-proportional-font-size,
#s-57d58175-94ef-4172-8f67-b3034ec35570 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-2dd842f9-a22a-4e0c-95bf-5c5e6ac4b790 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 4%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-2dd842f9-a22a-4e0c-95bf-5c5e6ac4b790 .shg-proportional-font-size,
#s-2dd842f9-a22a-4e0c-95bf-5c5e6ac4b790 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-3fc6c1c7-f528-44e2-b810-b5af06800e47 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-3fc6c1c7-f528-44e2-b810-b5af06800e47 {
  display: none;
}
#s-3fc6c1c7-f528-44e2-b810-b5af06800e47, #wrap-s-3fc6c1c7-f528-44e2-b810-b5af06800e47, #wrap-content-s-3fc6c1c7-f528-44e2-b810-b5af06800e47 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3fc6c1c7-f528-44e2-b810-b5af06800e47 {
  display: none;
}
#s-3fc6c1c7-f528-44e2-b810-b5af06800e47, #wrap-s-3fc6c1c7-f528-44e2-b810-b5af06800e47, #wrap-content-s-3fc6c1c7-f528-44e2-b810-b5af06800e47 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3fc6c1c7-f528-44e2-b810-b5af06800e47 {
  display: none;
}
#s-3fc6c1c7-f528-44e2-b810-b5af06800e47, #wrap-s-3fc6c1c7-f528-44e2-b810-b5af06800e47, #wrap-content-s-3fc6c1c7-f528-44e2-b810-b5af06800e47 { display: none !important; }}@media (max-width: 767px){#s-3fc6c1c7-f528-44e2-b810-b5af06800e47 {
  padding-left: 4%;
padding-bottom: 20px;
padding-right: 4%;
}
}
@media (min-width: 0px) {
[id="s-3fc6c1c7-f528-44e2-b810-b5af06800e47"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-3fc6c1c7-f528-44e2-b810-b5af06800e47"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3fc6c1c7-f528-44e2-b810-b5af06800e47"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3fc6c1c7-f528-44e2-b810-b5af06800e47"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}

#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-99a49cc5-95bb-4de5-967c-b4d5bc071a11.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99a49cc5-95bb-4de5-967c-b4d5bc071a11.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-99a49cc5-95bb-4de5-967c-b4d5bc071a11.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99a49cc5-95bb-4de5-967c-b4d5bc071a11.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-99a49cc5-95bb-4de5-967c-b4d5bc071a11.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99a49cc5-95bb-4de5-967c-b4d5bc071a11.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-99a49cc5-95bb-4de5-967c-b4d5bc071a11.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99a49cc5-95bb-4de5-967c-b4d5bc071a11.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-99a49cc5-95bb-4de5-967c-b4d5bc071a11 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-99a49cc5-95bb-4de5-967c-b4d5bc071a11.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99a49cc5-95bb-4de5-967c-b4d5bc071a11.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99a49cc5-95bb-4de5-967c-b4d5bc071a11.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-2400aa63-2408-4da3-addf-ca0569bb06cb {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 4%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-2400aa63-2408-4da3-addf-ca0569bb06cb .shg-proportional-font-size,
#s-2400aa63-2408-4da3-addf-ca0569bb06cb .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-8eaf56ed-35a1-4911-bf36-6ca78e678c9d {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 4%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-8eaf56ed-35a1-4911-bf36-6ca78e678c9d .shg-proportional-font-size,
#s-8eaf56ed-35a1-4911-bf36-6ca78e678c9d .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-7aa76793-e589-4ecc-8f07-848b4be87217 {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}

#s-7aa76793-e589-4ecc-8f07-848b4be87217 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-7aa76793-e589-4ecc-8f07-848b4be87217-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-7aa76793-e589-4ecc-8f07-848b4be87217 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-7aa76793-e589-4ecc-8f07-848b4be87217 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-7aa76793-e589-4ecc-8f07-848b4be87217 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-7aa76793-e589-4ecc-8f07-848b4be87217 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-7aa76793-e589-4ecc-8f07-848b4be87217 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-7aa76793-e589-4ecc-8f07-848b4be87217.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7aa76793-e589-4ecc-8f07-848b4be87217.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7aa76793-e589-4ecc-8f07-848b4be87217.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-7aa76793-e589-4ecc-8f07-848b4be87217 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-7aa76793-e589-4ecc-8f07-848b4be87217-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-7aa76793-e589-4ecc-8f07-848b4be87217 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-7aa76793-e589-4ecc-8f07-848b4be87217 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-7aa76793-e589-4ecc-8f07-848b4be87217 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-7aa76793-e589-4ecc-8f07-848b4be87217 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-7aa76793-e589-4ecc-8f07-848b4be87217 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-7aa76793-e589-4ecc-8f07-848b4be87217.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7aa76793-e589-4ecc-8f07-848b4be87217.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7aa76793-e589-4ecc-8f07-848b4be87217.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-7aa76793-e589-4ecc-8f07-848b4be87217 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-7aa76793-e589-4ecc-8f07-848b4be87217-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-7aa76793-e589-4ecc-8f07-848b4be87217 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-7aa76793-e589-4ecc-8f07-848b4be87217 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-7aa76793-e589-4ecc-8f07-848b4be87217 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-7aa76793-e589-4ecc-8f07-848b4be87217 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-7aa76793-e589-4ecc-8f07-848b4be87217 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-7aa76793-e589-4ecc-8f07-848b4be87217.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7aa76793-e589-4ecc-8f07-848b4be87217.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7aa76793-e589-4ecc-8f07-848b4be87217.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-7aa76793-e589-4ecc-8f07-848b4be87217 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-7aa76793-e589-4ecc-8f07-848b4be87217-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-7aa76793-e589-4ecc-8f07-848b4be87217 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-7aa76793-e589-4ecc-8f07-848b4be87217 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-7aa76793-e589-4ecc-8f07-848b4be87217 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-7aa76793-e589-4ecc-8f07-848b4be87217 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-7aa76793-e589-4ecc-8f07-848b4be87217 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-7aa76793-e589-4ecc-8f07-848b4be87217.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7aa76793-e589-4ecc-8f07-848b4be87217.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7aa76793-e589-4ecc-8f07-848b4be87217.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-7aa76793-e589-4ecc-8f07-848b4be87217 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-7aa76793-e589-4ecc-8f07-848b4be87217-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-7aa76793-e589-4ecc-8f07-848b4be87217 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-7aa76793-e589-4ecc-8f07-848b4be87217 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-7aa76793-e589-4ecc-8f07-848b4be87217 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-7aa76793-e589-4ecc-8f07-848b4be87217 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-7aa76793-e589-4ecc-8f07-848b4be87217 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-7aa76793-e589-4ecc-8f07-848b4be87217.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7aa76793-e589-4ecc-8f07-848b4be87217.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7aa76793-e589-4ecc-8f07-848b4be87217.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-81adc5d7-a744-4a1d-b53a-36f636a9ae2e {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 4%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-81adc5d7-a744-4a1d-b53a-36f636a9ae2e .shg-proportional-font-size,
#s-81adc5d7-a744-4a1d-b53a-36f636a9ae2e .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-9efe16c6-f9ce-46c1-82fc-da37c7cd5d8d {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 4%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-9efe16c6-f9ce-46c1-82fc-da37c7cd5d8d .shg-proportional-font-size,
#s-9efe16c6-f9ce-46c1-82fc-da37c7cd5d8d .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-5163921b-5ca4-4ef2-a230-ac9d07009f47 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-5163921b-5ca4-4ef2-a230-ac9d07009f47 {
  display: none;
}
#s-5163921b-5ca4-4ef2-a230-ac9d07009f47, #wrap-s-5163921b-5ca4-4ef2-a230-ac9d07009f47, #wrap-content-s-5163921b-5ca4-4ef2-a230-ac9d07009f47 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5163921b-5ca4-4ef2-a230-ac9d07009f47 {
  display: none;
}
#s-5163921b-5ca4-4ef2-a230-ac9d07009f47, #wrap-s-5163921b-5ca4-4ef2-a230-ac9d07009f47, #wrap-content-s-5163921b-5ca4-4ef2-a230-ac9d07009f47 { display: none !important; }}@media (max-width: 767px){#s-5163921b-5ca4-4ef2-a230-ac9d07009f47 {
  padding-top: 20px;
}
}







#s-5163921b-5ca4-4ef2-a230-ac9d07009f47 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5163921b-5ca4-4ef2-a230-ac9d07009f47.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe {
  margin-left: auto;
margin-right: auto;
max-width: 3051px;
text-align: center;
}

#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe img.shogun-image {
  width: 100%;
  
  
  max-width: 3051px;

      
    max-width: 3051px;

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




.s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe img.shogun-image {
  width: 100%;
  
  
  max-width: 3051px;

      
    max-width: 3051px;

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




.s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe img.shogun-image {
  width: 100%;
  
  
  max-width: 3051px;

      
    max-width: 3051px;

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




.s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 30%;
  padding-right: 30%;
  
  padding-bottom: 15px;
}


.shg-image-content-margin-container-s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe img.shogun-image {
  width: 100%;
  
  
  max-width: 3051px;

      
    max-width: 3051px;

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




.s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 35%;
  padding-right: 8%;
  padding-top: 25px;
  padding-bottom: 0px;
}


.shg-image-content-margin-container-s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe img.shogun-image {
  width: 100%;
  
  
  max-width: 3051px;

      
    max-width: 3051px;

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




.s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc98d46f-bcf6-4cef-b84b-ff059620dcfe.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-37b58493-b153-42f4-bc6f-87475d366eef {
  margin-left: auto;
margin-right: auto;
padding-left: 10%;
padding-right: 5%;
}
@media (min-width: 768px) and (max-width: 991px){#s-37b58493-b153-42f4-bc6f-87475d366eef {
  padding-left: 5%;
padding-bottom: 20px;
}
}@media (max-width: 767px){#s-37b58493-b153-42f4-bc6f-87475d366eef {
  padding-top: 25px;
padding-left: 5%;
padding-bottom: 30px;
padding-right: 5%;
}
}
#s-37b58493-b153-42f4-bc6f-87475d366eef .shg-proportional-font-size,
#s-37b58493-b153-42f4-bc6f-87475d366eef .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 {
  margin-left: auto;
margin-right: auto;
max-width: 3273px;
text-align: center;
}

#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 img.shogun-image {
  width: 100%;
  
  
  max-width: 3273px;

      
    max-width: 3273px;

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




.s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bc2d3caa-f624-486d-a3e2-6bc1262612a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc2d3caa-f624-486d-a3e2-6bc1262612a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 img.shogun-image {
  width: 100%;
  
  
  max-width: 3273px;

      
    max-width: 3273px;

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




.s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bc2d3caa-f624-486d-a3e2-6bc1262612a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc2d3caa-f624-486d-a3e2-6bc1262612a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 img.shogun-image {
  width: 100%;
  
  
  max-width: 3273px;

      
    max-width: 3273px;

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




.s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bc2d3caa-f624-486d-a3e2-6bc1262612a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc2d3caa-f624-486d-a3e2-6bc1262612a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 img.shogun-image {
  width: 100%;
  
  
  max-width: 3273px;

      
    max-width: 3273px;

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




.s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bc2d3caa-f624-486d-a3e2-6bc1262612a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc2d3caa-f624-486d-a3e2-6bc1262612a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 8%;
  padding-right: 35%;
  padding-top: 25px;
  padding-bottom: 0px;
}


.shg-image-content-margin-container-s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 img.shogun-image {
  width: 100%;
  
  
  max-width: 3273px;

      
    max-width: 3273px;

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




.s-bc2d3caa-f624-486d-a3e2-6bc1262612a7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bc2d3caa-f624-486d-a3e2-6bc1262612a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc2d3caa-f624-486d-a3e2-6bc1262612a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc2d3caa-f624-486d-a3e2-6bc1262612a7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-38913f85-2235-4e51-aa73-76d25108809a {
  margin-left: auto;
margin-right: auto;
padding-left: 10%;
padding-right: 5%;
}
@media (min-width: 768px) and (max-width: 991px){#s-38913f85-2235-4e51-aa73-76d25108809a {
  padding-left: 5%;
padding-bottom: 30px;
}
}@media (max-width: 767px){#s-38913f85-2235-4e51-aa73-76d25108809a {
  padding-top: 25px;
padding-left: 5%;
padding-bottom: 30px;
padding-right: 5%;
}
}
#s-38913f85-2235-4e51-aa73-76d25108809a .shg-proportional-font-size,
#s-38913f85-2235-4e51-aa73-76d25108809a .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-dbeb295f-5536-4fa4-afad-938fa9648f40 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-dbeb295f-5536-4fa4-afad-938fa9648f40 {
  display: none;
}
#s-dbeb295f-5536-4fa4-afad-938fa9648f40, #wrap-s-dbeb295f-5536-4fa4-afad-938fa9648f40, #wrap-content-s-dbeb295f-5536-4fa4-afad-938fa9648f40 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-dbeb295f-5536-4fa4-afad-938fa9648f40 {
  display: none;
}
#s-dbeb295f-5536-4fa4-afad-938fa9648f40, #wrap-s-dbeb295f-5536-4fa4-afad-938fa9648f40, #wrap-content-s-dbeb295f-5536-4fa4-afad-938fa9648f40 { display: none !important; }}







#s-dbeb295f-5536-4fa4-afad-938fa9648f40 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-dbeb295f-5536-4fa4-afad-938fa9648f40.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aefb1f2f-3d88-4dcf-8fee-9b3728c97fc3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-7136555e-0a24-48b7-b639-bfea73e5a75d {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-7136555e-0a24-48b7-b639-bfea73e5a75d {
  display: none;
}
#s-7136555e-0a24-48b7-b639-bfea73e5a75d, #wrap-s-7136555e-0a24-48b7-b639-bfea73e5a75d, #wrap-content-s-7136555e-0a24-48b7-b639-bfea73e5a75d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7136555e-0a24-48b7-b639-bfea73e5a75d {
  display: none;
}
#s-7136555e-0a24-48b7-b639-bfea73e5a75d, #wrap-s-7136555e-0a24-48b7-b639-bfea73e5a75d, #wrap-content-s-7136555e-0a24-48b7-b639-bfea73e5a75d { display: none !important; }}







#s-7136555e-0a24-48b7-b639-bfea73e5a75d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7136555e-0a24-48b7-b639-bfea73e5a75d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-420de542-6b5c-4147-9d59-8c923c1f4276 {
  margin-left: auto;
margin-right: auto;
max-width: 4506px;
text-align: center;
}
@media (max-width: 767px){#s-420de542-6b5c-4147-9d59-8c923c1f4276 {
  display: none;
}
#s-420de542-6b5c-4147-9d59-8c923c1f4276, #wrap-s-420de542-6b5c-4147-9d59-8c923c1f4276, #wrap-content-s-420de542-6b5c-4147-9d59-8c923c1f4276 { display: none !important; }}
#s-420de542-6b5c-4147-9d59-8c923c1f4276 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-420de542-6b5c-4147-9d59-8c923c1f4276-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-420de542-6b5c-4147-9d59-8c923c1f4276 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-420de542-6b5c-4147-9d59-8c923c1f4276 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-420de542-6b5c-4147-9d59-8c923c1f4276 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-420de542-6b5c-4147-9d59-8c923c1f4276 img.shogun-image {
  width: 100%;
  
  
  max-width: 4506px;

      
    max-width: 4506px;

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




.s-420de542-6b5c-4147-9d59-8c923c1f4276 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-420de542-6b5c-4147-9d59-8c923c1f4276.shg-align-container {
  display: flex;
  justify-content: center
}

.s-420de542-6b5c-4147-9d59-8c923c1f4276.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-420de542-6b5c-4147-9d59-8c923c1f4276.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-420de542-6b5c-4147-9d59-8c923c1f4276 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-420de542-6b5c-4147-9d59-8c923c1f4276-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-420de542-6b5c-4147-9d59-8c923c1f4276 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-420de542-6b5c-4147-9d59-8c923c1f4276 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-420de542-6b5c-4147-9d59-8c923c1f4276 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-420de542-6b5c-4147-9d59-8c923c1f4276 img.shogun-image {
  width: 100%;
  
  
  max-width: 4506px;

      
    max-width: 4506px;

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




.s-420de542-6b5c-4147-9d59-8c923c1f4276 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-420de542-6b5c-4147-9d59-8c923c1f4276.shg-align-container {
  display: flex;
  justify-content: center
}

.s-420de542-6b5c-4147-9d59-8c923c1f4276.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-420de542-6b5c-4147-9d59-8c923c1f4276.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-420de542-6b5c-4147-9d59-8c923c1f4276 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-420de542-6b5c-4147-9d59-8c923c1f4276-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-420de542-6b5c-4147-9d59-8c923c1f4276 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-420de542-6b5c-4147-9d59-8c923c1f4276 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-420de542-6b5c-4147-9d59-8c923c1f4276 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-420de542-6b5c-4147-9d59-8c923c1f4276 img.shogun-image {
  width: 100%;
  
  
  max-width: 4506px;

      
    max-width: 4506px;

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




.s-420de542-6b5c-4147-9d59-8c923c1f4276 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-420de542-6b5c-4147-9d59-8c923c1f4276.shg-align-container {
  display: flex;
  justify-content: center
}

.s-420de542-6b5c-4147-9d59-8c923c1f4276.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-420de542-6b5c-4147-9d59-8c923c1f4276.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-420de542-6b5c-4147-9d59-8c923c1f4276 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-420de542-6b5c-4147-9d59-8c923c1f4276-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-420de542-6b5c-4147-9d59-8c923c1f4276 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-420de542-6b5c-4147-9d59-8c923c1f4276 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-420de542-6b5c-4147-9d59-8c923c1f4276 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-420de542-6b5c-4147-9d59-8c923c1f4276 img.shogun-image {
  width: 100%;
  
  
  max-width: 4506px;

      
    max-width: 4506px;

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




.s-420de542-6b5c-4147-9d59-8c923c1f4276 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-420de542-6b5c-4147-9d59-8c923c1f4276.shg-align-container {
  display: flex;
  justify-content: center
}

.s-420de542-6b5c-4147-9d59-8c923c1f4276.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-420de542-6b5c-4147-9d59-8c923c1f4276.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-420de542-6b5c-4147-9d59-8c923c1f4276 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-420de542-6b5c-4147-9d59-8c923c1f4276-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-420de542-6b5c-4147-9d59-8c923c1f4276 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-420de542-6b5c-4147-9d59-8c923c1f4276 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 35%;
  padding-right: 8%;
  padding-top: 25px;
  padding-bottom: 0px;
}


.shg-image-content-margin-container-s-420de542-6b5c-4147-9d59-8c923c1f4276 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-420de542-6b5c-4147-9d59-8c923c1f4276 img.shogun-image {
  width: 100%;
  
  
  max-width: 4506px;

      
    max-width: 4506px;

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




.s-420de542-6b5c-4147-9d59-8c923c1f4276 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-420de542-6b5c-4147-9d59-8c923c1f4276.shg-align-container {
  display: flex;
  justify-content: center
}

.s-420de542-6b5c-4147-9d59-8c923c1f4276.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-420de542-6b5c-4147-9d59-8c923c1f4276.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be {
  margin-left: auto;
margin-right: auto;
max-width: 2590px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be {
  display: none;
}
#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be, #wrap-s-cb69a741-b3ce-4478-84d1-8c75cf69d9be, #wrap-content-s-cb69a741-b3ce-4478-84d1-8c75cf69d9be { display: none !important; }}@media (max-width: 767px){#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be {
  
}
}
#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-cb69a741-b3ce-4478-84d1-8c75cf69d9be {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-cb69a741-b3ce-4478-84d1-8c75cf69d9be {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be img.shogun-image {
  width: 100%;
  
  
  max-width: 2590px;

      
    max-width: 2590px;

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




.s-cb69a741-b3ce-4478-84d1-8c75cf69d9be .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cb69a741-b3ce-4478-84d1-8c75cf69d9be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb69a741-b3ce-4478-84d1-8c75cf69d9be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-cb69a741-b3ce-4478-84d1-8c75cf69d9be {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-cb69a741-b3ce-4478-84d1-8c75cf69d9be {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be img.shogun-image {
  width: 100%;
  
  
  max-width: 2590px;

      
    max-width: 2590px;

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




.s-cb69a741-b3ce-4478-84d1-8c75cf69d9be .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cb69a741-b3ce-4478-84d1-8c75cf69d9be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb69a741-b3ce-4478-84d1-8c75cf69d9be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-cb69a741-b3ce-4478-84d1-8c75cf69d9be {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-cb69a741-b3ce-4478-84d1-8c75cf69d9be {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be img.shogun-image {
  width: 100%;
  
  
  max-width: 2590px;

      
    max-width: 2590px;

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




.s-cb69a741-b3ce-4478-84d1-8c75cf69d9be .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cb69a741-b3ce-4478-84d1-8c75cf69d9be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb69a741-b3ce-4478-84d1-8c75cf69d9be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-cb69a741-b3ce-4478-84d1-8c75cf69d9be {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-cb69a741-b3ce-4478-84d1-8c75cf69d9be {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be img.shogun-image {
  width: 100%;
  
  
  max-width: 2590px;

      
    max-width: 2590px;

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




.s-cb69a741-b3ce-4478-84d1-8c75cf69d9be .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cb69a741-b3ce-4478-84d1-8c75cf69d9be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb69a741-b3ce-4478-84d1-8c75cf69d9be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-cb69a741-b3ce-4478-84d1-8c75cf69d9be {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 35%;
  padding-right: 8%;
  padding-top: 30px;
  padding-bottom: 0px;
}


.shg-image-content-margin-container-s-cb69a741-b3ce-4478-84d1-8c75cf69d9be {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be img.shogun-image {
  width: 100%;
  
  
  max-width: 2590px;

      
    max-width: 2590px;

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




.s-cb69a741-b3ce-4478-84d1-8c75cf69d9be .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cb69a741-b3ce-4478-84d1-8c75cf69d9be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb69a741-b3ce-4478-84d1-8c75cf69d9be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb69a741-b3ce-4478-84d1-8c75cf69d9be.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-84ee1dc8-267c-4b1d-918a-dfca7304ebe0 {
  margin-left: auto;
margin-right: auto;
padding-left: 10%;
padding-right: 5%;
}
@media (min-width: 768px) and (max-width: 991px){#s-84ee1dc8-267c-4b1d-918a-dfca7304ebe0 {
  padding-left: 5%;
padding-bottom: 20px;
}
}@media (max-width: 767px){#s-84ee1dc8-267c-4b1d-918a-dfca7304ebe0 {
  padding-top: 25px;
padding-left: 5%;
padding-bottom: 30px;
padding-right: 5%;
}
}
#s-84ee1dc8-267c-4b1d-918a-dfca7304ebe0 .shg-proportional-font-size,
#s-84ee1dc8-267c-4b1d-918a-dfca7304ebe0 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-e6eaffce-3271-4a1b-bc9f-af417ff4dbe6 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-e6eaffce-3271-4a1b-bc9f-af417ff4dbe6 {
  display: none;
}
#s-e6eaffce-3271-4a1b-bc9f-af417ff4dbe6, #wrap-s-e6eaffce-3271-4a1b-bc9f-af417ff4dbe6, #wrap-content-s-e6eaffce-3271-4a1b-bc9f-af417ff4dbe6 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e6eaffce-3271-4a1b-bc9f-af417ff4dbe6 {
  display: none;
}
#s-e6eaffce-3271-4a1b-bc9f-af417ff4dbe6, #wrap-s-e6eaffce-3271-4a1b-bc9f-af417ff4dbe6, #wrap-content-s-e6eaffce-3271-4a1b-bc9f-af417ff4dbe6 { display: none !important; }}







#s-e6eaffce-3271-4a1b-bc9f-af417ff4dbe6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e6eaffce-3271-4a1b-bc9f-af417ff4dbe6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97ff34e4-843f-4afe-85c2-1d77b13bfaf5.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-7e0a8a61-7483-4df5-a2b5-ed32d06433fc {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-7e0a8a61-7483-4df5-a2b5-ed32d06433fc {
  display: none;
}
#s-7e0a8a61-7483-4df5-a2b5-ed32d06433fc, #wrap-s-7e0a8a61-7483-4df5-a2b5-ed32d06433fc, #wrap-content-s-7e0a8a61-7483-4df5-a2b5-ed32d06433fc { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7e0a8a61-7483-4df5-a2b5-ed32d06433fc {
  display: none;
}
#s-7e0a8a61-7483-4df5-a2b5-ed32d06433fc, #wrap-s-7e0a8a61-7483-4df5-a2b5-ed32d06433fc, #wrap-content-s-7e0a8a61-7483-4df5-a2b5-ed32d06433fc { display: none !important; }}







#s-7e0a8a61-7483-4df5-a2b5-ed32d06433fc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7e0a8a61-7483-4df5-a2b5-ed32d06433fc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5afaf563-1a2d-4cc1-a96d-1b9e8650e24c {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(199, 209, 219, 1);
}
@media (min-width: 1200px){#s-5afaf563-1a2d-4cc1-a96d-1b9e8650e24c {
  display: none;
}
#s-5afaf563-1a2d-4cc1-a96d-1b9e8650e24c, #wrap-s-5afaf563-1a2d-4cc1-a96d-1b9e8650e24c, #wrap-content-s-5afaf563-1a2d-4cc1-a96d-1b9e8650e24c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5afaf563-1a2d-4cc1-a96d-1b9e8650e24c {
  display: none;
}
#s-5afaf563-1a2d-4cc1-a96d-1b9e8650e24c, #wrap-s-5afaf563-1a2d-4cc1-a96d-1b9e8650e24c, #wrap-content-s-5afaf563-1a2d-4cc1-a96d-1b9e8650e24c { display: none !important; }}







#s-5afaf563-1a2d-4cc1-a96d-1b9e8650e24c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5afaf563-1a2d-4cc1-a96d-1b9e8650e24c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-056b3c0f-1cf9-4544-ad99-5b92044495ea {
  margin-left: auto;
margin-right: auto;
padding-top: 30px;
padding-bottom: 20px;
padding-right: 0%;
}
@media (min-width: 768px) and (max-width: 991px){#s-056b3c0f-1cf9-4544-ad99-5b92044495ea {
  padding-left: 5%;
}
}@media (max-width: 767px){#s-056b3c0f-1cf9-4544-ad99-5b92044495ea {
  padding-left: 5%;
}
}
#s-056b3c0f-1cf9-4544-ad99-5b92044495ea .shg-proportional-font-size,
#s-056b3c0f-1cf9-4544-ad99-5b92044495ea .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-675a16d3-c6cd-4c74-8b8b-327bd02cf45d {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 991px){#s-675a16d3-c6cd-4c74-8b8b-327bd02cf45d {
  padding-left: 5%;
}
}@media (max-width: 767px){#s-675a16d3-c6cd-4c74-8b8b-327bd02cf45d {
  padding-left: 5%;
}
}
#s-675a16d3-c6cd-4c74-8b8b-327bd02cf45d .shg-proportional-font-size,
#s-675a16d3-c6cd-4c74-8b8b-327bd02cf45d .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-df01cb6e-c3e3-4957-b3da-0a36f56b63ab {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(199, 209, 219, 1);
}
@media (min-width: 1200px){#s-df01cb6e-c3e3-4957-b3da-0a36f56b63ab {
  padding-top: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-df01cb6e-c3e3-4957-b3da-0a36f56b63ab {
  display: none;
}
#s-df01cb6e-c3e3-4957-b3da-0a36f56b63ab, #wrap-s-df01cb6e-c3e3-4957-b3da-0a36f56b63ab, #wrap-content-s-df01cb6e-c3e3-4957-b3da-0a36f56b63ab { display: none !important; }}@media (max-width: 767px){#s-df01cb6e-c3e3-4957-b3da-0a36f56b63ab {
  display: none;
}
#s-df01cb6e-c3e3-4957-b3da-0a36f56b63ab, #wrap-s-df01cb6e-c3e3-4957-b3da-0a36f56b63ab, #wrap-content-s-df01cb6e-c3e3-4957-b3da-0a36f56b63ab { display: none !important; }}







#s-df01cb6e-c3e3-4957-b3da-0a36f56b63ab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-df01cb6e-c3e3-4957-b3da-0a36f56b63ab.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a0721a03-0a6d-4e46-b191-efe7b86a5b7d {
  margin-left: auto;
margin-right: auto;
padding-top: 30px;
padding-left: 6%;
padding-bottom: 20px;
padding-right: 0%;
}

#s-a0721a03-0a6d-4e46-b191-efe7b86a5b7d .shg-proportional-font-size,
#s-a0721a03-0a6d-4e46-b191-efe7b86a5b7d .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-815762ab-9fec-41e4-a887-b87d258cb793 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 6%;
padding-bottom: 30px;
}

#s-815762ab-9fec-41e4-a887-b87d258cb793 .shg-proportional-font-size,
#s-815762ab-9fec-41e4-a887-b87d258cb793 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-d1928669-3cc5-40b1-a6da-d533937a6ce8 {
  margin-left: auto;
margin-right: auto;
padding-left: 9%;
padding-right: 9%;
background-color: rgba(199, 209, 219, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-d1928669-3cc5-40b1-a6da-d533937a6ce8 {
  display: none;
}
#s-d1928669-3cc5-40b1-a6da-d533937a6ce8, #wrap-s-d1928669-3cc5-40b1-a6da-d533937a6ce8, #wrap-content-s-d1928669-3cc5-40b1-a6da-d533937a6ce8 { display: none !important; }}@media (max-width: 767px){#s-d1928669-3cc5-40b1-a6da-d533937a6ce8 {
  display: none;
}
#s-d1928669-3cc5-40b1-a6da-d533937a6ce8, #wrap-s-d1928669-3cc5-40b1-a6da-d533937a6ce8, #wrap-content-s-d1928669-3cc5-40b1-a6da-d533937a6ce8 { display: none !important; }}
@media (min-width: 0px) {
[id="s-d1928669-3cc5-40b1-a6da-d533937a6ce8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d1928669-3cc5-40b1-a6da-d533937a6ce8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-d1928669-3cc5-40b1-a6da-d533937a6ce8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-d1928669-3cc5-40b1-a6da-d533937a6ce8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

}

#s-081738bc-9091-4f4e-815f-3c016d4989fd {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}

#s-081738bc-9091-4f4e-815f-3c016d4989fd {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-081738bc-9091-4f4e-815f-3c016d4989fd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-081738bc-9091-4f4e-815f-3c016d4989fd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-081738bc-9091-4f4e-815f-3c016d4989fd .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-081738bc-9091-4f4e-815f-3c016d4989fd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-081738bc-9091-4f4e-815f-3c016d4989fd img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-081738bc-9091-4f4e-815f-3c016d4989fd .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-081738bc-9091-4f4e-815f-3c016d4989fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-081738bc-9091-4f4e-815f-3c016d4989fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-081738bc-9091-4f4e-815f-3c016d4989fd.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-081738bc-9091-4f4e-815f-3c016d4989fd {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-081738bc-9091-4f4e-815f-3c016d4989fd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-081738bc-9091-4f4e-815f-3c016d4989fd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-081738bc-9091-4f4e-815f-3c016d4989fd .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-081738bc-9091-4f4e-815f-3c016d4989fd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-081738bc-9091-4f4e-815f-3c016d4989fd img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-081738bc-9091-4f4e-815f-3c016d4989fd .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-081738bc-9091-4f4e-815f-3c016d4989fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-081738bc-9091-4f4e-815f-3c016d4989fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-081738bc-9091-4f4e-815f-3c016d4989fd.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-081738bc-9091-4f4e-815f-3c016d4989fd {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-081738bc-9091-4f4e-815f-3c016d4989fd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-081738bc-9091-4f4e-815f-3c016d4989fd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-081738bc-9091-4f4e-815f-3c016d4989fd .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-081738bc-9091-4f4e-815f-3c016d4989fd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-081738bc-9091-4f4e-815f-3c016d4989fd img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-081738bc-9091-4f4e-815f-3c016d4989fd .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-081738bc-9091-4f4e-815f-3c016d4989fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-081738bc-9091-4f4e-815f-3c016d4989fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-081738bc-9091-4f4e-815f-3c016d4989fd.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-081738bc-9091-4f4e-815f-3c016d4989fd {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-081738bc-9091-4f4e-815f-3c016d4989fd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-081738bc-9091-4f4e-815f-3c016d4989fd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-081738bc-9091-4f4e-815f-3c016d4989fd .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-081738bc-9091-4f4e-815f-3c016d4989fd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-081738bc-9091-4f4e-815f-3c016d4989fd img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-081738bc-9091-4f4e-815f-3c016d4989fd .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-081738bc-9091-4f4e-815f-3c016d4989fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-081738bc-9091-4f4e-815f-3c016d4989fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-081738bc-9091-4f4e-815f-3c016d4989fd.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-081738bc-9091-4f4e-815f-3c016d4989fd {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-081738bc-9091-4f4e-815f-3c016d4989fd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-081738bc-9091-4f4e-815f-3c016d4989fd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-081738bc-9091-4f4e-815f-3c016d4989fd .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-081738bc-9091-4f4e-815f-3c016d4989fd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-081738bc-9091-4f4e-815f-3c016d4989fd img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-081738bc-9091-4f4e-815f-3c016d4989fd .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-081738bc-9091-4f4e-815f-3c016d4989fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-081738bc-9091-4f4e-815f-3c016d4989fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-081738bc-9091-4f4e-815f-3c016d4989fd.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-f9866e6f-ba2d-4489-b3d5-3c75b627c6df {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-f9866e6f-ba2d-4489-b3d5-3c75b627c6df .shg-proportional-font-size,
#s-f9866e6f-ba2d-4489-b3d5-3c75b627c6df .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-01493f7e-555b-4ae4-97bb-5e448cce7f16 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-01493f7e-555b-4ae4-97bb-5e448cce7f16 .shg-proportional-font-size,
#s-01493f7e-555b-4ae4-97bb-5e448cce7f16 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}

#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc0db8b0-9f8f-4ffe-b819-bb647322dc11.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-56d03ab5-1376-4614-a241-ddf017c090cf {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-56d03ab5-1376-4614-a241-ddf017c090cf .shg-proportional-font-size,
#s-56d03ab5-1376-4614-a241-ddf017c090cf .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-3290432a-0569-4693-810b-20755689cdcc {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-3290432a-0569-4693-810b-20755689cdcc .shg-proportional-font-size,
#s-3290432a-0569-4693-810b-20755689cdcc .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-f88cdcd6-2466-4f00-8029-0c906ebb6267 {
  margin-left: auto;
margin-right: auto;
padding-top: 40px;
padding-left: 9%;
padding-bottom: 40px;
padding-right: 9%;
background-color: rgba(199, 209, 219, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-f88cdcd6-2466-4f00-8029-0c906ebb6267 {
  display: none;
}
#s-f88cdcd6-2466-4f00-8029-0c906ebb6267, #wrap-s-f88cdcd6-2466-4f00-8029-0c906ebb6267, #wrap-content-s-f88cdcd6-2466-4f00-8029-0c906ebb6267 { display: none !important; }}@media (max-width: 767px){#s-f88cdcd6-2466-4f00-8029-0c906ebb6267 {
  display: none;
}
#s-f88cdcd6-2466-4f00-8029-0c906ebb6267, #wrap-s-f88cdcd6-2466-4f00-8029-0c906ebb6267, #wrap-content-s-f88cdcd6-2466-4f00-8029-0c906ebb6267 { display: none !important; }}
@media (min-width: 0px) {
[id="s-f88cdcd6-2466-4f00-8029-0c906ebb6267"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f88cdcd6-2466-4f00-8029-0c906ebb6267"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

@media (min-width: 992px) {
[id="s-f88cdcd6-2466-4f00-8029-0c906ebb6267"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

@media (min-width: 1200px) {
[id="s-f88cdcd6-2466-4f00-8029-0c906ebb6267"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

#s-bea65cdc-5a98-49da-b250-32219a28bc6b {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}

#s-bea65cdc-5a98-49da-b250-32219a28bc6b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bea65cdc-5a98-49da-b250-32219a28bc6b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bea65cdc-5a98-49da-b250-32219a28bc6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bea65cdc-5a98-49da-b250-32219a28bc6b .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bea65cdc-5a98-49da-b250-32219a28bc6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bea65cdc-5a98-49da-b250-32219a28bc6b img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-bea65cdc-5a98-49da-b250-32219a28bc6b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bea65cdc-5a98-49da-b250-32219a28bc6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bea65cdc-5a98-49da-b250-32219a28bc6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bea65cdc-5a98-49da-b250-32219a28bc6b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-bea65cdc-5a98-49da-b250-32219a28bc6b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bea65cdc-5a98-49da-b250-32219a28bc6b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bea65cdc-5a98-49da-b250-32219a28bc6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bea65cdc-5a98-49da-b250-32219a28bc6b .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bea65cdc-5a98-49da-b250-32219a28bc6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bea65cdc-5a98-49da-b250-32219a28bc6b img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-bea65cdc-5a98-49da-b250-32219a28bc6b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bea65cdc-5a98-49da-b250-32219a28bc6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bea65cdc-5a98-49da-b250-32219a28bc6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bea65cdc-5a98-49da-b250-32219a28bc6b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-bea65cdc-5a98-49da-b250-32219a28bc6b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bea65cdc-5a98-49da-b250-32219a28bc6b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bea65cdc-5a98-49da-b250-32219a28bc6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bea65cdc-5a98-49da-b250-32219a28bc6b .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bea65cdc-5a98-49da-b250-32219a28bc6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bea65cdc-5a98-49da-b250-32219a28bc6b img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-bea65cdc-5a98-49da-b250-32219a28bc6b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bea65cdc-5a98-49da-b250-32219a28bc6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bea65cdc-5a98-49da-b250-32219a28bc6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bea65cdc-5a98-49da-b250-32219a28bc6b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-bea65cdc-5a98-49da-b250-32219a28bc6b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bea65cdc-5a98-49da-b250-32219a28bc6b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bea65cdc-5a98-49da-b250-32219a28bc6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bea65cdc-5a98-49da-b250-32219a28bc6b .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bea65cdc-5a98-49da-b250-32219a28bc6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bea65cdc-5a98-49da-b250-32219a28bc6b img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-bea65cdc-5a98-49da-b250-32219a28bc6b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bea65cdc-5a98-49da-b250-32219a28bc6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bea65cdc-5a98-49da-b250-32219a28bc6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bea65cdc-5a98-49da-b250-32219a28bc6b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-bea65cdc-5a98-49da-b250-32219a28bc6b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bea65cdc-5a98-49da-b250-32219a28bc6b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bea65cdc-5a98-49da-b250-32219a28bc6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bea65cdc-5a98-49da-b250-32219a28bc6b .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-bea65cdc-5a98-49da-b250-32219a28bc6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-bea65cdc-5a98-49da-b250-32219a28bc6b img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-bea65cdc-5a98-49da-b250-32219a28bc6b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bea65cdc-5a98-49da-b250-32219a28bc6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bea65cdc-5a98-49da-b250-32219a28bc6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bea65cdc-5a98-49da-b250-32219a28bc6b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-454e9537-2838-41c3-a986-829b33c75ed9 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-454e9537-2838-41c3-a986-829b33c75ed9 .shg-proportional-font-size,
#s-454e9537-2838-41c3-a986-829b33c75ed9 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-d0936e01-1d33-4ea1-a4e6-ba1d711fc54f {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-d0936e01-1d33-4ea1-a4e6-ba1d711fc54f .shg-proportional-font-size,
#s-d0936e01-1d33-4ea1-a4e6-ba1d711fc54f .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-de678259-3f91-462d-a984-1b1908e56bf0 {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}

#s-de678259-3f91-462d-a984-1b1908e56bf0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-de678259-3f91-462d-a984-1b1908e56bf0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-de678259-3f91-462d-a984-1b1908e56bf0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-de678259-3f91-462d-a984-1b1908e56bf0 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-de678259-3f91-462d-a984-1b1908e56bf0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-de678259-3f91-462d-a984-1b1908e56bf0 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-de678259-3f91-462d-a984-1b1908e56bf0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-de678259-3f91-462d-a984-1b1908e56bf0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de678259-3f91-462d-a984-1b1908e56bf0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de678259-3f91-462d-a984-1b1908e56bf0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-de678259-3f91-462d-a984-1b1908e56bf0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-de678259-3f91-462d-a984-1b1908e56bf0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-de678259-3f91-462d-a984-1b1908e56bf0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-de678259-3f91-462d-a984-1b1908e56bf0 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-de678259-3f91-462d-a984-1b1908e56bf0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-de678259-3f91-462d-a984-1b1908e56bf0 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-de678259-3f91-462d-a984-1b1908e56bf0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-de678259-3f91-462d-a984-1b1908e56bf0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de678259-3f91-462d-a984-1b1908e56bf0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de678259-3f91-462d-a984-1b1908e56bf0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-de678259-3f91-462d-a984-1b1908e56bf0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-de678259-3f91-462d-a984-1b1908e56bf0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-de678259-3f91-462d-a984-1b1908e56bf0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-de678259-3f91-462d-a984-1b1908e56bf0 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-de678259-3f91-462d-a984-1b1908e56bf0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-de678259-3f91-462d-a984-1b1908e56bf0 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-de678259-3f91-462d-a984-1b1908e56bf0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-de678259-3f91-462d-a984-1b1908e56bf0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de678259-3f91-462d-a984-1b1908e56bf0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de678259-3f91-462d-a984-1b1908e56bf0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-de678259-3f91-462d-a984-1b1908e56bf0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-de678259-3f91-462d-a984-1b1908e56bf0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-de678259-3f91-462d-a984-1b1908e56bf0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-de678259-3f91-462d-a984-1b1908e56bf0 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-de678259-3f91-462d-a984-1b1908e56bf0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-de678259-3f91-462d-a984-1b1908e56bf0 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-de678259-3f91-462d-a984-1b1908e56bf0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-de678259-3f91-462d-a984-1b1908e56bf0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de678259-3f91-462d-a984-1b1908e56bf0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de678259-3f91-462d-a984-1b1908e56bf0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-de678259-3f91-462d-a984-1b1908e56bf0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-de678259-3f91-462d-a984-1b1908e56bf0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-de678259-3f91-462d-a984-1b1908e56bf0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-de678259-3f91-462d-a984-1b1908e56bf0 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-de678259-3f91-462d-a984-1b1908e56bf0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-de678259-3f91-462d-a984-1b1908e56bf0 img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-de678259-3f91-462d-a984-1b1908e56bf0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-de678259-3f91-462d-a984-1b1908e56bf0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de678259-3f91-462d-a984-1b1908e56bf0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de678259-3f91-462d-a984-1b1908e56bf0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-0328cd71-fdbe-48b6-9694-f6a13572dd5e {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-0328cd71-fdbe-48b6-9694-f6a13572dd5e .shg-proportional-font-size,
#s-0328cd71-fdbe-48b6-9694-f6a13572dd5e .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-8ee83c78-8baa-48a5-b436-a94828316386 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-8ee83c78-8baa-48a5-b436-a94828316386 .shg-proportional-font-size,
#s-8ee83c78-8baa-48a5-b436-a94828316386 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a {
  margin-left: auto;
margin-right: auto;
max-width: 1639px;
text-align: center;
}

#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a img.shogun-image {
  width: 100%;
  
  
  max-width: 1639px;

      
    max-width: 1639px;

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




.s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-01e67a40-24f4-4c4e-93ee-ffd666e7e20a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-c2683c05-c60f-45c1-8dd0-bb2fde6dac0a {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-c2683c05-c60f-45c1-8dd0-bb2fde6dac0a .shg-proportional-font-size,
#s-c2683c05-c60f-45c1-8dd0-bb2fde6dac0a .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-1aba49e8-e763-46a6-af9f-b827f6ee2fcc {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-1aba49e8-e763-46a6-af9f-b827f6ee2fcc .shg-proportional-font-size,
#s-1aba49e8-e763-46a6-af9f-b827f6ee2fcc .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-9453cca8-2086-49bf-9d22-dd2fb94b5e92 {
  margin-left: auto;
margin-right: auto;
padding-top: 60px;
padding-bottom: 60px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-9453cca8-2086-49bf-9d22-dd2fb94b5e92 {
  display: none;
}
#s-9453cca8-2086-49bf-9d22-dd2fb94b5e92, #wrap-s-9453cca8-2086-49bf-9d22-dd2fb94b5e92, #wrap-content-s-9453cca8-2086-49bf-9d22-dd2fb94b5e92 { display: none !important; }}@media (max-width: 767px){#s-9453cca8-2086-49bf-9d22-dd2fb94b5e92 {
  display: none;
}
#s-9453cca8-2086-49bf-9d22-dd2fb94b5e92, #wrap-s-9453cca8-2086-49bf-9d22-dd2fb94b5e92, #wrap-content-s-9453cca8-2086-49bf-9d22-dd2fb94b5e92 { display: none !important; }}







#s-9453cca8-2086-49bf-9d22-dd2fb94b5e92 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9453cca8-2086-49bf-9d22-dd2fb94b5e92.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1724d6bc-0f68-48e9-8808-c5845c352d2c {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px){#s-1724d6bc-0f68-48e9-8808-c5845c352d2c {
  padding-left: 0%;
padding-right: 0%;
}
}
@media (min-width: 0px) {
[id="s-1724d6bc-0f68-48e9-8808-c5845c352d2c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1724d6bc-0f68-48e9-8808-c5845c352d2c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1724d6bc-0f68-48e9-8808-c5845c352d2c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1724d6bc-0f68-48e9-8808-c5845c352d2c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a8007e89-01a7-4b43-a5d1-84cc4e59b832.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a8007e89-01a7-4b43-a5d1-84cc4e59b832.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a8007e89-01a7-4b43-a5d1-84cc4e59b832.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a8007e89-01a7-4b43-a5d1-84cc4e59b832.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a8007e89-01a7-4b43-a5d1-84cc4e59b832.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a8007e89-01a7-4b43-a5d1-84cc4e59b832.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a8007e89-01a7-4b43-a5d1-84cc4e59b832.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a8007e89-01a7-4b43-a5d1-84cc4e59b832.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-a8007e89-01a7-4b43-a5d1-84cc4e59b832 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a8007e89-01a7-4b43-a5d1-84cc4e59b832.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a8007e89-01a7-4b43-a5d1-84cc4e59b832.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8007e89-01a7-4b43-a5d1-84cc4e59b832.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-43245948-9d25-45b6-9b29-5728f8bd81f3 {
  margin-left: 4%;
margin-right: 0%;
max-width: 1080px;
text-align: center;
}

#s-43245948-9d25-45b6-9b29-5728f8bd81f3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-43245948-9d25-45b6-9b29-5728f8bd81f3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-43245948-9d25-45b6-9b29-5728f8bd81f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-43245948-9d25-45b6-9b29-5728f8bd81f3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-43245948-9d25-45b6-9b29-5728f8bd81f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-43245948-9d25-45b6-9b29-5728f8bd81f3 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-43245948-9d25-45b6-9b29-5728f8bd81f3 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-43245948-9d25-45b6-9b29-5728f8bd81f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43245948-9d25-45b6-9b29-5728f8bd81f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43245948-9d25-45b6-9b29-5728f8bd81f3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-43245948-9d25-45b6-9b29-5728f8bd81f3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-43245948-9d25-45b6-9b29-5728f8bd81f3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-43245948-9d25-45b6-9b29-5728f8bd81f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-43245948-9d25-45b6-9b29-5728f8bd81f3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-43245948-9d25-45b6-9b29-5728f8bd81f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-43245948-9d25-45b6-9b29-5728f8bd81f3 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-43245948-9d25-45b6-9b29-5728f8bd81f3 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-43245948-9d25-45b6-9b29-5728f8bd81f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43245948-9d25-45b6-9b29-5728f8bd81f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43245948-9d25-45b6-9b29-5728f8bd81f3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-43245948-9d25-45b6-9b29-5728f8bd81f3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-43245948-9d25-45b6-9b29-5728f8bd81f3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-43245948-9d25-45b6-9b29-5728f8bd81f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-43245948-9d25-45b6-9b29-5728f8bd81f3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-43245948-9d25-45b6-9b29-5728f8bd81f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-43245948-9d25-45b6-9b29-5728f8bd81f3 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-43245948-9d25-45b6-9b29-5728f8bd81f3 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-43245948-9d25-45b6-9b29-5728f8bd81f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43245948-9d25-45b6-9b29-5728f8bd81f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43245948-9d25-45b6-9b29-5728f8bd81f3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-43245948-9d25-45b6-9b29-5728f8bd81f3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-43245948-9d25-45b6-9b29-5728f8bd81f3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-43245948-9d25-45b6-9b29-5728f8bd81f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-43245948-9d25-45b6-9b29-5728f8bd81f3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-43245948-9d25-45b6-9b29-5728f8bd81f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-43245948-9d25-45b6-9b29-5728f8bd81f3 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-43245948-9d25-45b6-9b29-5728f8bd81f3 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-43245948-9d25-45b6-9b29-5728f8bd81f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43245948-9d25-45b6-9b29-5728f8bd81f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43245948-9d25-45b6-9b29-5728f8bd81f3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-43245948-9d25-45b6-9b29-5728f8bd81f3 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-43245948-9d25-45b6-9b29-5728f8bd81f3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-43245948-9d25-45b6-9b29-5728f8bd81f3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-43245948-9d25-45b6-9b29-5728f8bd81f3 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-43245948-9d25-45b6-9b29-5728f8bd81f3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-43245948-9d25-45b6-9b29-5728f8bd81f3 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-43245948-9d25-45b6-9b29-5728f8bd81f3 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-43245948-9d25-45b6-9b29-5728f8bd81f3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43245948-9d25-45b6-9b29-5728f8bd81f3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43245948-9d25-45b6-9b29-5728f8bd81f3.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-14cf59f5-b4ab-4092-87ac-32117f713f47 {
  margin-left: auto;
margin-right: auto;
max-width: 3051px;
text-align: center;
}

#s-14cf59f5-b4ab-4092-87ac-32117f713f47 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-14cf59f5-b4ab-4092-87ac-32117f713f47-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-14cf59f5-b4ab-4092-87ac-32117f713f47 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-14cf59f5-b4ab-4092-87ac-32117f713f47 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-14cf59f5-b4ab-4092-87ac-32117f713f47 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-14cf59f5-b4ab-4092-87ac-32117f713f47 img.shogun-image {
  width: 100%;
  
  
  max-width: 3051px;

      
    max-width: 3051px;

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




.s-14cf59f5-b4ab-4092-87ac-32117f713f47 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-14cf59f5-b4ab-4092-87ac-32117f713f47.shg-align-container {
  display: flex;
  justify-content: center
}

.s-14cf59f5-b4ab-4092-87ac-32117f713f47.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-14cf59f5-b4ab-4092-87ac-32117f713f47.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-14cf59f5-b4ab-4092-87ac-32117f713f47 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-14cf59f5-b4ab-4092-87ac-32117f713f47-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-14cf59f5-b4ab-4092-87ac-32117f713f47 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-14cf59f5-b4ab-4092-87ac-32117f713f47 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-14cf59f5-b4ab-4092-87ac-32117f713f47 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-14cf59f5-b4ab-4092-87ac-32117f713f47 img.shogun-image {
  width: 100%;
  
  
  max-width: 3051px;

      
    max-width: 3051px;

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




.s-14cf59f5-b4ab-4092-87ac-32117f713f47 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-14cf59f5-b4ab-4092-87ac-32117f713f47.shg-align-container {
  display: flex;
  justify-content: center
}

.s-14cf59f5-b4ab-4092-87ac-32117f713f47.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-14cf59f5-b4ab-4092-87ac-32117f713f47.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-14cf59f5-b4ab-4092-87ac-32117f713f47 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-14cf59f5-b4ab-4092-87ac-32117f713f47-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-14cf59f5-b4ab-4092-87ac-32117f713f47 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-14cf59f5-b4ab-4092-87ac-32117f713f47 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-14cf59f5-b4ab-4092-87ac-32117f713f47 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-14cf59f5-b4ab-4092-87ac-32117f713f47 img.shogun-image {
  width: 100%;
  
  
  max-width: 3051px;

      
    max-width: 3051px;

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




.s-14cf59f5-b4ab-4092-87ac-32117f713f47 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-14cf59f5-b4ab-4092-87ac-32117f713f47.shg-align-container {
  display: flex;
  justify-content: center
}

.s-14cf59f5-b4ab-4092-87ac-32117f713f47.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-14cf59f5-b4ab-4092-87ac-32117f713f47.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-14cf59f5-b4ab-4092-87ac-32117f713f47 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-14cf59f5-b4ab-4092-87ac-32117f713f47-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-14cf59f5-b4ab-4092-87ac-32117f713f47 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-14cf59f5-b4ab-4092-87ac-32117f713f47 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-14cf59f5-b4ab-4092-87ac-32117f713f47 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-14cf59f5-b4ab-4092-87ac-32117f713f47 img.shogun-image {
  width: 100%;
  
  
  max-width: 3051px;

      
    max-width: 3051px;

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




.s-14cf59f5-b4ab-4092-87ac-32117f713f47 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-14cf59f5-b4ab-4092-87ac-32117f713f47.shg-align-container {
  display: flex;
  justify-content: center
}

.s-14cf59f5-b4ab-4092-87ac-32117f713f47.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-14cf59f5-b4ab-4092-87ac-32117f713f47.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-14cf59f5-b4ab-4092-87ac-32117f713f47 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-14cf59f5-b4ab-4092-87ac-32117f713f47-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-14cf59f5-b4ab-4092-87ac-32117f713f47 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-14cf59f5-b4ab-4092-87ac-32117f713f47 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-14cf59f5-b4ab-4092-87ac-32117f713f47 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-14cf59f5-b4ab-4092-87ac-32117f713f47 img.shogun-image {
  width: 100%;
  
  
  max-width: 3051px;

      
    max-width: 3051px;

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




.s-14cf59f5-b4ab-4092-87ac-32117f713f47 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-14cf59f5-b4ab-4092-87ac-32117f713f47.shg-align-container {
  display: flex;
  justify-content: center
}

.s-14cf59f5-b4ab-4092-87ac-32117f713f47.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-14cf59f5-b4ab-4092-87ac-32117f713f47.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-7aa826fc-bf6f-4466-bd3a-aa8f64042e46 {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-right: 7%;
}

#s-7aa826fc-bf6f-4466-bd3a-aa8f64042e46 .shg-proportional-font-size,
#s-7aa826fc-bf6f-4466-bd3a-aa8f64042e46 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-5c00e598-37c8-45eb-9503-c87391a3918a {
  margin-left: auto;
margin-right: auto;
max-width: 3026px;
text-align: center;
}

#s-5c00e598-37c8-45eb-9503-c87391a3918a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5c00e598-37c8-45eb-9503-c87391a3918a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-5c00e598-37c8-45eb-9503-c87391a3918a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5c00e598-37c8-45eb-9503-c87391a3918a .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 50%;
  padding-right: 4%;
  padding-top: 60px;
  padding-bottom: 8px;
}


.shg-image-content-margin-container-s-5c00e598-37c8-45eb-9503-c87391a3918a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5c00e598-37c8-45eb-9503-c87391a3918a img.shogun-image {
  width: 100%;
  
  
  max-width: 3026px;

      
    max-width: 3026px;

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




.s-5c00e598-37c8-45eb-9503-c87391a3918a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5c00e598-37c8-45eb-9503-c87391a3918a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c00e598-37c8-45eb-9503-c87391a3918a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c00e598-37c8-45eb-9503-c87391a3918a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-5c00e598-37c8-45eb-9503-c87391a3918a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5c00e598-37c8-45eb-9503-c87391a3918a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-5c00e598-37c8-45eb-9503-c87391a3918a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5c00e598-37c8-45eb-9503-c87391a3918a .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-5c00e598-37c8-45eb-9503-c87391a3918a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5c00e598-37c8-45eb-9503-c87391a3918a img.shogun-image {
  width: 100%;
  
  
  max-width: 3026px;

      
    max-width: 3026px;

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




.s-5c00e598-37c8-45eb-9503-c87391a3918a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5c00e598-37c8-45eb-9503-c87391a3918a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c00e598-37c8-45eb-9503-c87391a3918a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c00e598-37c8-45eb-9503-c87391a3918a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-5c00e598-37c8-45eb-9503-c87391a3918a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5c00e598-37c8-45eb-9503-c87391a3918a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-5c00e598-37c8-45eb-9503-c87391a3918a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5c00e598-37c8-45eb-9503-c87391a3918a .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-5c00e598-37c8-45eb-9503-c87391a3918a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5c00e598-37c8-45eb-9503-c87391a3918a img.shogun-image {
  width: 100%;
  
  
  max-width: 3026px;

      
    max-width: 3026px;

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




.s-5c00e598-37c8-45eb-9503-c87391a3918a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5c00e598-37c8-45eb-9503-c87391a3918a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c00e598-37c8-45eb-9503-c87391a3918a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c00e598-37c8-45eb-9503-c87391a3918a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-5c00e598-37c8-45eb-9503-c87391a3918a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5c00e598-37c8-45eb-9503-c87391a3918a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-5c00e598-37c8-45eb-9503-c87391a3918a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5c00e598-37c8-45eb-9503-c87391a3918a .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-5c00e598-37c8-45eb-9503-c87391a3918a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5c00e598-37c8-45eb-9503-c87391a3918a img.shogun-image {
  width: 100%;
  
  
  max-width: 3026px;

      
    max-width: 3026px;

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




.s-5c00e598-37c8-45eb-9503-c87391a3918a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5c00e598-37c8-45eb-9503-c87391a3918a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c00e598-37c8-45eb-9503-c87391a3918a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c00e598-37c8-45eb-9503-c87391a3918a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-5c00e598-37c8-45eb-9503-c87391a3918a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5c00e598-37c8-45eb-9503-c87391a3918a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-5c00e598-37c8-45eb-9503-c87391a3918a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5c00e598-37c8-45eb-9503-c87391a3918a .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-5c00e598-37c8-45eb-9503-c87391a3918a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-5c00e598-37c8-45eb-9503-c87391a3918a img.shogun-image {
  width: 100%;
  
  
  max-width: 3026px;

      
    max-width: 3026px;

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




.s-5c00e598-37c8-45eb-9503-c87391a3918a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5c00e598-37c8-45eb-9503-c87391a3918a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5c00e598-37c8-45eb-9503-c87391a3918a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5c00e598-37c8-45eb-9503-c87391a3918a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-39ce114d-6ce8-42ec-9f74-799ba557db8f {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-right: 7%;
}

#s-39ce114d-6ce8-42ec-9f74-799ba557db8f .shg-proportional-font-size,
#s-39ce114d-6ce8-42ec-9f74-799ba557db8f .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-f0f9a9ed-216e-4cf3-b0e6-9ac5bed20c84 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-bottom: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-f0f9a9ed-216e-4cf3-b0e6-9ac5bed20c84 {
  padding-bottom: 60px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f0f9a9ed-216e-4cf3-b0e6-9ac5bed20c84 {
  display: none;
}
#s-f0f9a9ed-216e-4cf3-b0e6-9ac5bed20c84, #wrap-s-f0f9a9ed-216e-4cf3-b0e6-9ac5bed20c84, #wrap-content-s-f0f9a9ed-216e-4cf3-b0e6-9ac5bed20c84 { display: none !important; }}@media (max-width: 767px){#s-f0f9a9ed-216e-4cf3-b0e6-9ac5bed20c84 {
  display: none;
}
#s-f0f9a9ed-216e-4cf3-b0e6-9ac5bed20c84, #wrap-s-f0f9a9ed-216e-4cf3-b0e6-9ac5bed20c84, #wrap-content-s-f0f9a9ed-216e-4cf3-b0e6-9ac5bed20c84 { display: none !important; }}







#s-f0f9a9ed-216e-4cf3-b0e6-9ac5bed20c84 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f0f9a9ed-216e-4cf3-b0e6-9ac5bed20c84.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-21d53fce-96bd-40dc-b018-e99d926e79a7 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px){#s-21d53fce-96bd-40dc-b018-e99d926e79a7 {
  padding-left: 0%;
padding-right: 0%;
}
}
@media (min-width: 0px) {
[id="s-21d53fce-96bd-40dc-b018-e99d926e79a7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-21d53fce-96bd-40dc-b018-e99d926e79a7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-21d53fce-96bd-40dc-b018-e99d926e79a7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-21d53fce-96bd-40dc-b018-e99d926e79a7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 {
  margin-left: 4%;
margin-right: 0%;
max-width: 1080px;
text-align: center;
}

#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8 .shogun-image-content-v3 {
  
    justify-content: center;
  
}

.s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80e6707c-a7c6-41ea-ae9f-d6089f200aa8.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 {
  margin-left: auto;
margin-right: auto;
max-width: 2590px;
text-align: center;
}

#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  padding-left: 4%;
  padding-right: 50%;
  
  padding-bottom: 8px;
}


.shg-image-content-margin-container-s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 img.shogun-image {
  width: 100%;
  
  
  max-width: 2590px;

      
    max-width: 2590px;

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




.s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 img.shogun-image {
  width: 100%;
  
  
  max-width: 2590px;

      
    max-width: 2590px;

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




.s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 img.shogun-image {
  width: 100%;
  
  
  max-width: 2590px;

      
    max-width: 2590px;

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




.s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 img.shogun-image {
  width: 100%;
  
  
  max-width: 2590px;

      
    max-width: 2590px;

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




.s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 img.shogun-image {
  width: 100%;
  
  
  max-width: 2590px;

      
    max-width: 2590px;

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




.s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2dbdff74-4e9a-4973-a7d4-ed3525eb4982.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-00a90155-1aba-49c0-b7ac-38f50a14217f {
  margin-left: auto;
margin-right: auto;
padding-left: 7%;
padding-right: 0%;
}

#s-00a90155-1aba-49c0-b7ac-38f50a14217f .shg-proportional-font-size,
#s-00a90155-1aba-49c0-b7ac-38f50a14217f .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-80b0a4d1-5116-43b4-8faa-4376c7c94683 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-80b0a4d1-5116-43b4-8faa-4376c7c94683 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-80b0a4d1-5116-43b4-8faa-4376c7c94683-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-80b0a4d1-5116-43b4-8faa-4376c7c94683 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-80b0a4d1-5116-43b4-8faa-4376c7c94683 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-80b0a4d1-5116-43b4-8faa-4376c7c94683 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-80b0a4d1-5116-43b4-8faa-4376c7c94683 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-80b0a4d1-5116-43b4-8faa-4376c7c94683 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-80b0a4d1-5116-43b4-8faa-4376c7c94683.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80b0a4d1-5116-43b4-8faa-4376c7c94683.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80b0a4d1-5116-43b4-8faa-4376c7c94683.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-80b0a4d1-5116-43b4-8faa-4376c7c94683 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-80b0a4d1-5116-43b4-8faa-4376c7c94683-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-80b0a4d1-5116-43b4-8faa-4376c7c94683 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-80b0a4d1-5116-43b4-8faa-4376c7c94683 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-80b0a4d1-5116-43b4-8faa-4376c7c94683 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-80b0a4d1-5116-43b4-8faa-4376c7c94683 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-80b0a4d1-5116-43b4-8faa-4376c7c94683 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-80b0a4d1-5116-43b4-8faa-4376c7c94683.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80b0a4d1-5116-43b4-8faa-4376c7c94683.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80b0a4d1-5116-43b4-8faa-4376c7c94683.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-80b0a4d1-5116-43b4-8faa-4376c7c94683 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-80b0a4d1-5116-43b4-8faa-4376c7c94683-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-80b0a4d1-5116-43b4-8faa-4376c7c94683 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-80b0a4d1-5116-43b4-8faa-4376c7c94683 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-80b0a4d1-5116-43b4-8faa-4376c7c94683 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-80b0a4d1-5116-43b4-8faa-4376c7c94683 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-80b0a4d1-5116-43b4-8faa-4376c7c94683 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-80b0a4d1-5116-43b4-8faa-4376c7c94683.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80b0a4d1-5116-43b4-8faa-4376c7c94683.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80b0a4d1-5116-43b4-8faa-4376c7c94683.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-80b0a4d1-5116-43b4-8faa-4376c7c94683 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-80b0a4d1-5116-43b4-8faa-4376c7c94683-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-80b0a4d1-5116-43b4-8faa-4376c7c94683 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-80b0a4d1-5116-43b4-8faa-4376c7c94683 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-80b0a4d1-5116-43b4-8faa-4376c7c94683 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-80b0a4d1-5116-43b4-8faa-4376c7c94683 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-80b0a4d1-5116-43b4-8faa-4376c7c94683 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-80b0a4d1-5116-43b4-8faa-4376c7c94683.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80b0a4d1-5116-43b4-8faa-4376c7c94683.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80b0a4d1-5116-43b4-8faa-4376c7c94683.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-80b0a4d1-5116-43b4-8faa-4376c7c94683 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-80b0a4d1-5116-43b4-8faa-4376c7c94683-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-80b0a4d1-5116-43b4-8faa-4376c7c94683 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-80b0a4d1-5116-43b4-8faa-4376c7c94683 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-80b0a4d1-5116-43b4-8faa-4376c7c94683 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-80b0a4d1-5116-43b4-8faa-4376c7c94683 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-80b0a4d1-5116-43b4-8faa-4376c7c94683 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-80b0a4d1-5116-43b4-8faa-4376c7c94683.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80b0a4d1-5116-43b4-8faa-4376c7c94683.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80b0a4d1-5116-43b4-8faa-4376c7c94683.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-200acb0b-6655-405f-a128-5c7d804c60fb {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(199, 209, 219, 1);
}
@media (min-width: 1200px){#s-200acb0b-6655-405f-a128-5c7d804c60fb {
  padding-top: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-200acb0b-6655-405f-a128-5c7d804c60fb {
  display: none;
}
#s-200acb0b-6655-405f-a128-5c7d804c60fb, #wrap-s-200acb0b-6655-405f-a128-5c7d804c60fb, #wrap-content-s-200acb0b-6655-405f-a128-5c7d804c60fb { display: none !important; }}@media (max-width: 767px){#s-200acb0b-6655-405f-a128-5c7d804c60fb {
  display: none;
}
#s-200acb0b-6655-405f-a128-5c7d804c60fb, #wrap-s-200acb0b-6655-405f-a128-5c7d804c60fb, #wrap-content-s-200acb0b-6655-405f-a128-5c7d804c60fb { display: none !important; }}







#s-200acb0b-6655-405f-a128-5c7d804c60fb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-200acb0b-6655-405f-a128-5c7d804c60fb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-aa0dbaf7-a687-4b60-a875-f9069191f785 {
  margin-left: auto;
margin-right: auto;
padding-top: 30px;
padding-left: 6%;
padding-bottom: 20px;
padding-right: 0%;
}

#s-aa0dbaf7-a687-4b60-a875-f9069191f785 .shg-proportional-font-size,
#s-aa0dbaf7-a687-4b60-a875-f9069191f785 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-dc57ba42-beac-444d-8e0e-9782458779c8 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 6%;
padding-bottom: 30px;
}

#s-dc57ba42-beac-444d-8e0e-9782458779c8 .shg-proportional-font-size,
#s-dc57ba42-beac-444d-8e0e-9782458779c8 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-04236929-0367-4384-979c-58fb140761ff {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(199, 209, 219, 1);
}








#s-04236929-0367-4384-979c-58fb140761ff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-04236929-0367-4384-979c-58fb140761ff.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

#s-06228380-ce5c-4ea9-a1ac-242ad75d5caa {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-06228380-ce5c-4ea9-a1ac-242ad75d5caa {
  padding-left: 3%;
padding-bottom: 30px;
padding-right: 3%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-06228380-ce5c-4ea9-a1ac-242ad75d5caa {
  padding-left: 4%;
padding-right: 4%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-06228380-ce5c-4ea9-a1ac-242ad75d5caa {
  display: none;
}
#s-06228380-ce5c-4ea9-a1ac-242ad75d5caa, #wrap-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa, #wrap-content-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa { display: none !important; }}@media (max-width: 767px){#s-06228380-ce5c-4ea9-a1ac-242ad75d5caa {
  display: none;
}
#s-06228380-ce5c-4ea9-a1ac-242ad75d5caa, #wrap-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa, #wrap-content-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa { display: none !important; }}
/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa {
  --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-06228380-ce5c-4ea9-a1ac-242ad75d5caa > .swiper-button-prev,
#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa > .swiper-button-next {
  
}

#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa > .swiper-button-prev svg,
#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa .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-06228380-ce5c-4ea9-a1ac-242ad75d5caa .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}
@media (min-width: 1200px){/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa {
  --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;
  
    --swiper-pagination-bottom: 14px !important;
    padding: 0 !important;
  
}

#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa > .swiper-button-prev,
#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa > .swiper-button-next {
  
    height: 100% !important;
  
}

#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa > .swiper-button-prev svg,
#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa > .swiper-button-prev {
  
    left: 2% !important;
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa > .swiper-button-next {
  
    right: 2% !important;
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa .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-06228380-ce5c-4ea9-a1ac-242ad75d5caa .swiper-pagination {
  position:  absolute ;
  display: flex;
  margin-top:  0 ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}
}@media (min-width: 992px) and (max-width: 1199px){/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa {
  --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;
  
    --swiper-pagination-bottom: 14px !important;
    padding: 0 !important;
  
}

#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa > .swiper-button-prev,
#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa > .swiper-button-next {
  
    height: 100% !important;
  
}

#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa > .swiper-button-prev svg,
#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa > .swiper-button-prev {
  
    left: 2% !important;
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa > .swiper-button-next {
  
    right: 2% !important;
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-06228380-ce5c-4ea9-a1ac-242ad75d5caa .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-06228380-ce5c-4ea9-a1ac-242ad75d5caa .swiper-pagination {
  position:  absolute ;
  display: flex;
  margin-top:  0 ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}
}
#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



@media (min-width: 1200px){#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 992px) and (max-width: 1199px){#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 768px) and (max-width: 991px){#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (max-width: 767px){#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

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




.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b37c3c6b-54b4-4d66-8c8c-bdb00d9850ff .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}
#s-5d6c5981-971b-4dc0-b0b0-e9e153817740 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-5d6c5981-971b-4dc0-b0b0-e9e153817740 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5d6c5981-971b-4dc0-b0b0-e9e153817740-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-5d6c5981-971b-4dc0-b0b0-e9e153817740 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-5d6c5981-971b-4dc0-b0b0-e9e153817740 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-5d6c5981-971b-4dc0-b0b0-e9e153817740 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5d6c5981-971b-4dc0-b0b0-e9e153817740.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d6c5981-971b-4dc0-b0b0-e9e153817740.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d6c5981-971b-4dc0-b0b0-e9e153817740.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



@media (min-width: 1200px){#s-5d6c5981-971b-4dc0-b0b0-e9e153817740 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5d6c5981-971b-4dc0-b0b0-e9e153817740-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-5d6c5981-971b-4dc0-b0b0-e9e153817740 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-5d6c5981-971b-4dc0-b0b0-e9e153817740 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-5d6c5981-971b-4dc0-b0b0-e9e153817740 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5d6c5981-971b-4dc0-b0b0-e9e153817740.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d6c5981-971b-4dc0-b0b0-e9e153817740.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d6c5981-971b-4dc0-b0b0-e9e153817740.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 992px) and (max-width: 1199px){#s-5d6c5981-971b-4dc0-b0b0-e9e153817740 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5d6c5981-971b-4dc0-b0b0-e9e153817740-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-5d6c5981-971b-4dc0-b0b0-e9e153817740 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-5d6c5981-971b-4dc0-b0b0-e9e153817740 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-5d6c5981-971b-4dc0-b0b0-e9e153817740 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5d6c5981-971b-4dc0-b0b0-e9e153817740.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d6c5981-971b-4dc0-b0b0-e9e153817740.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d6c5981-971b-4dc0-b0b0-e9e153817740.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 768px) and (max-width: 991px){#s-5d6c5981-971b-4dc0-b0b0-e9e153817740 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5d6c5981-971b-4dc0-b0b0-e9e153817740-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-5d6c5981-971b-4dc0-b0b0-e9e153817740 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-5d6c5981-971b-4dc0-b0b0-e9e153817740 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-5d6c5981-971b-4dc0-b0b0-e9e153817740 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5d6c5981-971b-4dc0-b0b0-e9e153817740.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d6c5981-971b-4dc0-b0b0-e9e153817740.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d6c5981-971b-4dc0-b0b0-e9e153817740.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (max-width: 767px){#s-5d6c5981-971b-4dc0-b0b0-e9e153817740 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-5d6c5981-971b-4dc0-b0b0-e9e153817740-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-5d6c5981-971b-4dc0-b0b0-e9e153817740 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-5d6c5981-971b-4dc0-b0b0-e9e153817740 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-5d6c5981-971b-4dc0-b0b0-e9e153817740 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-5d6c5981-971b-4dc0-b0b0-e9e153817740.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d6c5981-971b-4dc0-b0b0-e9e153817740.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d6c5981-971b-4dc0-b0b0-e9e153817740.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-5d6c5981-971b-4dc0-b0b0-e9e153817740 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}
#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



@media (min-width: 1200px){#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 992px) and (max-width: 1199px){#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 768px) and (max-width: 991px){#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (max-width: 767px){#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bda2d7b6-60de-45f2-898d-dee7e05aaf86.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-bda2d7b6-60de-45f2-898d-dee7e05aaf86 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}
#s-1e182dc6-6959-438c-9676-059b1a0fd5f9 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-1e182dc6-6959-438c-9676-059b1a0fd5f9 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1e182dc6-6959-438c-9676-059b1a0fd5f9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-1e182dc6-6959-438c-9676-059b1a0fd5f9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-1e182dc6-6959-438c-9676-059b1a0fd5f9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-1e182dc6-6959-438c-9676-059b1a0fd5f9 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1e182dc6-6959-438c-9676-059b1a0fd5f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e182dc6-6959-438c-9676-059b1a0fd5f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e182dc6-6959-438c-9676-059b1a0fd5f9.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



@media (min-width: 1200px){#s-1e182dc6-6959-438c-9676-059b1a0fd5f9 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1e182dc6-6959-438c-9676-059b1a0fd5f9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-1e182dc6-6959-438c-9676-059b1a0fd5f9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-1e182dc6-6959-438c-9676-059b1a0fd5f9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-1e182dc6-6959-438c-9676-059b1a0fd5f9 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1e182dc6-6959-438c-9676-059b1a0fd5f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e182dc6-6959-438c-9676-059b1a0fd5f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e182dc6-6959-438c-9676-059b1a0fd5f9.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 992px) and (max-width: 1199px){#s-1e182dc6-6959-438c-9676-059b1a0fd5f9 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1e182dc6-6959-438c-9676-059b1a0fd5f9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-1e182dc6-6959-438c-9676-059b1a0fd5f9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-1e182dc6-6959-438c-9676-059b1a0fd5f9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-1e182dc6-6959-438c-9676-059b1a0fd5f9 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1e182dc6-6959-438c-9676-059b1a0fd5f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e182dc6-6959-438c-9676-059b1a0fd5f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e182dc6-6959-438c-9676-059b1a0fd5f9.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 768px) and (max-width: 991px){#s-1e182dc6-6959-438c-9676-059b1a0fd5f9 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1e182dc6-6959-438c-9676-059b1a0fd5f9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-1e182dc6-6959-438c-9676-059b1a0fd5f9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-1e182dc6-6959-438c-9676-059b1a0fd5f9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-1e182dc6-6959-438c-9676-059b1a0fd5f9 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1e182dc6-6959-438c-9676-059b1a0fd5f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e182dc6-6959-438c-9676-059b1a0fd5f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e182dc6-6959-438c-9676-059b1a0fd5f9.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (max-width: 767px){#s-1e182dc6-6959-438c-9676-059b1a0fd5f9 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1e182dc6-6959-438c-9676-059b1a0fd5f9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-1e182dc6-6959-438c-9676-059b1a0fd5f9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-1e182dc6-6959-438c-9676-059b1a0fd5f9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-1e182dc6-6959-438c-9676-059b1a0fd5f9 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1e182dc6-6959-438c-9676-059b1a0fd5f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e182dc6-6959-438c-9676-059b1a0fd5f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e182dc6-6959-438c-9676-059b1a0fd5f9.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1e182dc6-6959-438c-9676-059b1a0fd5f9 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}
#s-90a49d83-c7db-4a47-aed9-9f3482897d4b {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-90a49d83-c7db-4a47-aed9-9f3482897d4b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-90a49d83-c7db-4a47-aed9-9f3482897d4b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-90a49d83-c7db-4a47-aed9-9f3482897d4b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-90a49d83-c7db-4a47-aed9-9f3482897d4b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-90a49d83-c7db-4a47-aed9-9f3482897d4b img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-90a49d83-c7db-4a47-aed9-9f3482897d4b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90a49d83-c7db-4a47-aed9-9f3482897d4b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90a49d83-c7db-4a47-aed9-9f3482897d4b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



@media (min-width: 1200px){#s-90a49d83-c7db-4a47-aed9-9f3482897d4b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-90a49d83-c7db-4a47-aed9-9f3482897d4b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-90a49d83-c7db-4a47-aed9-9f3482897d4b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-90a49d83-c7db-4a47-aed9-9f3482897d4b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-90a49d83-c7db-4a47-aed9-9f3482897d4b img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-90a49d83-c7db-4a47-aed9-9f3482897d4b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90a49d83-c7db-4a47-aed9-9f3482897d4b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90a49d83-c7db-4a47-aed9-9f3482897d4b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 992px) and (max-width: 1199px){#s-90a49d83-c7db-4a47-aed9-9f3482897d4b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-90a49d83-c7db-4a47-aed9-9f3482897d4b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-90a49d83-c7db-4a47-aed9-9f3482897d4b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-90a49d83-c7db-4a47-aed9-9f3482897d4b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-90a49d83-c7db-4a47-aed9-9f3482897d4b img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-90a49d83-c7db-4a47-aed9-9f3482897d4b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90a49d83-c7db-4a47-aed9-9f3482897d4b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90a49d83-c7db-4a47-aed9-9f3482897d4b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 768px) and (max-width: 991px){#s-90a49d83-c7db-4a47-aed9-9f3482897d4b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-90a49d83-c7db-4a47-aed9-9f3482897d4b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-90a49d83-c7db-4a47-aed9-9f3482897d4b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-90a49d83-c7db-4a47-aed9-9f3482897d4b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-90a49d83-c7db-4a47-aed9-9f3482897d4b img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-90a49d83-c7db-4a47-aed9-9f3482897d4b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90a49d83-c7db-4a47-aed9-9f3482897d4b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90a49d83-c7db-4a47-aed9-9f3482897d4b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (max-width: 767px){#s-90a49d83-c7db-4a47-aed9-9f3482897d4b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-90a49d83-c7db-4a47-aed9-9f3482897d4b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-90a49d83-c7db-4a47-aed9-9f3482897d4b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-90a49d83-c7db-4a47-aed9-9f3482897d4b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-90a49d83-c7db-4a47-aed9-9f3482897d4b img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-90a49d83-c7db-4a47-aed9-9f3482897d4b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90a49d83-c7db-4a47-aed9-9f3482897d4b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90a49d83-c7db-4a47-aed9-9f3482897d4b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-90a49d83-c7db-4a47-aed9-9f3482897d4b .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}
#s-33e74271-66e4-45b3-a5b3-258ecc7a6268 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-33e74271-66e4-45b3-a5b3-258ecc7a6268 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-33e74271-66e4-45b3-a5b3-258ecc7a6268-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-33e74271-66e4-45b3-a5b3-258ecc7a6268 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-33e74271-66e4-45b3-a5b3-258ecc7a6268 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-33e74271-66e4-45b3-a5b3-258ecc7a6268 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-33e74271-66e4-45b3-a5b3-258ecc7a6268.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33e74271-66e4-45b3-a5b3-258ecc7a6268.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33e74271-66e4-45b3-a5b3-258ecc7a6268.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



@media (min-width: 1200px){#s-33e74271-66e4-45b3-a5b3-258ecc7a6268 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-33e74271-66e4-45b3-a5b3-258ecc7a6268-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-33e74271-66e4-45b3-a5b3-258ecc7a6268 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-33e74271-66e4-45b3-a5b3-258ecc7a6268 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-33e74271-66e4-45b3-a5b3-258ecc7a6268 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-33e74271-66e4-45b3-a5b3-258ecc7a6268.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33e74271-66e4-45b3-a5b3-258ecc7a6268.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33e74271-66e4-45b3-a5b3-258ecc7a6268.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 992px) and (max-width: 1199px){#s-33e74271-66e4-45b3-a5b3-258ecc7a6268 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-33e74271-66e4-45b3-a5b3-258ecc7a6268-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-33e74271-66e4-45b3-a5b3-258ecc7a6268 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-33e74271-66e4-45b3-a5b3-258ecc7a6268 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-33e74271-66e4-45b3-a5b3-258ecc7a6268 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-33e74271-66e4-45b3-a5b3-258ecc7a6268.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33e74271-66e4-45b3-a5b3-258ecc7a6268.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33e74271-66e4-45b3-a5b3-258ecc7a6268.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 768px) and (max-width: 991px){#s-33e74271-66e4-45b3-a5b3-258ecc7a6268 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-33e74271-66e4-45b3-a5b3-258ecc7a6268-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-33e74271-66e4-45b3-a5b3-258ecc7a6268 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-33e74271-66e4-45b3-a5b3-258ecc7a6268 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-33e74271-66e4-45b3-a5b3-258ecc7a6268 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-33e74271-66e4-45b3-a5b3-258ecc7a6268.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33e74271-66e4-45b3-a5b3-258ecc7a6268.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33e74271-66e4-45b3-a5b3-258ecc7a6268.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (max-width: 767px){#s-33e74271-66e4-45b3-a5b3-258ecc7a6268 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-33e74271-66e4-45b3-a5b3-258ecc7a6268-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-33e74271-66e4-45b3-a5b3-258ecc7a6268 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-33e74271-66e4-45b3-a5b3-258ecc7a6268 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-33e74271-66e4-45b3-a5b3-258ecc7a6268 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-33e74271-66e4-45b3-a5b3-258ecc7a6268.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33e74271-66e4-45b3-a5b3-258ecc7a6268.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33e74271-66e4-45b3-a5b3-258ecc7a6268.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-33e74271-66e4-45b3-a5b3-258ecc7a6268 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}
#s-94b9dded-305e-486b-b49c-130917b82d9f {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-94b9dded-305e-486b-b49c-130917b82d9f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-94b9dded-305e-486b-b49c-130917b82d9f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-94b9dded-305e-486b-b49c-130917b82d9f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-94b9dded-305e-486b-b49c-130917b82d9f .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-94b9dded-305e-486b-b49c-130917b82d9f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-94b9dded-305e-486b-b49c-130917b82d9f img.shogun-image {
  width: 100%;
  
  
  

      
    

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: ;
  object-position: none;
  transform: none;
  transform-origin: none;
}




.s-94b9dded-305e-486b-b49c-130917b82d9f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-94b9dded-305e-486b-b49c-130917b82d9f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94b9dded-305e-486b-b49c-130917b82d9f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94b9dded-305e-486b-b49c-130917b82d9f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-94b9dded-305e-486b-b49c-130917b82d9f .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-94b9dded-305e-486b-b49c-130917b82d9f .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-94b9dded-305e-486b-b49c-130917b82d9f .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



@media (min-width: 1200px){#s-94b9dded-305e-486b-b49c-130917b82d9f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-94b9dded-305e-486b-b49c-130917b82d9f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-94b9dded-305e-486b-b49c-130917b82d9f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-94b9dded-305e-486b-b49c-130917b82d9f .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-94b9dded-305e-486b-b49c-130917b82d9f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-94b9dded-305e-486b-b49c-130917b82d9f img.shogun-image {
  width: 100%;
  
  
  

      
    

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: ;
  object-position: none;
  transform: none;
  transform-origin: none;
}




.s-94b9dded-305e-486b-b49c-130917b82d9f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-94b9dded-305e-486b-b49c-130917b82d9f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94b9dded-305e-486b-b49c-130917b82d9f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94b9dded-305e-486b-b49c-130917b82d9f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-94b9dded-305e-486b-b49c-130917b82d9f .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-94b9dded-305e-486b-b49c-130917b82d9f .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-94b9dded-305e-486b-b49c-130917b82d9f .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 992px) and (max-width: 1199px){#s-94b9dded-305e-486b-b49c-130917b82d9f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-94b9dded-305e-486b-b49c-130917b82d9f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-94b9dded-305e-486b-b49c-130917b82d9f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-94b9dded-305e-486b-b49c-130917b82d9f .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-94b9dded-305e-486b-b49c-130917b82d9f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-94b9dded-305e-486b-b49c-130917b82d9f img.shogun-image {
  width: 100%;
  
  
  

      
    

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: ;
  object-position: none;
  transform: none;
  transform-origin: none;
}




.s-94b9dded-305e-486b-b49c-130917b82d9f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-94b9dded-305e-486b-b49c-130917b82d9f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94b9dded-305e-486b-b49c-130917b82d9f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94b9dded-305e-486b-b49c-130917b82d9f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-94b9dded-305e-486b-b49c-130917b82d9f .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-94b9dded-305e-486b-b49c-130917b82d9f .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-94b9dded-305e-486b-b49c-130917b82d9f .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 768px) and (max-width: 991px){#s-94b9dded-305e-486b-b49c-130917b82d9f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-94b9dded-305e-486b-b49c-130917b82d9f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-94b9dded-305e-486b-b49c-130917b82d9f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-94b9dded-305e-486b-b49c-130917b82d9f .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-94b9dded-305e-486b-b49c-130917b82d9f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-94b9dded-305e-486b-b49c-130917b82d9f img.shogun-image {
  width: 100%;
  
  
  

      
    

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: ;
  object-position: none;
  transform: none;
  transform-origin: none;
}




.s-94b9dded-305e-486b-b49c-130917b82d9f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-94b9dded-305e-486b-b49c-130917b82d9f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94b9dded-305e-486b-b49c-130917b82d9f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94b9dded-305e-486b-b49c-130917b82d9f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-94b9dded-305e-486b-b49c-130917b82d9f .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-94b9dded-305e-486b-b49c-130917b82d9f .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-94b9dded-305e-486b-b49c-130917b82d9f .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (max-width: 767px){#s-94b9dded-305e-486b-b49c-130917b82d9f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-94b9dded-305e-486b-b49c-130917b82d9f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-94b9dded-305e-486b-b49c-130917b82d9f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-94b9dded-305e-486b-b49c-130917b82d9f .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-94b9dded-305e-486b-b49c-130917b82d9f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-94b9dded-305e-486b-b49c-130917b82d9f img.shogun-image {
  width: 100%;
  
  
  

      
    

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: ;
  object-position: none;
  transform: none;
  transform-origin: none;
}




.s-94b9dded-305e-486b-b49c-130917b82d9f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-94b9dded-305e-486b-b49c-130917b82d9f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-94b9dded-305e-486b-b49c-130917b82d9f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94b9dded-305e-486b-b49c-130917b82d9f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-94b9dded-305e-486b-b49c-130917b82d9f .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-94b9dded-305e-486b-b49c-130917b82d9f .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-94b9dded-305e-486b-b49c-130917b82d9f .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}
#s-1ea4f053-f504-4b18-8922-9eddcfef85ad {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-1ea4f053-f504-4b18-8922-9eddcfef85ad {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1ea4f053-f504-4b18-8922-9eddcfef85ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-1ea4f053-f504-4b18-8922-9eddcfef85ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-1ea4f053-f504-4b18-8922-9eddcfef85ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-1ea4f053-f504-4b18-8922-9eddcfef85ad img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1ea4f053-f504-4b18-8922-9eddcfef85ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1ea4f053-f504-4b18-8922-9eddcfef85ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1ea4f053-f504-4b18-8922-9eddcfef85ad.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



@media (min-width: 1200px){#s-1ea4f053-f504-4b18-8922-9eddcfef85ad {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1ea4f053-f504-4b18-8922-9eddcfef85ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-1ea4f053-f504-4b18-8922-9eddcfef85ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-1ea4f053-f504-4b18-8922-9eddcfef85ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-1ea4f053-f504-4b18-8922-9eddcfef85ad img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1ea4f053-f504-4b18-8922-9eddcfef85ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1ea4f053-f504-4b18-8922-9eddcfef85ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1ea4f053-f504-4b18-8922-9eddcfef85ad.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 992px) and (max-width: 1199px){#s-1ea4f053-f504-4b18-8922-9eddcfef85ad {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1ea4f053-f504-4b18-8922-9eddcfef85ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-1ea4f053-f504-4b18-8922-9eddcfef85ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-1ea4f053-f504-4b18-8922-9eddcfef85ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-1ea4f053-f504-4b18-8922-9eddcfef85ad img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1ea4f053-f504-4b18-8922-9eddcfef85ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1ea4f053-f504-4b18-8922-9eddcfef85ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1ea4f053-f504-4b18-8922-9eddcfef85ad.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 768px) and (max-width: 991px){#s-1ea4f053-f504-4b18-8922-9eddcfef85ad {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1ea4f053-f504-4b18-8922-9eddcfef85ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-1ea4f053-f504-4b18-8922-9eddcfef85ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-1ea4f053-f504-4b18-8922-9eddcfef85ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-1ea4f053-f504-4b18-8922-9eddcfef85ad img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1ea4f053-f504-4b18-8922-9eddcfef85ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1ea4f053-f504-4b18-8922-9eddcfef85ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1ea4f053-f504-4b18-8922-9eddcfef85ad.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (max-width: 767px){#s-1ea4f053-f504-4b18-8922-9eddcfef85ad {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1ea4f053-f504-4b18-8922-9eddcfef85ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-1ea4f053-f504-4b18-8922-9eddcfef85ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-1ea4f053-f504-4b18-8922-9eddcfef85ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-1ea4f053-f504-4b18-8922-9eddcfef85ad img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1ea4f053-f504-4b18-8922-9eddcfef85ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1ea4f053-f504-4b18-8922-9eddcfef85ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1ea4f053-f504-4b18-8922-9eddcfef85ad.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1ea4f053-f504-4b18-8922-9eddcfef85ad .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}
#s-d5c31805-fa96-43d4-9593-dda61b99605d {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-d5c31805-fa96-43d4-9593-dda61b99605d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d5c31805-fa96-43d4-9593-dda61b99605d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-d5c31805-fa96-43d4-9593-dda61b99605d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-d5c31805-fa96-43d4-9593-dda61b99605d .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-d5c31805-fa96-43d4-9593-dda61b99605d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-d5c31805-fa96-43d4-9593-dda61b99605d img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-d5c31805-fa96-43d4-9593-dda61b99605d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-d5c31805-fa96-43d4-9593-dda61b99605d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d5c31805-fa96-43d4-9593-dda61b99605d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d5c31805-fa96-43d4-9593-dda61b99605d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-d5c31805-fa96-43d4-9593-dda61b99605d .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d5c31805-fa96-43d4-9593-dda61b99605d .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d5c31805-fa96-43d4-9593-dda61b99605d .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



@media (min-width: 1200px){#s-d5c31805-fa96-43d4-9593-dda61b99605d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d5c31805-fa96-43d4-9593-dda61b99605d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-d5c31805-fa96-43d4-9593-dda61b99605d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-d5c31805-fa96-43d4-9593-dda61b99605d .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-d5c31805-fa96-43d4-9593-dda61b99605d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-d5c31805-fa96-43d4-9593-dda61b99605d img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-d5c31805-fa96-43d4-9593-dda61b99605d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-d5c31805-fa96-43d4-9593-dda61b99605d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d5c31805-fa96-43d4-9593-dda61b99605d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d5c31805-fa96-43d4-9593-dda61b99605d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-d5c31805-fa96-43d4-9593-dda61b99605d .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d5c31805-fa96-43d4-9593-dda61b99605d .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d5c31805-fa96-43d4-9593-dda61b99605d .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 992px) and (max-width: 1199px){#s-d5c31805-fa96-43d4-9593-dda61b99605d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d5c31805-fa96-43d4-9593-dda61b99605d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-d5c31805-fa96-43d4-9593-dda61b99605d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-d5c31805-fa96-43d4-9593-dda61b99605d .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-d5c31805-fa96-43d4-9593-dda61b99605d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-d5c31805-fa96-43d4-9593-dda61b99605d img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-d5c31805-fa96-43d4-9593-dda61b99605d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-d5c31805-fa96-43d4-9593-dda61b99605d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d5c31805-fa96-43d4-9593-dda61b99605d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d5c31805-fa96-43d4-9593-dda61b99605d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-d5c31805-fa96-43d4-9593-dda61b99605d .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d5c31805-fa96-43d4-9593-dda61b99605d .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d5c31805-fa96-43d4-9593-dda61b99605d .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 768px) and (max-width: 991px){#s-d5c31805-fa96-43d4-9593-dda61b99605d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d5c31805-fa96-43d4-9593-dda61b99605d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-d5c31805-fa96-43d4-9593-dda61b99605d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-d5c31805-fa96-43d4-9593-dda61b99605d .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-d5c31805-fa96-43d4-9593-dda61b99605d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-d5c31805-fa96-43d4-9593-dda61b99605d img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-d5c31805-fa96-43d4-9593-dda61b99605d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-d5c31805-fa96-43d4-9593-dda61b99605d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d5c31805-fa96-43d4-9593-dda61b99605d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d5c31805-fa96-43d4-9593-dda61b99605d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-d5c31805-fa96-43d4-9593-dda61b99605d .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d5c31805-fa96-43d4-9593-dda61b99605d .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d5c31805-fa96-43d4-9593-dda61b99605d .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (max-width: 767px){#s-d5c31805-fa96-43d4-9593-dda61b99605d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-d5c31805-fa96-43d4-9593-dda61b99605d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-d5c31805-fa96-43d4-9593-dda61b99605d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-d5c31805-fa96-43d4-9593-dda61b99605d .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-d5c31805-fa96-43d4-9593-dda61b99605d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-d5c31805-fa96-43d4-9593-dda61b99605d img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-d5c31805-fa96-43d4-9593-dda61b99605d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-d5c31805-fa96-43d4-9593-dda61b99605d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d5c31805-fa96-43d4-9593-dda61b99605d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d5c31805-fa96-43d4-9593-dda61b99605d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-d5c31805-fa96-43d4-9593-dda61b99605d .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d5c31805-fa96-43d4-9593-dda61b99605d .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-d5c31805-fa96-43d4-9593-dda61b99605d .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}
#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



@media (min-width: 1200px){#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 992px) and (max-width: 1199px){#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 768px) and (max-width: 991px){#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (max-width: 767px){#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-a5a91a8b-1de2-4dde-b4cd-5e97eb2ae100 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}
#s-67725866-49d7-41d9-8fba-cd55f4037186 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-67725866-49d7-41d9-8fba-cd55f4037186 .shg-proportional-font-size,
#s-67725866-49d7-41d9-8fba-cd55f4037186 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-47e25bc4-4d9e-4fa8-baf6-c88e7101eb97 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-47e25bc4-4d9e-4fa8-baf6-c88e7101eb97 .shg-proportional-font-size,
#s-47e25bc4-4d9e-4fa8-baf6-c88e7101eb97 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-380cc328-c613-41a6-9d44-5a49704d1490 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-380cc328-c613-41a6-9d44-5a49704d1490 .shg-proportional-font-size,
#s-380cc328-c613-41a6-9d44-5a49704d1490 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-b4105c6c-3941-4c77-b4d5-e6459ba60bf9 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-b4105c6c-3941-4c77-b4d5-e6459ba60bf9 .shg-proportional-font-size,
#s-b4105c6c-3941-4c77-b4d5-e6459ba60bf9 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-55c71079-5c38-40ec-ad96-ec69ee97189a {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-55c71079-5c38-40ec-ad96-ec69ee97189a .shg-proportional-font-size,
#s-55c71079-5c38-40ec-ad96-ec69ee97189a .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-44b61033-1876-4ea4-886a-1ede6744216b {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-44b61033-1876-4ea4-886a-1ede6744216b .shg-proportional-font-size,
#s-44b61033-1876-4ea4-886a-1ede6744216b .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-c37513f9-881e-4ca9-89a8-1c2da2ae4102 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-c37513f9-881e-4ca9-89a8-1c2da2ae4102 .shg-proportional-font-size,
#s-c37513f9-881e-4ca9-89a8-1c2da2ae4102 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-09aa4313-f4d4-449e-a6c8-47ca926eba45 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-09aa4313-f4d4-449e-a6c8-47ca926eba45 .shg-proportional-font-size,
#s-09aa4313-f4d4-449e-a6c8-47ca926eba45 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-82b8afa2-6949-46a0-b710-bee917378f3b {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-82b8afa2-6949-46a0-b710-bee917378f3b .shg-proportional-font-size,
#s-82b8afa2-6949-46a0-b710-bee917378f3b .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-0ccda91f-2cd4-4f2d-b1c0-c1888c0a4fc7 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-0ccda91f-2cd4-4f2d-b1c0-c1888c0a4fc7 .shg-proportional-font-size,
#s-0ccda91f-2cd4-4f2d-b1c0-c1888c0a4fc7 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-de361b24-98c6-4eba-a8a5-39cfaacb9072 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-de361b24-98c6-4eba-a8a5-39cfaacb9072 .shg-proportional-font-size,
#s-de361b24-98c6-4eba-a8a5-39cfaacb9072 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-810dbc09-7081-45eb-ad9b-79723fca8720 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-810dbc09-7081-45eb-ad9b-79723fca8720 .shg-proportional-font-size,
#s-810dbc09-7081-45eb-ad9b-79723fca8720 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-f1c97455-2ecc-4671-87d5-acff9976a2fe {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-f1c97455-2ecc-4671-87d5-acff9976a2fe .shg-proportional-font-size,
#s-f1c97455-2ecc-4671-87d5-acff9976a2fe .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-0231c2cf-c3bb-4e4d-8868-3a9788f3e071 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-0231c2cf-c3bb-4e4d-8868-3a9788f3e071 .shg-proportional-font-size,
#s-0231c2cf-c3bb-4e4d-8868-3a9788f3e071 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-c349d90c-265e-43c6-86e9-0e750a47a9eb {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-c349d90c-265e-43c6-86e9-0e750a47a9eb .shg-proportional-font-size,
#s-c349d90c-265e-43c6-86e9-0e750a47a9eb .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-dbcc3f17-9b3a-4672-ae71-4702bf22b4ef {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-dbcc3f17-9b3a-4672-ae71-4702bf22b4ef .shg-proportional-font-size,
#s-dbcc3f17-9b3a-4672-ae71-4702bf22b4ef .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-d128e5bd-232e-46c8-8680-d6d06f18d963 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-d128e5bd-232e-46c8-8680-d6d06f18d963 .shg-proportional-font-size,
#s-d128e5bd-232e-46c8-8680-d6d06f18d963 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-f4aa2020-6a3e-493d-8fd9-41ea72aa3250 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-f4aa2020-6a3e-493d-8fd9-41ea72aa3250 .shg-proportional-font-size,
#s-f4aa2020-6a3e-493d-8fd9-41ea72aa3250 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-071075b6-24a7-48c3-a94e-18ead1a6fb6f {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-071075b6-24a7-48c3-a94e-18ead1a6fb6f .shg-proportional-font-size,
#s-071075b6-24a7-48c3-a94e-18ead1a6fb6f .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-f435d620-1385-46f8-9792-e62451fc89cf {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-f435d620-1385-46f8-9792-e62451fc89cf .shg-proportional-font-size,
#s-f435d620-1385-46f8-9792-e62451fc89cf .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb {
  padding-left: 3%;
padding-bottom: 30px;
padding-right: 3%;
display: none;
}
#s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb, #wrap-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb, #wrap-content-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb {
  display: none;
}
#s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb, #wrap-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb, #wrap-content-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb {
  padding-left: 4%;
padding-right: 4%;
}
}@media (max-width: 767px){#s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb {
  padding-top: 10px;
padding-left: 4%;
padding-bottom: 30px;
padding-right: 4%;
}
}
/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb {
  --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-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-prev,
#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-next {
  
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-prev svg,
#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb .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-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}
@media (min-width: 1200px){/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb {
  --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;
  
    --swiper-pagination-bottom: 14px !important;
    padding: 0 !important;
  
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-prev,
#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-next {
  
    height: 100% !important;
  
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-prev svg,
#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-prev {
  
    left: 2% !important;
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-next {
  
    right: 2% !important;
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb .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-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb .swiper-pagination {
  position:  absolute ;
  display: flex;
  margin-top:  0 ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}
}@media (min-width: 768px) and (max-width: 991px){/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb {
  --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;
  
    --swiper-pagination-bottom: 14px !important;
    padding: 0 !important;
  
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-prev,
#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-next {
  
    height: 100% !important;
  
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-prev svg,
#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-prev {
  
    left: 2% !important;
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-next {
  
    right: 2% !important;
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb .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-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb .swiper-pagination {
  position:  absolute ;
  display: flex;
  margin-top:  0 ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}
}@media (max-width: 767px){/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb {
  --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;
  
    --swiper-pagination-bottom: 14px !important;
    padding: 0 !important;
  
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-prev,
#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-next {
  
    height: 100% !important;
  
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-prev svg,
#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-prev {
  
    left: 2% !important;
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-next {
  
    right: 2% !important;
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb .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-0e47fb4e-a5f0-4c6e-9747-3c0f30ba5ebb .swiper-pagination {
  position:  absolute ;
  display: flex;
  margin-top:  0 ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}
}
#s-8392208b-ad75-4e6f-be8a-81185d80e5ed {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-8392208b-ad75-4e6f-be8a-81185d80e5ed {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8392208b-ad75-4e6f-be8a-81185d80e5ed-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-8392208b-ad75-4e6f-be8a-81185d80e5ed {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-8392208b-ad75-4e6f-be8a-81185d80e5ed {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-8392208b-ad75-4e6f-be8a-81185d80e5ed img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8392208b-ad75-4e6f-be8a-81185d80e5ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8392208b-ad75-4e6f-be8a-81185d80e5ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8392208b-ad75-4e6f-be8a-81185d80e5ed.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



@media (min-width: 1200px){#s-8392208b-ad75-4e6f-be8a-81185d80e5ed {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8392208b-ad75-4e6f-be8a-81185d80e5ed-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-8392208b-ad75-4e6f-be8a-81185d80e5ed {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-8392208b-ad75-4e6f-be8a-81185d80e5ed {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-8392208b-ad75-4e6f-be8a-81185d80e5ed img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8392208b-ad75-4e6f-be8a-81185d80e5ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8392208b-ad75-4e6f-be8a-81185d80e5ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8392208b-ad75-4e6f-be8a-81185d80e5ed.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 992px) and (max-width: 1199px){#s-8392208b-ad75-4e6f-be8a-81185d80e5ed {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8392208b-ad75-4e6f-be8a-81185d80e5ed-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-8392208b-ad75-4e6f-be8a-81185d80e5ed {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-8392208b-ad75-4e6f-be8a-81185d80e5ed {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-8392208b-ad75-4e6f-be8a-81185d80e5ed img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8392208b-ad75-4e6f-be8a-81185d80e5ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8392208b-ad75-4e6f-be8a-81185d80e5ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8392208b-ad75-4e6f-be8a-81185d80e5ed.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 768px) and (max-width: 991px){#s-8392208b-ad75-4e6f-be8a-81185d80e5ed {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8392208b-ad75-4e6f-be8a-81185d80e5ed-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-8392208b-ad75-4e6f-be8a-81185d80e5ed {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-8392208b-ad75-4e6f-be8a-81185d80e5ed {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-8392208b-ad75-4e6f-be8a-81185d80e5ed img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8392208b-ad75-4e6f-be8a-81185d80e5ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8392208b-ad75-4e6f-be8a-81185d80e5ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8392208b-ad75-4e6f-be8a-81185d80e5ed.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (max-width: 767px){#s-8392208b-ad75-4e6f-be8a-81185d80e5ed {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-8392208b-ad75-4e6f-be8a-81185d80e5ed-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-8392208b-ad75-4e6f-be8a-81185d80e5ed {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-8392208b-ad75-4e6f-be8a-81185d80e5ed {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-8392208b-ad75-4e6f-be8a-81185d80e5ed img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-8392208b-ad75-4e6f-be8a-81185d80e5ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8392208b-ad75-4e6f-be8a-81185d80e5ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8392208b-ad75-4e6f-be8a-81185d80e5ed.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-8392208b-ad75-4e6f-be8a-81185d80e5ed .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}
#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



@media (min-width: 1200px){#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 992px) and (max-width: 1199px){#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 768px) and (max-width: 991px){#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (max-width: 767px){#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a9bab69-a902-43d7-8e49-7dd7ae522b00.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-7a9bab69-a902-43d7-8e49-7dd7ae522b00 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}
#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



@media (min-width: 1200px){#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 992px) and (max-width: 1199px){#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 768px) and (max-width: 991px){#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (max-width: 767px){#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-b21b5575-9c87-4e14-a28f-3ce5d9d2c0f0 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}
#s-f2338952-9391-42f7-a05a-f72fc2408b42 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-f2338952-9391-42f7-a05a-f72fc2408b42 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f2338952-9391-42f7-a05a-f72fc2408b42-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f2338952-9391-42f7-a05a-f72fc2408b42 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f2338952-9391-42f7-a05a-f72fc2408b42 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-f2338952-9391-42f7-a05a-f72fc2408b42 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-f2338952-9391-42f7-a05a-f72fc2408b42 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-f2338952-9391-42f7-a05a-f72fc2408b42 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f2338952-9391-42f7-a05a-f72fc2408b42.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2338952-9391-42f7-a05a-f72fc2408b42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2338952-9391-42f7-a05a-f72fc2408b42.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-f2338952-9391-42f7-a05a-f72fc2408b42 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f2338952-9391-42f7-a05a-f72fc2408b42 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f2338952-9391-42f7-a05a-f72fc2408b42 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



@media (min-width: 1200px){#s-f2338952-9391-42f7-a05a-f72fc2408b42 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f2338952-9391-42f7-a05a-f72fc2408b42-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f2338952-9391-42f7-a05a-f72fc2408b42 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f2338952-9391-42f7-a05a-f72fc2408b42 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-f2338952-9391-42f7-a05a-f72fc2408b42 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-f2338952-9391-42f7-a05a-f72fc2408b42 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-f2338952-9391-42f7-a05a-f72fc2408b42 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f2338952-9391-42f7-a05a-f72fc2408b42.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2338952-9391-42f7-a05a-f72fc2408b42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2338952-9391-42f7-a05a-f72fc2408b42.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-f2338952-9391-42f7-a05a-f72fc2408b42 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f2338952-9391-42f7-a05a-f72fc2408b42 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f2338952-9391-42f7-a05a-f72fc2408b42 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 992px) and (max-width: 1199px){#s-f2338952-9391-42f7-a05a-f72fc2408b42 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f2338952-9391-42f7-a05a-f72fc2408b42-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f2338952-9391-42f7-a05a-f72fc2408b42 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f2338952-9391-42f7-a05a-f72fc2408b42 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-f2338952-9391-42f7-a05a-f72fc2408b42 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-f2338952-9391-42f7-a05a-f72fc2408b42 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-f2338952-9391-42f7-a05a-f72fc2408b42 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f2338952-9391-42f7-a05a-f72fc2408b42.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2338952-9391-42f7-a05a-f72fc2408b42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2338952-9391-42f7-a05a-f72fc2408b42.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-f2338952-9391-42f7-a05a-f72fc2408b42 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f2338952-9391-42f7-a05a-f72fc2408b42 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f2338952-9391-42f7-a05a-f72fc2408b42 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 768px) and (max-width: 991px){#s-f2338952-9391-42f7-a05a-f72fc2408b42 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f2338952-9391-42f7-a05a-f72fc2408b42-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f2338952-9391-42f7-a05a-f72fc2408b42 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f2338952-9391-42f7-a05a-f72fc2408b42 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-f2338952-9391-42f7-a05a-f72fc2408b42 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-f2338952-9391-42f7-a05a-f72fc2408b42 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-f2338952-9391-42f7-a05a-f72fc2408b42 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f2338952-9391-42f7-a05a-f72fc2408b42.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2338952-9391-42f7-a05a-f72fc2408b42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2338952-9391-42f7-a05a-f72fc2408b42.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-f2338952-9391-42f7-a05a-f72fc2408b42 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f2338952-9391-42f7-a05a-f72fc2408b42 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f2338952-9391-42f7-a05a-f72fc2408b42 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (max-width: 767px){#s-f2338952-9391-42f7-a05a-f72fc2408b42 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f2338952-9391-42f7-a05a-f72fc2408b42-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f2338952-9391-42f7-a05a-f72fc2408b42 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f2338952-9391-42f7-a05a-f72fc2408b42 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-f2338952-9391-42f7-a05a-f72fc2408b42 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-f2338952-9391-42f7-a05a-f72fc2408b42 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-f2338952-9391-42f7-a05a-f72fc2408b42 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f2338952-9391-42f7-a05a-f72fc2408b42.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2338952-9391-42f7-a05a-f72fc2408b42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2338952-9391-42f7-a05a-f72fc2408b42.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-f2338952-9391-42f7-a05a-f72fc2408b42 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f2338952-9391-42f7-a05a-f72fc2408b42 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f2338952-9391-42f7-a05a-f72fc2408b42 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}
#s-f92ff58d-4c23-4aa6-a432-b885798323ff {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-f92ff58d-4c23-4aa6-a432-b885798323ff {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f92ff58d-4c23-4aa6-a432-b885798323ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f92ff58d-4c23-4aa6-a432-b885798323ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f92ff58d-4c23-4aa6-a432-b885798323ff .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-f92ff58d-4c23-4aa6-a432-b885798323ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-f92ff58d-4c23-4aa6-a432-b885798323ff img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-f92ff58d-4c23-4aa6-a432-b885798323ff .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f92ff58d-4c23-4aa6-a432-b885798323ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f92ff58d-4c23-4aa6-a432-b885798323ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f92ff58d-4c23-4aa6-a432-b885798323ff.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-f92ff58d-4c23-4aa6-a432-b885798323ff .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f92ff58d-4c23-4aa6-a432-b885798323ff .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f92ff58d-4c23-4aa6-a432-b885798323ff .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



@media (min-width: 1200px){#s-f92ff58d-4c23-4aa6-a432-b885798323ff {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f92ff58d-4c23-4aa6-a432-b885798323ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f92ff58d-4c23-4aa6-a432-b885798323ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f92ff58d-4c23-4aa6-a432-b885798323ff .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-f92ff58d-4c23-4aa6-a432-b885798323ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-f92ff58d-4c23-4aa6-a432-b885798323ff img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-f92ff58d-4c23-4aa6-a432-b885798323ff .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f92ff58d-4c23-4aa6-a432-b885798323ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f92ff58d-4c23-4aa6-a432-b885798323ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f92ff58d-4c23-4aa6-a432-b885798323ff.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-f92ff58d-4c23-4aa6-a432-b885798323ff .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f92ff58d-4c23-4aa6-a432-b885798323ff .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f92ff58d-4c23-4aa6-a432-b885798323ff .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 992px) and (max-width: 1199px){#s-f92ff58d-4c23-4aa6-a432-b885798323ff {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f92ff58d-4c23-4aa6-a432-b885798323ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f92ff58d-4c23-4aa6-a432-b885798323ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f92ff58d-4c23-4aa6-a432-b885798323ff .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-f92ff58d-4c23-4aa6-a432-b885798323ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-f92ff58d-4c23-4aa6-a432-b885798323ff img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-f92ff58d-4c23-4aa6-a432-b885798323ff .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f92ff58d-4c23-4aa6-a432-b885798323ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f92ff58d-4c23-4aa6-a432-b885798323ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f92ff58d-4c23-4aa6-a432-b885798323ff.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-f92ff58d-4c23-4aa6-a432-b885798323ff .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f92ff58d-4c23-4aa6-a432-b885798323ff .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f92ff58d-4c23-4aa6-a432-b885798323ff .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 768px) and (max-width: 991px){#s-f92ff58d-4c23-4aa6-a432-b885798323ff {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f92ff58d-4c23-4aa6-a432-b885798323ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f92ff58d-4c23-4aa6-a432-b885798323ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f92ff58d-4c23-4aa6-a432-b885798323ff .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-f92ff58d-4c23-4aa6-a432-b885798323ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-f92ff58d-4c23-4aa6-a432-b885798323ff img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-f92ff58d-4c23-4aa6-a432-b885798323ff .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f92ff58d-4c23-4aa6-a432-b885798323ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f92ff58d-4c23-4aa6-a432-b885798323ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f92ff58d-4c23-4aa6-a432-b885798323ff.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-f92ff58d-4c23-4aa6-a432-b885798323ff .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f92ff58d-4c23-4aa6-a432-b885798323ff .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f92ff58d-4c23-4aa6-a432-b885798323ff .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (max-width: 767px){#s-f92ff58d-4c23-4aa6-a432-b885798323ff {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-f92ff58d-4c23-4aa6-a432-b885798323ff-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-f92ff58d-4c23-4aa6-a432-b885798323ff {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-f92ff58d-4c23-4aa6-a432-b885798323ff .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-f92ff58d-4c23-4aa6-a432-b885798323ff {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-f92ff58d-4c23-4aa6-a432-b885798323ff img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-f92ff58d-4c23-4aa6-a432-b885798323ff .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-f92ff58d-4c23-4aa6-a432-b885798323ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f92ff58d-4c23-4aa6-a432-b885798323ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f92ff58d-4c23-4aa6-a432-b885798323ff.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-f92ff58d-4c23-4aa6-a432-b885798323ff .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f92ff58d-4c23-4aa6-a432-b885798323ff .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-f92ff58d-4c23-4aa6-a432-b885798323ff .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}
#s-aa748191-3eed-45f5-adc5-2daf2029097e {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-aa748191-3eed-45f5-adc5-2daf2029097e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-aa748191-3eed-45f5-adc5-2daf2029097e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-aa748191-3eed-45f5-adc5-2daf2029097e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-aa748191-3eed-45f5-adc5-2daf2029097e .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-aa748191-3eed-45f5-adc5-2daf2029097e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-aa748191-3eed-45f5-adc5-2daf2029097e img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-aa748191-3eed-45f5-adc5-2daf2029097e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-aa748191-3eed-45f5-adc5-2daf2029097e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa748191-3eed-45f5-adc5-2daf2029097e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa748191-3eed-45f5-adc5-2daf2029097e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-aa748191-3eed-45f5-adc5-2daf2029097e .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-aa748191-3eed-45f5-adc5-2daf2029097e .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-aa748191-3eed-45f5-adc5-2daf2029097e .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



@media (min-width: 1200px){#s-aa748191-3eed-45f5-adc5-2daf2029097e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-aa748191-3eed-45f5-adc5-2daf2029097e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-aa748191-3eed-45f5-adc5-2daf2029097e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-aa748191-3eed-45f5-adc5-2daf2029097e .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-aa748191-3eed-45f5-adc5-2daf2029097e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-aa748191-3eed-45f5-adc5-2daf2029097e img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-aa748191-3eed-45f5-adc5-2daf2029097e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-aa748191-3eed-45f5-adc5-2daf2029097e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa748191-3eed-45f5-adc5-2daf2029097e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa748191-3eed-45f5-adc5-2daf2029097e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-aa748191-3eed-45f5-adc5-2daf2029097e .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-aa748191-3eed-45f5-adc5-2daf2029097e .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-aa748191-3eed-45f5-adc5-2daf2029097e .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 992px) and (max-width: 1199px){#s-aa748191-3eed-45f5-adc5-2daf2029097e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-aa748191-3eed-45f5-adc5-2daf2029097e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-aa748191-3eed-45f5-adc5-2daf2029097e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-aa748191-3eed-45f5-adc5-2daf2029097e .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-aa748191-3eed-45f5-adc5-2daf2029097e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-aa748191-3eed-45f5-adc5-2daf2029097e img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-aa748191-3eed-45f5-adc5-2daf2029097e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-aa748191-3eed-45f5-adc5-2daf2029097e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa748191-3eed-45f5-adc5-2daf2029097e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa748191-3eed-45f5-adc5-2daf2029097e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-aa748191-3eed-45f5-adc5-2daf2029097e .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-aa748191-3eed-45f5-adc5-2daf2029097e .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-aa748191-3eed-45f5-adc5-2daf2029097e .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 768px) and (max-width: 991px){#s-aa748191-3eed-45f5-adc5-2daf2029097e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-aa748191-3eed-45f5-adc5-2daf2029097e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-aa748191-3eed-45f5-adc5-2daf2029097e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-aa748191-3eed-45f5-adc5-2daf2029097e .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-aa748191-3eed-45f5-adc5-2daf2029097e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-aa748191-3eed-45f5-adc5-2daf2029097e img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-aa748191-3eed-45f5-adc5-2daf2029097e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-aa748191-3eed-45f5-adc5-2daf2029097e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa748191-3eed-45f5-adc5-2daf2029097e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa748191-3eed-45f5-adc5-2daf2029097e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-aa748191-3eed-45f5-adc5-2daf2029097e .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-aa748191-3eed-45f5-adc5-2daf2029097e .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-aa748191-3eed-45f5-adc5-2daf2029097e .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (max-width: 767px){#s-aa748191-3eed-45f5-adc5-2daf2029097e {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-aa748191-3eed-45f5-adc5-2daf2029097e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-aa748191-3eed-45f5-adc5-2daf2029097e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-aa748191-3eed-45f5-adc5-2daf2029097e .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-aa748191-3eed-45f5-adc5-2daf2029097e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-aa748191-3eed-45f5-adc5-2daf2029097e img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-aa748191-3eed-45f5-adc5-2daf2029097e .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-aa748191-3eed-45f5-adc5-2daf2029097e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aa748191-3eed-45f5-adc5-2daf2029097e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aa748191-3eed-45f5-adc5-2daf2029097e.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-aa748191-3eed-45f5-adc5-2daf2029097e .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-aa748191-3eed-45f5-adc5-2daf2029097e .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-aa748191-3eed-45f5-adc5-2daf2029097e .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}
#s-cf7abf2d-870c-4fd1-a427-0517b921b052 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-cf7abf2d-870c-4fd1-a427-0517b921b052 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cf7abf2d-870c-4fd1-a427-0517b921b052-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-cf7abf2d-870c-4fd1-a427-0517b921b052 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-cf7abf2d-870c-4fd1-a427-0517b921b052 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-cf7abf2d-870c-4fd1-a427-0517b921b052 img.shogun-image {
  width: 100%;
  
  
  

      
    

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: ;
  object-position: none;
  transform: none;
  transform-origin: none;
}




.s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cf7abf2d-870c-4fd1-a427-0517b921b052.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf7abf2d-870c-4fd1-a427-0517b921b052.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf7abf2d-870c-4fd1-a427-0517b921b052.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



@media (min-width: 1200px){#s-cf7abf2d-870c-4fd1-a427-0517b921b052 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cf7abf2d-870c-4fd1-a427-0517b921b052-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-cf7abf2d-870c-4fd1-a427-0517b921b052 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-cf7abf2d-870c-4fd1-a427-0517b921b052 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-cf7abf2d-870c-4fd1-a427-0517b921b052 img.shogun-image {
  width: 100%;
  
  
  

      
    

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: ;
  object-position: none;
  transform: none;
  transform-origin: none;
}




.s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cf7abf2d-870c-4fd1-a427-0517b921b052.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf7abf2d-870c-4fd1-a427-0517b921b052.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf7abf2d-870c-4fd1-a427-0517b921b052.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 992px) and (max-width: 1199px){#s-cf7abf2d-870c-4fd1-a427-0517b921b052 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cf7abf2d-870c-4fd1-a427-0517b921b052-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-cf7abf2d-870c-4fd1-a427-0517b921b052 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-cf7abf2d-870c-4fd1-a427-0517b921b052 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-cf7abf2d-870c-4fd1-a427-0517b921b052 img.shogun-image {
  width: 100%;
  
  
  

      
    

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: ;
  object-position: none;
  transform: none;
  transform-origin: none;
}




.s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cf7abf2d-870c-4fd1-a427-0517b921b052.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf7abf2d-870c-4fd1-a427-0517b921b052.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf7abf2d-870c-4fd1-a427-0517b921b052.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 768px) and (max-width: 991px){#s-cf7abf2d-870c-4fd1-a427-0517b921b052 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cf7abf2d-870c-4fd1-a427-0517b921b052-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-cf7abf2d-870c-4fd1-a427-0517b921b052 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-cf7abf2d-870c-4fd1-a427-0517b921b052 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-cf7abf2d-870c-4fd1-a427-0517b921b052 img.shogun-image {
  width: 100%;
  
  
  

      
    

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: ;
  object-position: none;
  transform: none;
  transform-origin: none;
}




.s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cf7abf2d-870c-4fd1-a427-0517b921b052.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf7abf2d-870c-4fd1-a427-0517b921b052.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf7abf2d-870c-4fd1-a427-0517b921b052.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (max-width: 767px){#s-cf7abf2d-870c-4fd1-a427-0517b921b052 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-cf7abf2d-870c-4fd1-a427-0517b921b052-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-cf7abf2d-870c-4fd1-a427-0517b921b052 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-cf7abf2d-870c-4fd1-a427-0517b921b052 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-cf7abf2d-870c-4fd1-a427-0517b921b052 img.shogun-image {
  width: 100%;
  
  
  

      
    

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: ;
  object-position: none;
  transform: none;
  transform-origin: none;
}




.s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-cf7abf2d-870c-4fd1-a427-0517b921b052.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf7abf2d-870c-4fd1-a427-0517b921b052.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf7abf2d-870c-4fd1-a427-0517b921b052.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-cf7abf2d-870c-4fd1-a427-0517b921b052 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}
#s-1c61652e-f3ce-4680-9889-3df3ed56b875 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-1c61652e-f3ce-4680-9889-3df3ed56b875 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1c61652e-f3ce-4680-9889-3df3ed56b875-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-1c61652e-f3ce-4680-9889-3df3ed56b875 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-1c61652e-f3ce-4680-9889-3df3ed56b875 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-1c61652e-f3ce-4680-9889-3df3ed56b875 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1c61652e-f3ce-4680-9889-3df3ed56b875.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1c61652e-f3ce-4680-9889-3df3ed56b875.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c61652e-f3ce-4680-9889-3df3ed56b875.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



@media (min-width: 1200px){#s-1c61652e-f3ce-4680-9889-3df3ed56b875 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1c61652e-f3ce-4680-9889-3df3ed56b875-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-1c61652e-f3ce-4680-9889-3df3ed56b875 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-1c61652e-f3ce-4680-9889-3df3ed56b875 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-1c61652e-f3ce-4680-9889-3df3ed56b875 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1c61652e-f3ce-4680-9889-3df3ed56b875.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1c61652e-f3ce-4680-9889-3df3ed56b875.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c61652e-f3ce-4680-9889-3df3ed56b875.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 992px) and (max-width: 1199px){#s-1c61652e-f3ce-4680-9889-3df3ed56b875 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1c61652e-f3ce-4680-9889-3df3ed56b875-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-1c61652e-f3ce-4680-9889-3df3ed56b875 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-1c61652e-f3ce-4680-9889-3df3ed56b875 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-1c61652e-f3ce-4680-9889-3df3ed56b875 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1c61652e-f3ce-4680-9889-3df3ed56b875.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1c61652e-f3ce-4680-9889-3df3ed56b875.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c61652e-f3ce-4680-9889-3df3ed56b875.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 768px) and (max-width: 991px){#s-1c61652e-f3ce-4680-9889-3df3ed56b875 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1c61652e-f3ce-4680-9889-3df3ed56b875-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-1c61652e-f3ce-4680-9889-3df3ed56b875 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-1c61652e-f3ce-4680-9889-3df3ed56b875 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-1c61652e-f3ce-4680-9889-3df3ed56b875 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1c61652e-f3ce-4680-9889-3df3ed56b875.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1c61652e-f3ce-4680-9889-3df3ed56b875.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c61652e-f3ce-4680-9889-3df3ed56b875.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (max-width: 767px){#s-1c61652e-f3ce-4680-9889-3df3ed56b875 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-1c61652e-f3ce-4680-9889-3df3ed56b875-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-1c61652e-f3ce-4680-9889-3df3ed56b875 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-1c61652e-f3ce-4680-9889-3df3ed56b875 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-1c61652e-f3ce-4680-9889-3df3ed56b875 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-1c61652e-f3ce-4680-9889-3df3ed56b875.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1c61652e-f3ce-4680-9889-3df3ed56b875.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c61652e-f3ce-4680-9889-3df3ed56b875.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-1c61652e-f3ce-4680-9889-3df3ed56b875 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}
#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



@media (min-width: 1200px){#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 992px) and (max-width: 1199px){#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 768px) and (max-width: 991px){#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (max-width: 767px){#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e79ad453-d408-4d4a-a288-9f6a03ec5b65.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-e79ad453-d408-4d4a-a288-9f6a03ec5b65 .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}
#s-03fd6a08-ad5a-4c63-8997-481df602c1eb {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-03fd6a08-ad5a-4c63-8997-481df602c1eb {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-03fd6a08-ad5a-4c63-8997-481df602c1eb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-03fd6a08-ad5a-4c63-8997-481df602c1eb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-03fd6a08-ad5a-4c63-8997-481df602c1eb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-03fd6a08-ad5a-4c63-8997-481df602c1eb img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-03fd6a08-ad5a-4c63-8997-481df602c1eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03fd6a08-ad5a-4c63-8997-481df602c1eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03fd6a08-ad5a-4c63-8997-481df602c1eb.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



@media (min-width: 1200px){#s-03fd6a08-ad5a-4c63-8997-481df602c1eb {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-03fd6a08-ad5a-4c63-8997-481df602c1eb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-03fd6a08-ad5a-4c63-8997-481df602c1eb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-03fd6a08-ad5a-4c63-8997-481df602c1eb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-03fd6a08-ad5a-4c63-8997-481df602c1eb img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-03fd6a08-ad5a-4c63-8997-481df602c1eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03fd6a08-ad5a-4c63-8997-481df602c1eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03fd6a08-ad5a-4c63-8997-481df602c1eb.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 992px) and (max-width: 1199px){#s-03fd6a08-ad5a-4c63-8997-481df602c1eb {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-03fd6a08-ad5a-4c63-8997-481df602c1eb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-03fd6a08-ad5a-4c63-8997-481df602c1eb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-03fd6a08-ad5a-4c63-8997-481df602c1eb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-03fd6a08-ad5a-4c63-8997-481df602c1eb img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-03fd6a08-ad5a-4c63-8997-481df602c1eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03fd6a08-ad5a-4c63-8997-481df602c1eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03fd6a08-ad5a-4c63-8997-481df602c1eb.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (min-width: 768px) and (max-width: 991px){#s-03fd6a08-ad5a-4c63-8997-481df602c1eb {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-03fd6a08-ad5a-4c63-8997-481df602c1eb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-03fd6a08-ad5a-4c63-8997-481df602c1eb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-03fd6a08-ad5a-4c63-8997-481df602c1eb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-03fd6a08-ad5a-4c63-8997-481df602c1eb img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-03fd6a08-ad5a-4c63-8997-481df602c1eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03fd6a08-ad5a-4c63-8997-481df602c1eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03fd6a08-ad5a-4c63-8997-481df602c1eb.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}@media (max-width: 767px){#s-03fd6a08-ad5a-4c63-8997-481df602c1eb {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-03fd6a08-ad5a-4c63-8997-481df602c1eb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-03fd6a08-ad5a-4c63-8997-481df602c1eb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-03fd6a08-ad5a-4c63-8997-481df602c1eb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-03fd6a08-ad5a-4c63-8997-481df602c1eb img.shogun-image {
  width: 100%;
  
  
  max-width: 1080px;

      
    max-width: 1080px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-03fd6a08-ad5a-4c63-8997-481df602c1eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-03fd6a08-ad5a-4c63-8997-481df602c1eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-03fd6a08-ad5a-4c63-8997-481df602c1eb.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}


.s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shogun-image-container .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shogun-image-container:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-03fd6a08-ad5a-4c63-8997-481df602c1eb .shogun-image-container:hover .shogun-image.hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}



}
#s-3d68e075-a6c9-46bf-a67c-02148b7ed2b7 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-3d68e075-a6c9-46bf-a67c-02148b7ed2b7 .shg-proportional-font-size,
#s-3d68e075-a6c9-46bf-a67c-02148b7ed2b7 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-2f9cecac-9949-4a29-96d7-a8e69393c362 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-2f9cecac-9949-4a29-96d7-a8e69393c362 .shg-proportional-font-size,
#s-2f9cecac-9949-4a29-96d7-a8e69393c362 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-ba18706f-d893-4c8c-8ac8-13342abbfb31 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-ba18706f-d893-4c8c-8ac8-13342abbfb31 .shg-proportional-font-size,
#s-ba18706f-d893-4c8c-8ac8-13342abbfb31 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-4cc48964-0eb2-4e3a-842f-77379b65e283 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-4cc48964-0eb2-4e3a-842f-77379b65e283 .shg-proportional-font-size,
#s-4cc48964-0eb2-4e3a-842f-77379b65e283 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-df97cc22-438c-48dd-b24c-5442e701297e {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-df97cc22-438c-48dd-b24c-5442e701297e .shg-proportional-font-size,
#s-df97cc22-438c-48dd-b24c-5442e701297e .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-bdedb5d1-0dfb-46de-bb48-fdad9b369bff {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-bdedb5d1-0dfb-46de-bb48-fdad9b369bff .shg-proportional-font-size,
#s-bdedb5d1-0dfb-46de-bb48-fdad9b369bff .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-2d1a723a-e81f-4091-9126-a90c26fc4266 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-2d1a723a-e81f-4091-9126-a90c26fc4266 .shg-proportional-font-size,
#s-2d1a723a-e81f-4091-9126-a90c26fc4266 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-3e13e3a8-cbe6-4b98-870d-a488d0935f0d {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-3e13e3a8-cbe6-4b98-870d-a488d0935f0d .shg-proportional-font-size,
#s-3e13e3a8-cbe6-4b98-870d-a488d0935f0d .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-79526a29-0fc4-4659-930a-ab84af6b738a {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-79526a29-0fc4-4659-930a-ab84af6b738a .shg-proportional-font-size,
#s-79526a29-0fc4-4659-930a-ab84af6b738a .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-eb453293-aa53-4ace-8c84-9ecf25a61c12 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 5%;
}

#s-eb453293-aa53-4ace-8c84-9ecf25a61c12 .shg-proportional-font-size,
#s-eb453293-aa53-4ace-8c84-9ecf25a61c12 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-dc479894-9e3e-42a5-acb7-0067af7409e9 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-dc479894-9e3e-42a5-acb7-0067af7409e9 .shg-proportional-font-size,
#s-dc479894-9e3e-42a5-acb7-0067af7409e9 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-d4a33eac-ebca-460a-9504-e8eceb9e5d57 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-d4a33eac-ebca-460a-9504-e8eceb9e5d57 .shg-proportional-font-size,
#s-d4a33eac-ebca-460a-9504-e8eceb9e5d57 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-491ea040-2211-43d5-82fe-a3c44a561d84 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-491ea040-2211-43d5-82fe-a3c44a561d84 .shg-proportional-font-size,
#s-491ea040-2211-43d5-82fe-a3c44a561d84 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-58a76a7d-dba0-42cc-97d5-5687cbd23d6f {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-58a76a7d-dba0-42cc-97d5-5687cbd23d6f .shg-proportional-font-size,
#s-58a76a7d-dba0-42cc-97d5-5687cbd23d6f .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-9c9f5929-eb97-49f2-af6c-03f1303d3679 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-9c9f5929-eb97-49f2-af6c-03f1303d3679 .shg-proportional-font-size,
#s-9c9f5929-eb97-49f2-af6c-03f1303d3679 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-ae5013a6-fbba-42fb-9c62-2095f576c1c3 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-ae5013a6-fbba-42fb-9c62-2095f576c1c3 .shg-proportional-font-size,
#s-ae5013a6-fbba-42fb-9c62-2095f576c1c3 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-b95e4738-eabb-469b-ae19-6f9f454933dc {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-b95e4738-eabb-469b-ae19-6f9f454933dc .shg-proportional-font-size,
#s-b95e4738-eabb-469b-ae19-6f9f454933dc .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-c21fe10a-78e3-4c5f-a964-5bea8ff17616 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-c21fe10a-78e3-4c5f-a964-5bea8ff17616 .shg-proportional-font-size,
#s-c21fe10a-78e3-4c5f-a964-5bea8ff17616 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-755b8820-76dd-4833-ad32-f04005e1d3bf {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-755b8820-76dd-4833-ad32-f04005e1d3bf .shg-proportional-font-size,
#s-755b8820-76dd-4833-ad32-f04005e1d3bf .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-ed8d946e-7d60-43cb-8fb1-a7120104cd36 {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-ed8d946e-7d60-43cb-8fb1-a7120104cd36 .shg-proportional-font-size,
#s-ed8d946e-7d60-43cb-8fb1-a7120104cd36 .shg-proportional-font-size :is(h1, h2, h3, h4, h5, h6) span.shg-heading-span {
  
    --proportional-font-size: 100;
    
    
    font-size: 1.0em;
  
}

#s-de9c49d6-7bf0-4f16-ac15-b7d5b2754856 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-de9c49d6-7bf0-4f16-ac15-b7d5b2754856 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-de9c49d6-7bf0-4f16-ac15-b7d5b2754856.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2d9cec8d-ea30-4828-bfba-54ab192bc465 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-2d9cec8d-ea30-4828-bfba-54ab192bc465 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2d9cec8d-ea30-4828-bfba-54ab192bc465.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}

.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty:not(.shopify-section *):not([id^="wistia"]) {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}

/* <-- User Content Animations */

.shogun-form-error-msg,
.shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animate__animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-duration:var(--animate-duration);animation-duration:var(--animate-duration);-webkit-animation-fill-mode:both;animation-fill-mode:both}.animate__animated.animate__infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animate__animated.animate__repeat-1{-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-iteration-count:var(--animate-repeat);animation-iteration-count:var(--animate-repeat)}.animate__animated.animate__repeat-2{-webkit-animation-iteration-count:2;animation-iteration-count:2;-webkit-animation-iteration-count:calc(var(--animate-repeat)*2);animation-iteration-count:calc(var(--animate-repeat)*2)}.animate__animated.animate__repeat-3{-webkit-animation-iteration-count:3;animation-iteration-count:3;-webkit-animation-iteration-count:calc(var(--animate-repeat)*3);animation-iteration-count:calc(var(--animate-repeat)*3)}.animate__animated.animate__delay-1s{-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-delay:var(--animate-delay);animation-delay:var(--animate-delay)}.animate__animated.animate__delay-2s{-webkit-animation-delay:2s;animation-delay:2s;-webkit-animation-delay:calc(var(--animate-delay)*2);animation-delay:calc(var(--animate-delay)*2)}.animate__animated.animate__delay-3s{-webkit-animation-delay:3s;animation-delay:3s;-webkit-animation-delay:calc(var(--animate-delay)*3);animation-delay:calc(var(--animate-delay)*3)}.animate__animated.animate__delay-4s{-webkit-animation-delay:4s;animation-delay:4s;-webkit-animation-delay:calc(var(--animate-delay)*4);animation-delay:calc(var(--animate-delay)*4)}.animate__animated.animate__delay-5s{-webkit-animation-delay:5s;animation-delay:5s;-webkit-animation-delay:calc(var(--animate-delay)*5);animation-delay:calc(var(--animate-delay)*5)}.animate__animated.animate__faster{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-duration:calc(var(--animate-duration)/2);animation-duration:calc(var(--animate-duration)/2)}.animate__animated.animate__fast{-webkit-animation-duration:.8s;animation-duration:.8s;-webkit-animation-duration:calc(var(--animate-duration)*0.8);animation-duration:calc(var(--animate-duration)*0.8)}.animate__animated.animate__slow{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2)}.animate__animated.animate__slower{-webkit-animation-duration:3s;animation-duration:3s;-webkit-animation-duration:calc(var(--animate-duration)*3);animation-duration:calc(var(--animate-duration)*3)}@media (prefers-reduced-motion:reduce),print{.animate__animated{-webkit-animation-duration:1ms!important;animation-duration:1ms!important;-webkit-transition-duration:1ms!important;transition-duration:1ms!important;-webkit-animation-iteration-count:1!important;animation-iteration-count:1!important}.animate__animated[class*=Out]{opacity:0}}@-webkit-keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0) scaleY(.95);transform:translateZ(0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}@keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0) scaleY(.95);transform:translateZ(0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}.animate__bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.animate__flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__pulse{-webkit-animation-name:pulse;animation-name:pulse;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shakeX{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shakeX{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.animate__shakeX{-webkit-animation-name:shakeX;animation-name:shakeX}@-webkit-keyframes shakeY{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}@keyframes shakeY{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}.animate__shakeY{-webkit-animation-name:shakeY;animation-name:shakeY}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.animate__headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}.animate__swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}@keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.animate__jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}.animate__heartBeat{-webkit-animation-name:heartBeat;animation-name:heartBeat;-webkit-animation-duration:1.3s;animation-duration:1.3s;-webkit-animation-duration:calc(var(--animate-duration)*1.3);animation-duration:calc(var(--animate-duration)*1.3);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(.7);transform:translateY(-1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(.7);transform:translateY(-1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInDown{-webkit-animation-name:backInDown;animation-name:backInDown}@-webkit-keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInLeft{-webkit-animation-name:backInLeft;animation-name:backInLeft}@-webkit-keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInRight{-webkit-animation-name:backInRight;animation-name:backInRight}@-webkit-keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(.7);transform:translateY(1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(.7);transform:translateY(1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInUp{-webkit-animation-name:backInUp;animation-name:backInUp}@-webkit-keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(700px) scale(.7);transform:translateY(700px) scale(.7);opacity:.7}}@keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(700px) scale(.7);transform:translateY(700px) scale(.7);opacity:.7}}.animate__backOutDown{-webkit-animation-name:backOutDown;animation-name:backOutDown}@-webkit-keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}}@keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}}.animate__backOutLeft{-webkit-animation-name:backOutLeft;animation-name:backOutLeft}@-webkit-keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}}@keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}}.animate__backOutRight{-webkit-animation-name:backOutRight;animation-name:backOutRight}@-webkit-keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(-700px) scale(.7);transform:translateY(-700px) scale(.7);opacity:.7}}@keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(-700px) scale(.7);transform:translateY(-700px) scale(.7);opacity:.7}}.animate__backOutUp{-webkit-animation-name:backOutUp;animation-name:backOutUp}@-webkit-keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__bounceIn{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.animate__bounceOut{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(.985);transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(.985);transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}.animate__bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}.animate__bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}.animate__bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(.985);transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(.9);transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(.985);transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(.9);transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}.animate__bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate__fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeInTopLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInTopLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInTopLeft{-webkit-animation-name:fadeInTopLeft;animation-name:fadeInTopLeft}@-webkit-keyframes fadeInTopRight{0%{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInTopRight{0%{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInTopRight{-webkit-animation-name:fadeInTopRight;animation-name:fadeInTopRight}@-webkit-keyframes fadeInBottomLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInBottomLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInBottomLeft{-webkit-animation-name:fadeInBottomLeft;animation-name:fadeInBottomLeft}@-webkit-keyframes fadeInBottomRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInBottomRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInBottomRight{-webkit-animation-name:fadeInBottomRight;animation-name:fadeInBottomRight}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.animate__fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.animate__fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.animate__fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.animate__fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.animate__fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.animate__fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.animate__fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.animate__fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.animate__fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes fadeOutTopLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}@keyframes fadeOutTopLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}.animate__fadeOutTopLeft{-webkit-animation-name:fadeOutTopLeft;animation-name:fadeOutTopLeft}@-webkit-keyframes fadeOutTopRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}@keyframes fadeOutTopRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}.animate__fadeOutTopRight{-webkit-animation-name:fadeOutTopRight;animation-name:fadeOutTopRight}@-webkit-keyframes fadeOutBottomRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}@keyframes fadeOutBottomRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}.animate__fadeOutBottomRight{-webkit-animation-name:fadeOutBottomRight;animation-name:fadeOutBottomRight}@-webkit-keyframes fadeOutBottomLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}@keyframes fadeOutBottomLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}.animate__fadeOutBottomLeft{-webkit-animation-name:fadeOutBottomLeft;animation-name:fadeOutBottomLeft}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animate__animated.animate__flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.animate__flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.animate__flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}.animate__flipOutX{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}.animate__flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedInRight{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedInRight{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__lightSpeedInRight{-webkit-animation-name:lightSpeedInRight;animation-name:lightSpeedInRight;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedInLeft{0%{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedInLeft{0%{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__lightSpeedInLeft{-webkit-animation-name:lightSpeedInLeft;animation-name:lightSpeedInLeft;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.animate__lightSpeedOutRight{-webkit-animation-name:lightSpeedOutRight;animation-name:lightSpeedOutRight;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes lightSpeedOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}@keyframes lightSpeedOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}.animate__lightSpeedOutLeft{-webkit-animation-name:lightSpeedOutLeft;animation-name:lightSpeedOutLeft;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOut{0%{opacity:1}to{-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{opacity:1}to{-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.animate__rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateOutDownLeft{0%{opacity:1}to{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}@keyframes rotateOutDownLeft{0%{opacity:1}to{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}.animate__rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutDownRight{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutDownRight{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.animate__rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOutUpLeft{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutUpLeft{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.animate__rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutUpRight{0%{opacity:1}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{opacity:1}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.animate__rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.animate__hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2);-webkit-animation-name:hinge;animation-name:hinge;-webkit-transform-origin:top left;transform-origin:top left}@-webkit-keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.animate__jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}@keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}.animate__rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.animate__zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}.animate__zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}.animate__zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft;-webkit-transform-origin:left center;transform-origin:left center}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}.animate__zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight;-webkit-transform-origin:right center;transform-origin:right center}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.animate__slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.animate__slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.animate__slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.animate__slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}