.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-f4f7acbd-577d-4a51-9199-65949336ba0f {
  margin-left: auto;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
background-color: rgba(248, 248, 245, 1);
}
@media (min-width: 1200px){#s-f4f7acbd-577d-4a51-9199-65949336ba0f {
  display: none;
}
#s-f4f7acbd-577d-4a51-9199-65949336ba0f, #wrap-s-f4f7acbd-577d-4a51-9199-65949336ba0f, #wrap-content-s-f4f7acbd-577d-4a51-9199-65949336ba0f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f4f7acbd-577d-4a51-9199-65949336ba0f {
  display: none;
}
#s-f4f7acbd-577d-4a51-9199-65949336ba0f, #wrap-s-f4f7acbd-577d-4a51-9199-65949336ba0f, #wrap-content-s-f4f7acbd-577d-4a51-9199-65949336ba0f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f4f7acbd-577d-4a51-9199-65949336ba0f {
  display: none;
}
#s-f4f7acbd-577d-4a51-9199-65949336ba0f, #wrap-s-f4f7acbd-577d-4a51-9199-65949336ba0f, #wrap-content-s-f4f7acbd-577d-4a51-9199-65949336ba0f { display: none !important; }}@media (max-width: 767px){#s-f4f7acbd-577d-4a51-9199-65949336ba0f {
  display: none;
}
#s-f4f7acbd-577d-4a51-9199-65949336ba0f, #wrap-s-f4f7acbd-577d-4a51-9199-65949336ba0f, #wrap-content-s-f4f7acbd-577d-4a51-9199-65949336ba0f { display: none !important; }}







#s-f4f7acbd-577d-4a51-9199-65949336ba0f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f4f7acbd-577d-4a51-9199-65949336ba0f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 {
  margin-top: 8px;
margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

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

.shg-image-content-margin-container-s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 8px;

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image {
  box-sizing: border-box;
}



.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container {
      position: relative;
    }

    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image {
  box-sizing: border-box;
}



.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container {
      position: relative;
    }

    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image {
  box-sizing: border-box;
}



.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container {
      position: relative;
    }

    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image {
  box-sizing: border-box;
}



.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container {
      position: relative;
    }

    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image {
  box-sizing: border-box;
}



.s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container {
      position: relative;
    }

    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18eaf2b6-f578-4a90-be7b-5a340fb480a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
.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-3c6f0df5-1e6a-4b0e-ae83-65f10a057e73 {
  margin-top: 30px;
margin-left: auto;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
}

@media (min-width: 0px) {
[id="s-3c6f0df5-1e6a-4b0e-ae83-65f10a057e73"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 768px) {
[id="s-3c6f0df5-1e6a-4b0e-ae83-65f10a057e73"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 992px) {
[id="s-3c6f0df5-1e6a-4b0e-ae83-65f10a057e73"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 1200px) {
[id="s-3c6f0df5-1e6a-4b0e-ae83-65f10a057e73"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 4.0px);
}

}

#s-6e70f480-db36-434f-8bdb-00b2e8e333c8 {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-6e70f480-db36-434f-8bdb-00b2e8e333c8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6e70f480-db36-434f-8bdb-00b2e8e333c8 {
  cursor: pointer;
}#s-6e70f480-db36-434f-8bdb-00b2e8e333c8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3889b926-1925-4d9b-b499-dcd54f6adbd6 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-3889b926-1925-4d9b-b499-dcd54f6adbd6 {
  margin: 0 !important;
  overflow: visible;
}

#s-3889b926-1925-4d9b-b499-dcd54f6adbd6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3889b926-1925-4d9b-b499-dcd54f6adbd6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3889b926-1925-4d9b-b499-dcd54f6adbd6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image {
  /* Add background color handling */
  
}

#s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 5px;

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3889b926-1925-4d9b-b499-dcd54f6adbd6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3889b926-1925-4d9b-b499-dcd54f6adbd6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3889b926-1925-4d9b-b499-dcd54f6adbd6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-3889b926-1925-4d9b-b499-dcd54f6adbd6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image {
  box-sizing: border-box;
}



.s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container {
      position: relative;
    }

    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-3889b926-1925-4d9b-b499-dcd54f6adbd6 {
  margin: 0 !important;
  overflow: visible;
}

#s-3889b926-1925-4d9b-b499-dcd54f6adbd6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3889b926-1925-4d9b-b499-dcd54f6adbd6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3889b926-1925-4d9b-b499-dcd54f6adbd6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image {
  /* Add background color handling */
  
}

#s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3889b926-1925-4d9b-b499-dcd54f6adbd6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3889b926-1925-4d9b-b499-dcd54f6adbd6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3889b926-1925-4d9b-b499-dcd54f6adbd6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-3889b926-1925-4d9b-b499-dcd54f6adbd6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image {
  box-sizing: border-box;
}



.s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container {
      position: relative;
    }

    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-3889b926-1925-4d9b-b499-dcd54f6adbd6 {
  margin: 0 !important;
  overflow: visible;
}

#s-3889b926-1925-4d9b-b499-dcd54f6adbd6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3889b926-1925-4d9b-b499-dcd54f6adbd6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3889b926-1925-4d9b-b499-dcd54f6adbd6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image {
  /* Add background color handling */
  
}

#s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3889b926-1925-4d9b-b499-dcd54f6adbd6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3889b926-1925-4d9b-b499-dcd54f6adbd6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3889b926-1925-4d9b-b499-dcd54f6adbd6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-3889b926-1925-4d9b-b499-dcd54f6adbd6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image {
  box-sizing: border-box;
}



.s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container {
      position: relative;
    }

    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-3889b926-1925-4d9b-b499-dcd54f6adbd6 {
  margin: 0 !important;
  overflow: visible;
}

#s-3889b926-1925-4d9b-b499-dcd54f6adbd6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3889b926-1925-4d9b-b499-dcd54f6adbd6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3889b926-1925-4d9b-b499-dcd54f6adbd6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image {
  /* Add background color handling */
  
}

#s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3889b926-1925-4d9b-b499-dcd54f6adbd6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3889b926-1925-4d9b-b499-dcd54f6adbd6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3889b926-1925-4d9b-b499-dcd54f6adbd6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-3889b926-1925-4d9b-b499-dcd54f6adbd6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image {
  box-sizing: border-box;
}



.s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container {
      position: relative;
    }

    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-3889b926-1925-4d9b-b499-dcd54f6adbd6 {
  margin: 0 !important;
  overflow: visible;
}

#s-3889b926-1925-4d9b-b499-dcd54f6adbd6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3889b926-1925-4d9b-b499-dcd54f6adbd6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3889b926-1925-4d9b-b499-dcd54f6adbd6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image {
  /* Add background color handling */
  
}

#s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3889b926-1925-4d9b-b499-dcd54f6adbd6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3889b926-1925-4d9b-b499-dcd54f6adbd6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3889b926-1925-4d9b-b499-dcd54f6adbd6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-3889b926-1925-4d9b-b499-dcd54f6adbd6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image {
  box-sizing: border-box;
}



.s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container {
      position: relative;
    }

    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3889b926-1925-4d9b-b499-dcd54f6adbd6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: rgba(119, 73, 157, 1);
  font-family: "Fraunces";
  text-transform: none;
  font-weight: 600;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

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

#s-f85fe987-2846-4651-bb19-9bd63fdcbb15 {
  margin-top: 5px;
margin-left: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-f85fe987-2846-4651-bb19-9bd63fdcbb15 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.2em;
  
  
}



.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: rgba(119, 73, 157, 1);
  font-family: "Fraunces";
  font-weight: 600;
}

.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: 500;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: rgba(63, 56, 125, 1);
  font-family: "Figtree";
}

.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: rgba(119, 73, 157, 1);
  font-family: "Fraunces";
  font-weight: 600;
}

.shg-theme-text-content p {
  color: rgba(63, 56, 125, 1);
  font-family: "Figtree";
  font-weight: 500;
}

#s-cd90e790-4ba6-4da0-9450-d52cdcfbd86a {
  margin-top: -10px;
margin-left: 10px;
margin-right: auto;
}

#s-e9e5af87-9400-4592-8f3c-cb16722c9126 {
  margin-left: 8px;
margin-bottom: 8px;
margin-right: auto;
max-width: 88px;
aspect-ratio: 518/116;
text-align: left;
}

#s-e9e5af87-9400-4592-8f3c-cb16722c9126 {
  margin: 0 !important;
  overflow: visible;
}

#s-e9e5af87-9400-4592-8f3c-cb16722c9126-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e9e5af87-9400-4592-8f3c-cb16722c9126 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 8px;
  
  
  margin-bottom: 8px;
}

.shg-image-content-margin-container-s-e9e5af87-9400-4592-8f3c-cb16722c9126 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image {
  /* Add background color handling */
  
}

#s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e9e5af87-9400-4592-8f3c-cb16722c9126 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-e9e5af87-9400-4592-8f3c-cb16722c9126 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e9e5af87-9400-4592-8f3c-cb16722c9126 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-e9e5af87-9400-4592-8f3c-cb16722c9126 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e9e5af87-9400-4592-8f3c-cb16722c9126.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image {
  box-sizing: border-box;
}



.s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e9e5af87-9400-4592-8f3c-cb16722c9126 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container {
      position: relative;
    }

    .s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

@media (min-width: 1200px){#s-e9e5af87-9400-4592-8f3c-cb16722c9126 {
  margin: 0 !important;
  overflow: visible;
}

#s-e9e5af87-9400-4592-8f3c-cb16722c9126-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e9e5af87-9400-4592-8f3c-cb16722c9126 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e9e5af87-9400-4592-8f3c-cb16722c9126 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image {
  /* Add background color handling */
  
}

#s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e9e5af87-9400-4592-8f3c-cb16722c9126 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-e9e5af87-9400-4592-8f3c-cb16722c9126 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e9e5af87-9400-4592-8f3c-cb16722c9126 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-e9e5af87-9400-4592-8f3c-cb16722c9126 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e9e5af87-9400-4592-8f3c-cb16722c9126.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image {
  box-sizing: border-box;
}



.s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e9e5af87-9400-4592-8f3c-cb16722c9126 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container {
      position: relative;
    }

    .s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-e9e5af87-9400-4592-8f3c-cb16722c9126 {
  margin: 0 !important;
  overflow: visible;
}

#s-e9e5af87-9400-4592-8f3c-cb16722c9126-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e9e5af87-9400-4592-8f3c-cb16722c9126 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e9e5af87-9400-4592-8f3c-cb16722c9126 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image {
  /* Add background color handling */
  
}

#s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e9e5af87-9400-4592-8f3c-cb16722c9126 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-e9e5af87-9400-4592-8f3c-cb16722c9126 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e9e5af87-9400-4592-8f3c-cb16722c9126 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-e9e5af87-9400-4592-8f3c-cb16722c9126 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e9e5af87-9400-4592-8f3c-cb16722c9126.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image {
  box-sizing: border-box;
}



.s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e9e5af87-9400-4592-8f3c-cb16722c9126 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container {
      position: relative;
    }

    .s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-e9e5af87-9400-4592-8f3c-cb16722c9126 {
  margin: 0 !important;
  overflow: visible;
}

#s-e9e5af87-9400-4592-8f3c-cb16722c9126-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e9e5af87-9400-4592-8f3c-cb16722c9126 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e9e5af87-9400-4592-8f3c-cb16722c9126 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image {
  /* Add background color handling */
  
}

#s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e9e5af87-9400-4592-8f3c-cb16722c9126 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-e9e5af87-9400-4592-8f3c-cb16722c9126 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e9e5af87-9400-4592-8f3c-cb16722c9126 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-e9e5af87-9400-4592-8f3c-cb16722c9126 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e9e5af87-9400-4592-8f3c-cb16722c9126.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image {
  box-sizing: border-box;
}



.s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e9e5af87-9400-4592-8f3c-cb16722c9126 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container {
      position: relative;
    }

    .s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (max-width: 767px){#s-e9e5af87-9400-4592-8f3c-cb16722c9126 {
  margin: 0 !important;
  overflow: visible;
}

#s-e9e5af87-9400-4592-8f3c-cb16722c9126-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e9e5af87-9400-4592-8f3c-cb16722c9126 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e9e5af87-9400-4592-8f3c-cb16722c9126 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image {
  /* Add background color handling */
  
}

#s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e9e5af87-9400-4592-8f3c-cb16722c9126 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-e9e5af87-9400-4592-8f3c-cb16722c9126 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e9e5af87-9400-4592-8f3c-cb16722c9126 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-e9e5af87-9400-4592-8f3c-cb16722c9126 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e9e5af87-9400-4592-8f3c-cb16722c9126.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image {
  box-sizing: border-box;
}



.s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e9e5af87-9400-4592-8f3c-cb16722c9126 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container {
      position: relative;
    }

    .s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e9e5af87-9400-4592-8f3c-cb16722c9126.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e9e5af87-9400-4592-8f3c-cb16722c9126 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}
#s-86f438e5-60ff-4c2e-966d-99067880b3c1 {
  margin-left: auto;
margin-bottom: 15px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-86f438e5-60ff-4c2e-966d-99067880b3c1"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-86f438e5-60ff-4c2e-966d-99067880b3c1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-86f438e5-60ff-4c2e-966d-99067880b3c1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-86f438e5-60ff-4c2e-966d-99067880b3c1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-e7d58f56-895b-4a6b-91fa-97ea6812ae34 {
  margin-left: 10px;
margin-right: auto;
}

#s-aafb791f-c951-4a51-8d16-d997a8ffb405 {
  margin-left: -10px;
margin-right: auto;
}

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

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

.shg-btn-text {
  font-weight: 500;
  font-family: "Figtree";
}

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

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

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

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

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

#s-2c9e2aa5-a494-4628-9790-07c6792736fa {
  margin-left: -20px;
margin-right: auto;
padding-top: 5px;
padding-left: 15px;
padding-bottom: 5px;
padding-right: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
background-color: rgba(121, 75, 161, 1);
text-align: center;
text-decoration: none;
}
#s-2c9e2aa5-a494-4628-9790-07c6792736fa:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2c9e2aa5-a494-4628-9790-07c6792736fa:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-2c9e2aa5-a494-4628-9790-07c6792736fa-root {
    text-align: center;
  }


#s-2c9e2aa5-a494-4628-9790-07c6792736fa.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-2c9e2aa5-a494-4628-9790-07c6792736fa-root {
    text-align: center;
  }


#s-2c9e2aa5-a494-4628-9790-07c6792736fa.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2c9e2aa5-a494-4628-9790-07c6792736fa-root {
    text-align: center;
  }


#s-2c9e2aa5-a494-4628-9790-07c6792736fa.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2c9e2aa5-a494-4628-9790-07c6792736fa-root {
    text-align: center;
  }


#s-2c9e2aa5-a494-4628-9790-07c6792736fa.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-2c9e2aa5-a494-4628-9790-07c6792736fa-root {
    text-align: center;
  }


#s-2c9e2aa5-a494-4628-9790-07c6792736fa.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}
#s-e3873d93-dac8-43f8-9345-b019129d8ac2 {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-e3873d93-dac8-43f8-9345-b019129d8ac2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e3873d93-dac8-43f8-9345-b019129d8ac2 {
  cursor: pointer;
}#s-e3873d93-dac8-43f8-9345-b019129d8ac2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 {
  margin: 0 !important;
  overflow: visible;
}

#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image {
  /* Add background color handling */
  
}

#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 5px;

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image {
  box-sizing: border-box;
}



.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container {
      position: relative;
    }

    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 {
  margin: 0 !important;
  overflow: visible;
}

#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image {
  /* Add background color handling */
  
}

#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image {
  box-sizing: border-box;
}



.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container {
      position: relative;
    }

    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 {
  margin: 0 !important;
  overflow: visible;
}

#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image {
  /* Add background color handling */
  
}

#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image {
  box-sizing: border-box;
}



.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container {
      position: relative;
    }

    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 {
  margin: 0 !important;
  overflow: visible;
}

#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image {
  /* Add background color handling */
  
}

#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image {
  box-sizing: border-box;
}



.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container {
      position: relative;
    }

    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 {
  margin: 0 !important;
  overflow: visible;
}

#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image {
  /* Add background color handling */
  
}

#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 .shogun-image-content {
  
    justify-content: center;
  
}

.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image {
  box-sizing: border-box;
}



.s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container {
      position: relative;
    }

    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dd0323f5-8e1b-4c55-af6f-3bd23bf86d71 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-c1d65ab6-4971-4dc7-a318-c5f871c31e5d {
  margin-top: 5px;
margin-left: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-c1d65ab6-4971-4dc7-a318-c5f871c31e5d .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.2em;
  
  
}



#s-081bf79c-3988-4d0f-87cc-46e5a3c9a4b2 {
  margin-top: -10px;
margin-left: 10px;
margin-right: auto;
}

#s-871b1109-3556-4d07-9c09-b0beae0237c4 {
  margin-left: 8px;
margin-bottom: 8px;
margin-right: auto;
max-width: 88px;
aspect-ratio: 518/116;
text-align: left;
}

#s-871b1109-3556-4d07-9c09-b0beae0237c4 {
  margin: 0 !important;
  overflow: visible;
}

#s-871b1109-3556-4d07-9c09-b0beae0237c4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-871b1109-3556-4d07-9c09-b0beae0237c4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 8px;
  
  
  margin-bottom: 8px;
}

.shg-image-content-margin-container-s-871b1109-3556-4d07-9c09-b0beae0237c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image {
  /* Add background color handling */
  
}

#s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-871b1109-3556-4d07-9c09-b0beae0237c4 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-871b1109-3556-4d07-9c09-b0beae0237c4 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-871b1109-3556-4d07-9c09-b0beae0237c4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-871b1109-3556-4d07-9c09-b0beae0237c4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-871b1109-3556-4d07-9c09-b0beae0237c4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image {
  box-sizing: border-box;
}



.s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-871b1109-3556-4d07-9c09-b0beae0237c4 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container {
      position: relative;
    }

    .s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

@media (min-width: 1200px){#s-871b1109-3556-4d07-9c09-b0beae0237c4 {
  margin: 0 !important;
  overflow: visible;
}

#s-871b1109-3556-4d07-9c09-b0beae0237c4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-871b1109-3556-4d07-9c09-b0beae0237c4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-871b1109-3556-4d07-9c09-b0beae0237c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image {
  /* Add background color handling */
  
}

#s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-871b1109-3556-4d07-9c09-b0beae0237c4 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-871b1109-3556-4d07-9c09-b0beae0237c4 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-871b1109-3556-4d07-9c09-b0beae0237c4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-871b1109-3556-4d07-9c09-b0beae0237c4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-871b1109-3556-4d07-9c09-b0beae0237c4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image {
  box-sizing: border-box;
}



.s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-871b1109-3556-4d07-9c09-b0beae0237c4 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container {
      position: relative;
    }

    .s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-871b1109-3556-4d07-9c09-b0beae0237c4 {
  margin: 0 !important;
  overflow: visible;
}

#s-871b1109-3556-4d07-9c09-b0beae0237c4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-871b1109-3556-4d07-9c09-b0beae0237c4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-871b1109-3556-4d07-9c09-b0beae0237c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image {
  /* Add background color handling */
  
}

#s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-871b1109-3556-4d07-9c09-b0beae0237c4 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-871b1109-3556-4d07-9c09-b0beae0237c4 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-871b1109-3556-4d07-9c09-b0beae0237c4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-871b1109-3556-4d07-9c09-b0beae0237c4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-871b1109-3556-4d07-9c09-b0beae0237c4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image {
  box-sizing: border-box;
}



.s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-871b1109-3556-4d07-9c09-b0beae0237c4 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container {
      position: relative;
    }

    .s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-871b1109-3556-4d07-9c09-b0beae0237c4 {
  margin: 0 !important;
  overflow: visible;
}

#s-871b1109-3556-4d07-9c09-b0beae0237c4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-871b1109-3556-4d07-9c09-b0beae0237c4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-871b1109-3556-4d07-9c09-b0beae0237c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image {
  /* Add background color handling */
  
}

#s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-871b1109-3556-4d07-9c09-b0beae0237c4 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-871b1109-3556-4d07-9c09-b0beae0237c4 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-871b1109-3556-4d07-9c09-b0beae0237c4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-871b1109-3556-4d07-9c09-b0beae0237c4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-871b1109-3556-4d07-9c09-b0beae0237c4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image {
  box-sizing: border-box;
}



.s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-871b1109-3556-4d07-9c09-b0beae0237c4 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container {
      position: relative;
    }

    .s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (max-width: 767px){#s-871b1109-3556-4d07-9c09-b0beae0237c4 {
  margin: 0 !important;
  overflow: visible;
}

#s-871b1109-3556-4d07-9c09-b0beae0237c4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-871b1109-3556-4d07-9c09-b0beae0237c4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-871b1109-3556-4d07-9c09-b0beae0237c4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image {
  /* Add background color handling */
  
}

#s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-871b1109-3556-4d07-9c09-b0beae0237c4 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-871b1109-3556-4d07-9c09-b0beae0237c4 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-871b1109-3556-4d07-9c09-b0beae0237c4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-871b1109-3556-4d07-9c09-b0beae0237c4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-871b1109-3556-4d07-9c09-b0beae0237c4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image {
  box-sizing: border-box;
}



.s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-871b1109-3556-4d07-9c09-b0beae0237c4 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container {
      position: relative;
    }

    .s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-871b1109-3556-4d07-9c09-b0beae0237c4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-871b1109-3556-4d07-9c09-b0beae0237c4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}
#s-f8b85eb3-f071-4bc0-91dd-701d54063d88 {
  margin-left: auto;
margin-bottom: 15px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-f8b85eb3-f071-4bc0-91dd-701d54063d88"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-f8b85eb3-f071-4bc0-91dd-701d54063d88"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f8b85eb3-f071-4bc0-91dd-701d54063d88"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f8b85eb3-f071-4bc0-91dd-701d54063d88"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-a57f1ede-1384-4547-8379-da7e6093d534 {
  margin-left: 10px;
margin-right: auto;
}

#s-df71b645-c02a-4755-b33a-5ecd63ef2e63 {
  margin-left: -10px;
margin-right: auto;
}

#s-649d61bb-fe82-4b19-a735-1cc6fbe88cfd {
  margin-left: -20px;
margin-right: auto;
padding-top: 5px;
padding-left: 15px;
padding-bottom: 5px;
padding-right: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
background-color: rgba(121, 75, 161, 1);
text-align: center;
text-decoration: none;
}
#s-649d61bb-fe82-4b19-a735-1cc6fbe88cfd:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-649d61bb-fe82-4b19-a735-1cc6fbe88cfd:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-649d61bb-fe82-4b19-a735-1cc6fbe88cfd-root {
    text-align: center;
  }


#s-649d61bb-fe82-4b19-a735-1cc6fbe88cfd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-649d61bb-fe82-4b19-a735-1cc6fbe88cfd-root {
    text-align: center;
  }


#s-649d61bb-fe82-4b19-a735-1cc6fbe88cfd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-649d61bb-fe82-4b19-a735-1cc6fbe88cfd-root {
    text-align: center;
  }


#s-649d61bb-fe82-4b19-a735-1cc6fbe88cfd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-649d61bb-fe82-4b19-a735-1cc6fbe88cfd-root {
    text-align: center;
  }


#s-649d61bb-fe82-4b19-a735-1cc6fbe88cfd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-649d61bb-fe82-4b19-a735-1cc6fbe88cfd-root {
    text-align: center;
  }


#s-649d61bb-fe82-4b19-a735-1cc6fbe88cfd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}
#s-c67503c6-ec12-480e-aad0-55eb97211d04 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
}

@media (min-width: 0px) {
[id="s-c67503c6-ec12-480e-aad0-55eb97211d04"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 768px) {
[id="s-c67503c6-ec12-480e-aad0-55eb97211d04"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 992px) {
[id="s-c67503c6-ec12-480e-aad0-55eb97211d04"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 1200px) {
[id="s-c67503c6-ec12-480e-aad0-55eb97211d04"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 4.0px);
}

}

#s-41fe524c-3b75-4185-b642-919d7285133e {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-41fe524c-3b75-4185-b642-919d7285133e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-41fe524c-3b75-4185-b642-919d7285133e {
  cursor: pointer;
}#s-41fe524c-3b75-4185-b642-919d7285133e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 {
  margin: 0 !important;
  overflow: visible;
}

#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image {
  /* Add background color handling */
  
}

#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 5px;

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image {
  box-sizing: border-box;
}



.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container {
      position: relative;
    }

    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 {
  margin: 0 !important;
  overflow: visible;
}

#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image {
  /* Add background color handling */
  
}

#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image {
  box-sizing: border-box;
}



.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container {
      position: relative;
    }

    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 {
  margin: 0 !important;
  overflow: visible;
}

#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image {
  /* Add background color handling */
  
}

#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image {
  box-sizing: border-box;
}



.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container {
      position: relative;
    }

    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 {
  margin: 0 !important;
  overflow: visible;
}

#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image {
  /* Add background color handling */
  
}

#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image {
  box-sizing: border-box;
}



.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container {
      position: relative;
    }

    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 {
  margin: 0 !important;
  overflow: visible;
}

#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image {
  /* Add background color handling */
  
}

#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image {
  box-sizing: border-box;
}



.s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container {
      position: relative;
    }

    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-39ef1d2e-283d-49f1-a95f-7e55c149c8a5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-9806fe0d-88ec-4f6e-a183-782302ed7f18 {
  margin-top: 5px;
margin-left: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-9806fe0d-88ec-4f6e-a183-782302ed7f18 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.2em;
  
  
}



#s-2e0b4382-2a0d-4f5e-b089-3e8e11d8a6e9 {
  margin-top: -10px;
margin-left: 10px;
margin-right: auto;
}

#s-f5569825-1770-444e-985f-974ec78d3876 {
  margin-left: 8px;
margin-bottom: 8px;
margin-right: auto;
max-width: 88px;
aspect-ratio: 518/116;
text-align: left;
}

#s-f5569825-1770-444e-985f-974ec78d3876 {
  margin: 0 !important;
  overflow: visible;
}

#s-f5569825-1770-444e-985f-974ec78d3876-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f5569825-1770-444e-985f-974ec78d3876 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 8px;
  
  
  margin-bottom: 8px;
}

.shg-image-content-margin-container-s-f5569825-1770-444e-985f-974ec78d3876 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image {
  /* Add background color handling */
  
}

#s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f5569825-1770-444e-985f-974ec78d3876 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-f5569825-1770-444e-985f-974ec78d3876 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f5569825-1770-444e-985f-974ec78d3876 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-f5569825-1770-444e-985f-974ec78d3876.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-f5569825-1770-444e-985f-974ec78d3876 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f5569825-1770-444e-985f-974ec78d3876.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5569825-1770-444e-985f-974ec78d3876.shogun-image {
  box-sizing: border-box;
}



.s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f5569825-1770-444e-985f-974ec78d3876 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container {
      position: relative;
    }

    .s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

@media (min-width: 1200px){#s-f5569825-1770-444e-985f-974ec78d3876 {
  margin: 0 !important;
  overflow: visible;
}

#s-f5569825-1770-444e-985f-974ec78d3876-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f5569825-1770-444e-985f-974ec78d3876 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f5569825-1770-444e-985f-974ec78d3876 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image {
  /* Add background color handling */
  
}

#s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f5569825-1770-444e-985f-974ec78d3876 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-f5569825-1770-444e-985f-974ec78d3876 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f5569825-1770-444e-985f-974ec78d3876 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-f5569825-1770-444e-985f-974ec78d3876.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-f5569825-1770-444e-985f-974ec78d3876 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f5569825-1770-444e-985f-974ec78d3876.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5569825-1770-444e-985f-974ec78d3876.shogun-image {
  box-sizing: border-box;
}



.s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f5569825-1770-444e-985f-974ec78d3876 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container {
      position: relative;
    }

    .s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-f5569825-1770-444e-985f-974ec78d3876 {
  margin: 0 !important;
  overflow: visible;
}

#s-f5569825-1770-444e-985f-974ec78d3876-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f5569825-1770-444e-985f-974ec78d3876 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f5569825-1770-444e-985f-974ec78d3876 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image {
  /* Add background color handling */
  
}

#s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f5569825-1770-444e-985f-974ec78d3876 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-f5569825-1770-444e-985f-974ec78d3876 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f5569825-1770-444e-985f-974ec78d3876 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-f5569825-1770-444e-985f-974ec78d3876.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-f5569825-1770-444e-985f-974ec78d3876 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f5569825-1770-444e-985f-974ec78d3876.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5569825-1770-444e-985f-974ec78d3876.shogun-image {
  box-sizing: border-box;
}



.s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f5569825-1770-444e-985f-974ec78d3876 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container {
      position: relative;
    }

    .s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-f5569825-1770-444e-985f-974ec78d3876 {
  margin: 0 !important;
  overflow: visible;
}

#s-f5569825-1770-444e-985f-974ec78d3876-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f5569825-1770-444e-985f-974ec78d3876 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f5569825-1770-444e-985f-974ec78d3876 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image {
  /* Add background color handling */
  
}

#s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f5569825-1770-444e-985f-974ec78d3876 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-f5569825-1770-444e-985f-974ec78d3876 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f5569825-1770-444e-985f-974ec78d3876 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-f5569825-1770-444e-985f-974ec78d3876.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-f5569825-1770-444e-985f-974ec78d3876 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f5569825-1770-444e-985f-974ec78d3876.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5569825-1770-444e-985f-974ec78d3876.shogun-image {
  box-sizing: border-box;
}



.s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f5569825-1770-444e-985f-974ec78d3876 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container {
      position: relative;
    }

    .s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (max-width: 767px){#s-f5569825-1770-444e-985f-974ec78d3876 {
  margin: 0 !important;
  overflow: visible;
}

#s-f5569825-1770-444e-985f-974ec78d3876-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f5569825-1770-444e-985f-974ec78d3876 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f5569825-1770-444e-985f-974ec78d3876 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image {
  /* Add background color handling */
  
}

#s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f5569825-1770-444e-985f-974ec78d3876 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-f5569825-1770-444e-985f-974ec78d3876 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f5569825-1770-444e-985f-974ec78d3876 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-f5569825-1770-444e-985f-974ec78d3876.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-f5569825-1770-444e-985f-974ec78d3876 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f5569825-1770-444e-985f-974ec78d3876.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5569825-1770-444e-985f-974ec78d3876.shogun-image {
  box-sizing: border-box;
}



.s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f5569825-1770-444e-985f-974ec78d3876 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container {
      position: relative;
    }

    .s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f5569825-1770-444e-985f-974ec78d3876.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f5569825-1770-444e-985f-974ec78d3876 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}
#s-d1850ac3-cf46-4ae1-824e-6f7cc5dbee5e {
  margin-left: auto;
margin-bottom: 15px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-d1850ac3-cf46-4ae1-824e-6f7cc5dbee5e"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-d1850ac3-cf46-4ae1-824e-6f7cc5dbee5e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d1850ac3-cf46-4ae1-824e-6f7cc5dbee5e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d1850ac3-cf46-4ae1-824e-6f7cc5dbee5e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-189d7cdc-0577-46ff-b77a-37afc358dd95 {
  margin-left: 10px;
margin-right: auto;
}

#s-0bc30a9a-3eb7-47bb-a769-c9e1a8b2df66 {
  margin-left: -10px;
margin-right: auto;
}

#s-5083db7b-1604-4e26-90ab-2b87e41b3691 {
  margin-left: -20px;
margin-right: auto;
padding-top: 5px;
padding-left: 15px;
padding-bottom: 5px;
padding-right: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
background-color: rgba(121, 75, 161, 1);
text-align: center;
text-decoration: none;
}
#s-5083db7b-1604-4e26-90ab-2b87e41b3691:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-5083db7b-1604-4e26-90ab-2b87e41b3691:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-5083db7b-1604-4e26-90ab-2b87e41b3691-root {
    text-align: center;
  }


#s-5083db7b-1604-4e26-90ab-2b87e41b3691.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5083db7b-1604-4e26-90ab-2b87e41b3691-root {
    text-align: center;
  }


#s-5083db7b-1604-4e26-90ab-2b87e41b3691.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5083db7b-1604-4e26-90ab-2b87e41b3691-root {
    text-align: center;
  }


#s-5083db7b-1604-4e26-90ab-2b87e41b3691.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5083db7b-1604-4e26-90ab-2b87e41b3691-root {
    text-align: center;
  }


#s-5083db7b-1604-4e26-90ab-2b87e41b3691.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5083db7b-1604-4e26-90ab-2b87e41b3691-root {
    text-align: center;
  }


#s-5083db7b-1604-4e26-90ab-2b87e41b3691.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}
#s-0fe5654a-d65f-448e-9954-e074a411c956 {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-0fe5654a-d65f-448e-9954-e074a411c956 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0fe5654a-d65f-448e-9954-e074a411c956 {
  cursor: pointer;
}#s-0fe5654a-d65f-448e-9954-e074a411c956.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f {
  margin: 0 !important;
  overflow: visible;
}

#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image {
  /* Add background color handling */
  
}

#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 5px;

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f .shogun-image-content {
  
    justify-content: center;
  
}

.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image {
  box-sizing: border-box;
}



.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container {
      position: relative;
    }

    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f {
  margin: 0 !important;
  overflow: visible;
}

#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image {
  /* Add background color handling */
  
}

#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f .shogun-image-content {
  
    justify-content: center;
  
}

.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image {
  box-sizing: border-box;
}



.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container {
      position: relative;
    }

    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f {
  margin: 0 !important;
  overflow: visible;
}

#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image {
  /* Add background color handling */
  
}

#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f .shogun-image-content {
  
    justify-content: center;
  
}

.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image {
  box-sizing: border-box;
}



.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container {
      position: relative;
    }

    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f {
  margin: 0 !important;
  overflow: visible;
}

#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image {
  /* Add background color handling */
  
}

#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f .shogun-image-content {
  
    justify-content: center;
  
}

.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image {
  box-sizing: border-box;
}



.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container {
      position: relative;
    }

    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f {
  margin: 0 !important;
  overflow: visible;
}

#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image {
  /* Add background color handling */
  
}

#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f .shogun-image-content {
  
    justify-content: center;
  
}

.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image {
  box-sizing: border-box;
}



.s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container {
      position: relative;
    }

    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a0b5d9e7-2f1a-41d4-a2ea-4b6d3f5cb23f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-872ea6b2-952f-473c-9efa-ece933ce3656 {
  margin-top: 5px;
margin-left: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-872ea6b2-952f-473c-9efa-ece933ce3656 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.2em;
  
  
}



#s-c596e436-88b1-4d10-bded-fffbd85b3117 {
  margin-top: -10px;
margin-left: 10px;
margin-right: auto;
}

#s-99d73239-0882-4234-86c2-7803243fe156 {
  margin-left: 8px;
margin-bottom: 8px;
margin-right: auto;
max-width: 88px;
aspect-ratio: 518/116;
text-align: left;
}

#s-99d73239-0882-4234-86c2-7803243fe156 {
  margin: 0 !important;
  overflow: visible;
}

#s-99d73239-0882-4234-86c2-7803243fe156-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-99d73239-0882-4234-86c2-7803243fe156 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 8px;
  
  
  margin-bottom: 8px;
}

.shg-image-content-margin-container-s-99d73239-0882-4234-86c2-7803243fe156 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image {
  /* Add background color handling */
  
}

#s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-99d73239-0882-4234-86c2-7803243fe156 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-99d73239-0882-4234-86c2-7803243fe156 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-99d73239-0882-4234-86c2-7803243fe156 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-99d73239-0882-4234-86c2-7803243fe156.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-99d73239-0882-4234-86c2-7803243fe156 .shogun-image-content {
  
    justify-content: center;
  
}

.s-99d73239-0882-4234-86c2-7803243fe156.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99d73239-0882-4234-86c2-7803243fe156.shogun-image {
  box-sizing: border-box;
}



.s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-99d73239-0882-4234-86c2-7803243fe156 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container {
      position: relative;
    }

    .s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

@media (min-width: 1200px){#s-99d73239-0882-4234-86c2-7803243fe156 {
  margin: 0 !important;
  overflow: visible;
}

#s-99d73239-0882-4234-86c2-7803243fe156-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-99d73239-0882-4234-86c2-7803243fe156 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-99d73239-0882-4234-86c2-7803243fe156 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image {
  /* Add background color handling */
  
}

#s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-99d73239-0882-4234-86c2-7803243fe156 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-99d73239-0882-4234-86c2-7803243fe156 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-99d73239-0882-4234-86c2-7803243fe156 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-99d73239-0882-4234-86c2-7803243fe156.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-99d73239-0882-4234-86c2-7803243fe156 .shogun-image-content {
  
    justify-content: center;
  
}

.s-99d73239-0882-4234-86c2-7803243fe156.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99d73239-0882-4234-86c2-7803243fe156.shogun-image {
  box-sizing: border-box;
}



.s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-99d73239-0882-4234-86c2-7803243fe156 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container {
      position: relative;
    }

    .s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-99d73239-0882-4234-86c2-7803243fe156 {
  margin: 0 !important;
  overflow: visible;
}

#s-99d73239-0882-4234-86c2-7803243fe156-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-99d73239-0882-4234-86c2-7803243fe156 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-99d73239-0882-4234-86c2-7803243fe156 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image {
  /* Add background color handling */
  
}

#s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-99d73239-0882-4234-86c2-7803243fe156 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-99d73239-0882-4234-86c2-7803243fe156 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-99d73239-0882-4234-86c2-7803243fe156 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-99d73239-0882-4234-86c2-7803243fe156.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-99d73239-0882-4234-86c2-7803243fe156 .shogun-image-content {
  
    justify-content: center;
  
}

.s-99d73239-0882-4234-86c2-7803243fe156.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99d73239-0882-4234-86c2-7803243fe156.shogun-image {
  box-sizing: border-box;
}



.s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-99d73239-0882-4234-86c2-7803243fe156 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container {
      position: relative;
    }

    .s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-99d73239-0882-4234-86c2-7803243fe156 {
  margin: 0 !important;
  overflow: visible;
}

#s-99d73239-0882-4234-86c2-7803243fe156-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-99d73239-0882-4234-86c2-7803243fe156 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-99d73239-0882-4234-86c2-7803243fe156 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image {
  /* Add background color handling */
  
}

#s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-99d73239-0882-4234-86c2-7803243fe156 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-99d73239-0882-4234-86c2-7803243fe156 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-99d73239-0882-4234-86c2-7803243fe156 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-99d73239-0882-4234-86c2-7803243fe156.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-99d73239-0882-4234-86c2-7803243fe156 .shogun-image-content {
  
    justify-content: center;
  
}

.s-99d73239-0882-4234-86c2-7803243fe156.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99d73239-0882-4234-86c2-7803243fe156.shogun-image {
  box-sizing: border-box;
}



.s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-99d73239-0882-4234-86c2-7803243fe156 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container {
      position: relative;
    }

    .s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (max-width: 767px){#s-99d73239-0882-4234-86c2-7803243fe156 {
  margin: 0 !important;
  overflow: visible;
}

#s-99d73239-0882-4234-86c2-7803243fe156-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-99d73239-0882-4234-86c2-7803243fe156 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-99d73239-0882-4234-86c2-7803243fe156 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image {
  /* Add background color handling */
  
}

#s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-99d73239-0882-4234-86c2-7803243fe156 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-99d73239-0882-4234-86c2-7803243fe156 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-99d73239-0882-4234-86c2-7803243fe156 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-99d73239-0882-4234-86c2-7803243fe156.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-99d73239-0882-4234-86c2-7803243fe156 .shogun-image-content {
  
    justify-content: center;
  
}

.s-99d73239-0882-4234-86c2-7803243fe156.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99d73239-0882-4234-86c2-7803243fe156.shogun-image {
  box-sizing: border-box;
}



.s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-99d73239-0882-4234-86c2-7803243fe156 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container {
      position: relative;
    }

    .s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-99d73239-0882-4234-86c2-7803243fe156.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-99d73239-0882-4234-86c2-7803243fe156 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}
#s-fef66bd8-da79-4a05-97ea-d835548d7b9f {
  margin-left: auto;
margin-bottom: 15px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-fef66bd8-da79-4a05-97ea-d835548d7b9f"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-fef66bd8-da79-4a05-97ea-d835548d7b9f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fef66bd8-da79-4a05-97ea-d835548d7b9f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fef66bd8-da79-4a05-97ea-d835548d7b9f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-d414749e-d2dc-4d89-ab18-70f5a2ff4f0d {
  margin-left: 10px;
margin-right: auto;
}

#s-b7185801-e080-499f-9761-7a7ed3024a9e {
  margin-left: -10px;
margin-right: auto;
}

#s-aaf9152a-a2a7-4769-91d4-70e70be17e0c {
  margin-left: -20px;
margin-right: auto;
padding-top: 5px;
padding-left: 15px;
padding-bottom: 5px;
padding-right: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
background-color: rgba(121, 75, 161, 1);
text-align: center;
text-decoration: none;
}
#s-aaf9152a-a2a7-4769-91d4-70e70be17e0c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-aaf9152a-a2a7-4769-91d4-70e70be17e0c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-aaf9152a-a2a7-4769-91d4-70e70be17e0c-root {
    text-align: center;
  }


#s-aaf9152a-a2a7-4769-91d4-70e70be17e0c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-aaf9152a-a2a7-4769-91d4-70e70be17e0c-root {
    text-align: center;
  }


#s-aaf9152a-a2a7-4769-91d4-70e70be17e0c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-aaf9152a-a2a7-4769-91d4-70e70be17e0c-root {
    text-align: center;
  }


#s-aaf9152a-a2a7-4769-91d4-70e70be17e0c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-aaf9152a-a2a7-4769-91d4-70e70be17e0c-root {
    text-align: center;
  }


#s-aaf9152a-a2a7-4769-91d4-70e70be17e0c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-aaf9152a-a2a7-4769-91d4-70e70be17e0c-root {
    text-align: center;
  }


#s-aaf9152a-a2a7-4769-91d4-70e70be17e0c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}
#s-25ef369d-aabc-46fc-b9e7-5c031f0a9efd {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
}

@media (min-width: 0px) {
[id="s-25ef369d-aabc-46fc-b9e7-5c031f0a9efd"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 768px) {
[id="s-25ef369d-aabc-46fc-b9e7-5c031f0a9efd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 992px) {
[id="s-25ef369d-aabc-46fc-b9e7-5c031f0a9efd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 1200px) {
[id="s-25ef369d-aabc-46fc-b9e7-5c031f0a9efd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 4.0px);
}

}

#s-09bb8b46-3004-4cfe-8544-ef44c18d3615 {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-09bb8b46-3004-4cfe-8544-ef44c18d3615 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-09bb8b46-3004-4cfe-8544-ef44c18d3615 {
  cursor: pointer;
}#s-09bb8b46-3004-4cfe-8544-ef44c18d3615.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-50936dc2-100d-4b44-92b8-b11eb2d80b13 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-50936dc2-100d-4b44-92b8-b11eb2d80b13 {
  margin: 0 !important;
  overflow: visible;
}

#s-50936dc2-100d-4b44-92b8-b11eb2d80b13-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-50936dc2-100d-4b44-92b8-b11eb2d80b13 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-50936dc2-100d-4b44-92b8-b11eb2d80b13 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image {
  /* Add background color handling */
  
}

#s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 5px;

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-50936dc2-100d-4b44-92b8-b11eb2d80b13 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-50936dc2-100d-4b44-92b8-b11eb2d80b13 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-50936dc2-100d-4b44-92b8-b11eb2d80b13 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-50936dc2-100d-4b44-92b8-b11eb2d80b13 .shogun-image-content {
  
    justify-content: center;
  
}

.s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image {
  box-sizing: border-box;
}



.s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container {
      position: relative;
    }

    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-50936dc2-100d-4b44-92b8-b11eb2d80b13 {
  margin: 0 !important;
  overflow: visible;
}

#s-50936dc2-100d-4b44-92b8-b11eb2d80b13-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-50936dc2-100d-4b44-92b8-b11eb2d80b13 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-50936dc2-100d-4b44-92b8-b11eb2d80b13 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image {
  /* Add background color handling */
  
}

#s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-50936dc2-100d-4b44-92b8-b11eb2d80b13 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-50936dc2-100d-4b44-92b8-b11eb2d80b13 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-50936dc2-100d-4b44-92b8-b11eb2d80b13 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-50936dc2-100d-4b44-92b8-b11eb2d80b13 .shogun-image-content {
  
    justify-content: center;
  
}

.s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image {
  box-sizing: border-box;
}



.s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container {
      position: relative;
    }

    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-50936dc2-100d-4b44-92b8-b11eb2d80b13 {
  margin: 0 !important;
  overflow: visible;
}

#s-50936dc2-100d-4b44-92b8-b11eb2d80b13-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-50936dc2-100d-4b44-92b8-b11eb2d80b13 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-50936dc2-100d-4b44-92b8-b11eb2d80b13 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image {
  /* Add background color handling */
  
}

#s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-50936dc2-100d-4b44-92b8-b11eb2d80b13 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-50936dc2-100d-4b44-92b8-b11eb2d80b13 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-50936dc2-100d-4b44-92b8-b11eb2d80b13 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-50936dc2-100d-4b44-92b8-b11eb2d80b13 .shogun-image-content {
  
    justify-content: center;
  
}

.s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image {
  box-sizing: border-box;
}



.s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container {
      position: relative;
    }

    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-50936dc2-100d-4b44-92b8-b11eb2d80b13 {
  margin: 0 !important;
  overflow: visible;
}

#s-50936dc2-100d-4b44-92b8-b11eb2d80b13-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-50936dc2-100d-4b44-92b8-b11eb2d80b13 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-50936dc2-100d-4b44-92b8-b11eb2d80b13 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image {
  /* Add background color handling */
  
}

#s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-50936dc2-100d-4b44-92b8-b11eb2d80b13 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-50936dc2-100d-4b44-92b8-b11eb2d80b13 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-50936dc2-100d-4b44-92b8-b11eb2d80b13 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-50936dc2-100d-4b44-92b8-b11eb2d80b13 .shogun-image-content {
  
    justify-content: center;
  
}

.s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image {
  box-sizing: border-box;
}



.s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container {
      position: relative;
    }

    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-50936dc2-100d-4b44-92b8-b11eb2d80b13 {
  margin: 0 !important;
  overflow: visible;
}

#s-50936dc2-100d-4b44-92b8-b11eb2d80b13-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-50936dc2-100d-4b44-92b8-b11eb2d80b13 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-50936dc2-100d-4b44-92b8-b11eb2d80b13 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image {
  /* Add background color handling */
  
}

#s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-50936dc2-100d-4b44-92b8-b11eb2d80b13 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-50936dc2-100d-4b44-92b8-b11eb2d80b13 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-50936dc2-100d-4b44-92b8-b11eb2d80b13 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-50936dc2-100d-4b44-92b8-b11eb2d80b13 .shogun-image-content {
  
    justify-content: center;
  
}

.s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image {
  box-sizing: border-box;
}



.s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container {
      position: relative;
    }

    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-50936dc2-100d-4b44-92b8-b11eb2d80b13 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-d684b0f9-86f6-4239-ad81-b58f03b7c0b9 {
  margin-top: 5px;
margin-left: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-d684b0f9-86f6-4239-ad81-b58f03b7c0b9 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.2em;
  
  
}



#s-1cf997ed-9d55-4b61-bbaa-0333daa23ee9 {
  margin-top: -10px;
margin-left: 10px;
margin-right: auto;
}

#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f {
  margin-left: 8px;
margin-bottom: 8px;
margin-right: auto;
max-width: 88px;
aspect-ratio: 518/116;
text-align: left;
}

#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f {
  margin: 0 !important;
  overflow: visible;
}

#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9e4e4bc6-2426-40d6-bff6-3005ac52957f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 8px;
  
  
  margin-bottom: 8px;
}

.shg-image-content-margin-container-s-9e4e4bc6-2426-40d6-bff6-3005ac52957f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image {
  /* Add background color handling */
  
}

#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9e4e4bc6-2426-40d6-bff6-3005ac52957f .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-9e4e4bc6-2426-40d6-bff6-3005ac52957f .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9e4e4bc6-2426-40d6-bff6-3005ac52957f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f .shogun-image-content {
  
    justify-content: center;
  
}

.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image {
  box-sizing: border-box;
}



.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container {
      position: relative;
    }

    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

@media (min-width: 1200px){#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f {
  margin: 0 !important;
  overflow: visible;
}

#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9e4e4bc6-2426-40d6-bff6-3005ac52957f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9e4e4bc6-2426-40d6-bff6-3005ac52957f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image {
  /* Add background color handling */
  
}

#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9e4e4bc6-2426-40d6-bff6-3005ac52957f .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-9e4e4bc6-2426-40d6-bff6-3005ac52957f .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9e4e4bc6-2426-40d6-bff6-3005ac52957f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f .shogun-image-content {
  
    justify-content: center;
  
}

.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image {
  box-sizing: border-box;
}



.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container {
      position: relative;
    }

    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f {
  margin: 0 !important;
  overflow: visible;
}

#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9e4e4bc6-2426-40d6-bff6-3005ac52957f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9e4e4bc6-2426-40d6-bff6-3005ac52957f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image {
  /* Add background color handling */
  
}

#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9e4e4bc6-2426-40d6-bff6-3005ac52957f .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-9e4e4bc6-2426-40d6-bff6-3005ac52957f .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9e4e4bc6-2426-40d6-bff6-3005ac52957f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f .shogun-image-content {
  
    justify-content: center;
  
}

.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image {
  box-sizing: border-box;
}



.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container {
      position: relative;
    }

    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f {
  margin: 0 !important;
  overflow: visible;
}

#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9e4e4bc6-2426-40d6-bff6-3005ac52957f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9e4e4bc6-2426-40d6-bff6-3005ac52957f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image {
  /* Add background color handling */
  
}

#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9e4e4bc6-2426-40d6-bff6-3005ac52957f .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-9e4e4bc6-2426-40d6-bff6-3005ac52957f .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9e4e4bc6-2426-40d6-bff6-3005ac52957f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f .shogun-image-content {
  
    justify-content: center;
  
}

.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image {
  box-sizing: border-box;
}



.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container {
      position: relative;
    }

    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (max-width: 767px){#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f {
  margin: 0 !important;
  overflow: visible;
}

#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9e4e4bc6-2426-40d6-bff6-3005ac52957f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9e4e4bc6-2426-40d6-bff6-3005ac52957f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image {
  /* Add background color handling */
  
}

#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9e4e4bc6-2426-40d6-bff6-3005ac52957f .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-9e4e4bc6-2426-40d6-bff6-3005ac52957f .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9e4e4bc6-2426-40d6-bff6-3005ac52957f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f .shogun-image-content {
  
    justify-content: center;
  
}

.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image {
  box-sizing: border-box;
}



.s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container {
      position: relative;
    }

    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e4e4bc6-2426-40d6-bff6-3005ac52957f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}
#s-1533542b-a170-4d43-835a-f2dc4a4a6f23 {
  margin-left: auto;
margin-bottom: 15px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-1533542b-a170-4d43-835a-f2dc4a4a6f23"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-1533542b-a170-4d43-835a-f2dc4a4a6f23"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-1533542b-a170-4d43-835a-f2dc4a4a6f23"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-1533542b-a170-4d43-835a-f2dc4a4a6f23"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-4df49b59-fdbb-486d-af6e-c527b3fdbf99 {
  margin-left: 10px;
margin-right: auto;
}

#s-6878b29f-375a-43b8-8546-ae064494470f {
  margin-left: -10px;
margin-right: auto;
}

#s-e8da8a9e-938f-4a63-9692-5c957fcd0f51 {
  margin-left: -20px;
margin-right: auto;
padding-top: 5px;
padding-left: 15px;
padding-bottom: 5px;
padding-right: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
background-color: rgba(121, 75, 161, 1);
text-align: center;
text-decoration: none;
}
#s-e8da8a9e-938f-4a63-9692-5c957fcd0f51:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e8da8a9e-938f-4a63-9692-5c957fcd0f51:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-e8da8a9e-938f-4a63-9692-5c957fcd0f51-root {
    text-align: center;
  }


#s-e8da8a9e-938f-4a63-9692-5c957fcd0f51.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e8da8a9e-938f-4a63-9692-5c957fcd0f51-root {
    text-align: center;
  }


#s-e8da8a9e-938f-4a63-9692-5c957fcd0f51.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e8da8a9e-938f-4a63-9692-5c957fcd0f51-root {
    text-align: center;
  }


#s-e8da8a9e-938f-4a63-9692-5c957fcd0f51.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e8da8a9e-938f-4a63-9692-5c957fcd0f51-root {
    text-align: center;
  }


#s-e8da8a9e-938f-4a63-9692-5c957fcd0f51.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e8da8a9e-938f-4a63-9692-5c957fcd0f51-root {
    text-align: center;
  }


#s-e8da8a9e-938f-4a63-9692-5c957fcd0f51.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}
#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced {
  margin-left: auto;
margin-right: auto;
max-width: 756px;
aspect-ratio: 756/1284;
text-align: center;
}

#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced {
  margin: 0 !important;
  overflow: visible;
}

#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image {
  /* Add background color handling */
  
}

#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: rgba(235, 224, 247, 1);
  border-style: solid;
  border-radius: 10px;

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced .shg-image-content-wrapper {
      aspect-ratio: 756/1284;
      min-width: 100%;
      height: auto;
    }

    #s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced .shogun-image-link {
      aspect-ratio: 756/1284;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 756px;
  }



  img.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image {
    
    
    
    max-height: 756px;
  }


.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced .shogun-image-content {
  
    justify-content: center;
  
}

.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image {
  box-sizing: border-box;
}



.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced {
      --shg-aspect-ratio: calc(756/1284); 
    }

    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container {
      position: relative;
    }

    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 756px;
    }
  }

@media (min-width: 1200px){#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced {
  margin: 0 !important;
  overflow: visible;
}

#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image {
  /* Add background color handling */
  
}

#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced .shg-image-content-wrapper {
      aspect-ratio: 756/1284;
      min-width: 100%;
      height: auto;
    }

    #s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced .shogun-image-link {
      aspect-ratio: 756/1284;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 756px;
  }



  img.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image {
    
    
    
    max-height: 756px;
  }


.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced .shogun-image-content {
  
    justify-content: center;
  
}

.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image {
  box-sizing: border-box;
}



.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced {
      --shg-aspect-ratio: calc(756/1284); 
    }

    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container {
      position: relative;
    }

    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 756px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced {
  margin: 0 !important;
  overflow: visible;
}

#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image {
  /* Add background color handling */
  
}

#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced .shg-image-content-wrapper {
      aspect-ratio: 756/1284;
      min-width: 100%;
      height: auto;
    }

    #s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced .shogun-image-link {
      aspect-ratio: 756/1284;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 756px;
  }



  img.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image {
    
    
    
    max-height: 756px;
  }


.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced .shogun-image-content {
  
    justify-content: center;
  
}

.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image {
  box-sizing: border-box;
}



.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced {
      --shg-aspect-ratio: calc(756/1284); 
    }

    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container {
      position: relative;
    }

    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 756px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced {
  margin: 0 !important;
  overflow: visible;
}

#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image {
  /* Add background color handling */
  
}

#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced .shg-image-content-wrapper {
      aspect-ratio: 756/1284;
      min-width: 100%;
      height: auto;
    }

    #s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced .shogun-image-link {
      aspect-ratio: 756/1284;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 756px;
  }



  img.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image {
    
    
    
    max-height: 756px;
  }


.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced .shogun-image-content {
  
    justify-content: center;
  
}

.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image {
  box-sizing: border-box;
}



.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced {
      --shg-aspect-ratio: calc(756/1284); 
    }

    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container {
      position: relative;
    }

    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 756px;
    }
  }

}@media (max-width: 767px){#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced {
  margin: 0 !important;
  overflow: visible;
}

#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image {
  /* Add background color handling */
  
}

#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced .shg-image-content-wrapper {
      aspect-ratio: 756/1284;
      min-width: 100%;
      height: auto;
    }

    #s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced .shogun-image-link {
      aspect-ratio: 756/1284;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 756px;
  }



  img.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image {
    
    
    
    max-height: 756px;
  }


.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced .shogun-image-content {
  
    justify-content: center;
  
}

.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image {
  box-sizing: border-box;
}



.s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced {
      --shg-aspect-ratio: calc(756/1284); 
    }

    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container {
      position: relative;
    }

    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d4bee2d-e43d-416f-ab7d-ea5af1178ced img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 756px;
    }
  }

}
#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}
@media (min-width: 1200px){#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 {
  display: none;
}
#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4, #wrap-s-2a9a5288-b62f-4beb-b41c-7311d9b964a4, #wrap-content-s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 {
  display: none;
}
#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4, #wrap-s-2a9a5288-b62f-4beb-b41c-7311d9b964a4, #wrap-content-s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 {
  display: none;
}
#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4, #wrap-s-2a9a5288-b62f-4beb-b41c-7311d9b964a4, #wrap-content-s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 { display: none !important; }}@media (max-width: 767px){#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 {
  
}
}
#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 {
  margin: 0 !important;
  overflow: visible;
}

#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 img.shogun-image {
  /* Add background color handling */
  
}

#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  

}






.s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2a9a5288-b62f-4beb-b41c-7311d9b964a4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a9a5288-b62f-4beb-b41c-7311d9b964a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4.shogun-image {
  box-sizing: border-box;
}



.s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 img.shogun-image {
  
}


@media (min-width: 1200px){#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 {
  margin: 0 !important;
  overflow: visible;
}

#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 img.shogun-image {
  /* Add background color handling */
  
}

#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2a9a5288-b62f-4beb-b41c-7311d9b964a4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a9a5288-b62f-4beb-b41c-7311d9b964a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4.shogun-image {
  box-sizing: border-box;
}



.s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 {
  margin: 0 !important;
  overflow: visible;
}

#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 img.shogun-image {
  /* Add background color handling */
  
}

#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2a9a5288-b62f-4beb-b41c-7311d9b964a4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a9a5288-b62f-4beb-b41c-7311d9b964a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4.shogun-image {
  box-sizing: border-box;
}



.s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 {
  margin: 0 !important;
  overflow: visible;
}

#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 img.shogun-image {
  /* Add background color handling */
  
}

#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2a9a5288-b62f-4beb-b41c-7311d9b964a4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a9a5288-b62f-4beb-b41c-7311d9b964a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4.shogun-image {
  box-sizing: border-box;
}



.s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 img.shogun-image {
  
}


}@media (max-width: 767px){#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 {
  margin: 0 !important;
  overflow: visible;
}

#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 img.shogun-image {
  /* Add background color handling */
  
}

#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2a9a5288-b62f-4beb-b41c-7311d9b964a4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a9a5288-b62f-4beb-b41c-7311d9b964a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a9a5288-b62f-4beb-b41c-7311d9b964a4.shogun-image {
  box-sizing: border-box;
}



.s-2a9a5288-b62f-4beb-b41c-7311d9b964a4 img.shogun-image {
  
}


}
#s-f51eb37f-4c35-4b4d-be76-2c5b28b878a1 {
  margin-left: auto;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
background-color: rgba(255, 253, 247, 1);
}
@media (min-width: 1200px){#s-f51eb37f-4c35-4b4d-be76-2c5b28b878a1 {
  display: none;
}
#s-f51eb37f-4c35-4b4d-be76-2c5b28b878a1, #wrap-s-f51eb37f-4c35-4b4d-be76-2c5b28b878a1, #wrap-content-s-f51eb37f-4c35-4b4d-be76-2c5b28b878a1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f51eb37f-4c35-4b4d-be76-2c5b28b878a1 {
  display: none;
}
#s-f51eb37f-4c35-4b4d-be76-2c5b28b878a1, #wrap-s-f51eb37f-4c35-4b4d-be76-2c5b28b878a1, #wrap-content-s-f51eb37f-4c35-4b4d-be76-2c5b28b878a1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f51eb37f-4c35-4b4d-be76-2c5b28b878a1 {
  display: none;
}
#s-f51eb37f-4c35-4b4d-be76-2c5b28b878a1, #wrap-s-f51eb37f-4c35-4b4d-be76-2c5b28b878a1, #wrap-content-s-f51eb37f-4c35-4b4d-be76-2c5b28b878a1 { display: none !important; }}@media (max-width: 767px){#s-f51eb37f-4c35-4b4d-be76-2c5b28b878a1 {
  display: none;
}
#s-f51eb37f-4c35-4b4d-be76-2c5b28b878a1, #wrap-s-f51eb37f-4c35-4b4d-be76-2c5b28b878a1, #wrap-content-s-f51eb37f-4c35-4b4d-be76-2c5b28b878a1 { display: none !important; }}







#s-f51eb37f-4c35-4b4d-be76-2c5b28b878a1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f51eb37f-4c35-4b4d-be76-2c5b28b878a1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4f0b5b14-d0e8-4b84-9a75-64b1c29d757e {
  margin-top: 30px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
}

@media (min-width: 0px) {
[id="s-4f0b5b14-d0e8-4b84-9a75-64b1c29d757e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 768px) {
[id="s-4f0b5b14-d0e8-4b84-9a75-64b1c29d757e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 992px) {
[id="s-4f0b5b14-d0e8-4b84-9a75-64b1c29d757e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 1200px) {
[id="s-4f0b5b14-d0e8-4b84-9a75-64b1c29d757e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 4.0px);
}

}

#s-76ac9526-533f-4196-82f3-b9ad9f17e934 {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-76ac9526-533f-4196-82f3-b9ad9f17e934 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-76ac9526-533f-4196-82f3-b9ad9f17e934 {
  cursor: pointer;
}#s-76ac9526-533f-4196-82f3-b9ad9f17e934.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-960858bc-0755-48d6-9795-35a6b541ac73 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-960858bc-0755-48d6-9795-35a6b541ac73 {
  margin: 0 !important;
  overflow: visible;
}

#s-960858bc-0755-48d6-9795-35a6b541ac73-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-960858bc-0755-48d6-9795-35a6b541ac73 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-960858bc-0755-48d6-9795-35a6b541ac73 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-960858bc-0755-48d6-9795-35a6b541ac73 img.shogun-image {
  /* Add background color handling */
  
}

#s-960858bc-0755-48d6-9795-35a6b541ac73 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 5px;

}






.s-960858bc-0755-48d6-9795-35a6b541ac73 .shogun-image-content {
  
    justify-content: center;
  
}

.s-960858bc-0755-48d6-9795-35a6b541ac73.shg-align-container {
  display: flex;
  justify-content: center
}

.s-960858bc-0755-48d6-9795-35a6b541ac73.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-960858bc-0755-48d6-9795-35a6b541ac73.shogun-image {
  box-sizing: border-box;
}



.s-960858bc-0755-48d6-9795-35a6b541ac73 img.shogun-image {
  
}


@media (min-width: 1200px){#s-960858bc-0755-48d6-9795-35a6b541ac73 {
  margin: 0 !important;
  overflow: visible;
}

#s-960858bc-0755-48d6-9795-35a6b541ac73-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-960858bc-0755-48d6-9795-35a6b541ac73 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-960858bc-0755-48d6-9795-35a6b541ac73 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-960858bc-0755-48d6-9795-35a6b541ac73 img.shogun-image {
  /* Add background color handling */
  
}

#s-960858bc-0755-48d6-9795-35a6b541ac73 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-960858bc-0755-48d6-9795-35a6b541ac73 .shogun-image-content {
  
    justify-content: center;
  
}

.s-960858bc-0755-48d6-9795-35a6b541ac73.shg-align-container {
  display: flex;
  justify-content: center
}

.s-960858bc-0755-48d6-9795-35a6b541ac73.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-960858bc-0755-48d6-9795-35a6b541ac73.shogun-image {
  box-sizing: border-box;
}



.s-960858bc-0755-48d6-9795-35a6b541ac73 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-960858bc-0755-48d6-9795-35a6b541ac73 {
  margin: 0 !important;
  overflow: visible;
}

#s-960858bc-0755-48d6-9795-35a6b541ac73-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-960858bc-0755-48d6-9795-35a6b541ac73 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-960858bc-0755-48d6-9795-35a6b541ac73 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-960858bc-0755-48d6-9795-35a6b541ac73 img.shogun-image {
  /* Add background color handling */
  
}

#s-960858bc-0755-48d6-9795-35a6b541ac73 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-960858bc-0755-48d6-9795-35a6b541ac73 .shogun-image-content {
  
    justify-content: center;
  
}

.s-960858bc-0755-48d6-9795-35a6b541ac73.shg-align-container {
  display: flex;
  justify-content: center
}

.s-960858bc-0755-48d6-9795-35a6b541ac73.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-960858bc-0755-48d6-9795-35a6b541ac73.shogun-image {
  box-sizing: border-box;
}



.s-960858bc-0755-48d6-9795-35a6b541ac73 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-960858bc-0755-48d6-9795-35a6b541ac73 {
  margin: 0 !important;
  overflow: visible;
}

#s-960858bc-0755-48d6-9795-35a6b541ac73-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-960858bc-0755-48d6-9795-35a6b541ac73 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-960858bc-0755-48d6-9795-35a6b541ac73 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-960858bc-0755-48d6-9795-35a6b541ac73 img.shogun-image {
  /* Add background color handling */
  
}

#s-960858bc-0755-48d6-9795-35a6b541ac73 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-960858bc-0755-48d6-9795-35a6b541ac73 .shogun-image-content {
  
    justify-content: center;
  
}

.s-960858bc-0755-48d6-9795-35a6b541ac73.shg-align-container {
  display: flex;
  justify-content: center
}

.s-960858bc-0755-48d6-9795-35a6b541ac73.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-960858bc-0755-48d6-9795-35a6b541ac73.shogun-image {
  box-sizing: border-box;
}



.s-960858bc-0755-48d6-9795-35a6b541ac73 img.shogun-image {
  
}


}@media (max-width: 767px){#s-960858bc-0755-48d6-9795-35a6b541ac73 {
  margin: 0 !important;
  overflow: visible;
}

#s-960858bc-0755-48d6-9795-35a6b541ac73-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-960858bc-0755-48d6-9795-35a6b541ac73 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-960858bc-0755-48d6-9795-35a6b541ac73 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-960858bc-0755-48d6-9795-35a6b541ac73 img.shogun-image {
  /* Add background color handling */
  
}

#s-960858bc-0755-48d6-9795-35a6b541ac73 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-960858bc-0755-48d6-9795-35a6b541ac73 .shogun-image-content {
  
    justify-content: center;
  
}

.s-960858bc-0755-48d6-9795-35a6b541ac73.shg-align-container {
  display: flex;
  justify-content: center
}

.s-960858bc-0755-48d6-9795-35a6b541ac73.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-960858bc-0755-48d6-9795-35a6b541ac73.shogun-image {
  box-sizing: border-box;
}



.s-960858bc-0755-48d6-9795-35a6b541ac73 img.shogun-image {
  
}


}
#s-5ef34e56-97c8-4d99-99c5-51b81cdddaf2 {
  margin-top: 5px;
margin-left: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-5ef34e56-97c8-4d99-99c5-51b81cdddaf2 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.2em;
  
  
}



#s-3e7d8079-78b7-481d-9f13-8c45daa55ba4 {
  margin-top: -10px;
margin-left: 10px;
margin-right: auto;
}

#s-5ea9f863-8273-4c65-826f-9faeb9b7cfee {
  margin-left: auto;
margin-bottom: 8px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-5ea9f863-8273-4c65-826f-9faeb9b7cfee"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-5ea9f863-8273-4c65-826f-9faeb9b7cfee"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5ea9f863-8273-4c65-826f-9faeb9b7cfee"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5ea9f863-8273-4c65-826f-9faeb9b7cfee"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 {
  margin-left: 10px;
margin-bottom: 8px;
margin-right: -10px;
max-width: 88px;
aspect-ratio: 518/116;
text-align: left;
}

#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 {
  margin: 0 !important;
  overflow: visible;
}

#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 10px;
  margin-right: -10px;
  
  margin-bottom: 8px;
}

.shg-image-content-margin-container-s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image {
  /* Add background color handling */
  
}

#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image {
  box-sizing: border-box;
}



.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container {
      position: relative;
    }

    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

@media (min-width: 1200px){#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 {
  margin: 0 !important;
  overflow: visible;
}

#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image {
  /* Add background color handling */
  
}

#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image {
  box-sizing: border-box;
}



.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container {
      position: relative;
    }

    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 {
  margin: 0 !important;
  overflow: visible;
}

#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image {
  /* Add background color handling */
  
}

#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image {
  box-sizing: border-box;
}



.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container {
      position: relative;
    }

    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 {
  margin: 0 !important;
  overflow: visible;
}

#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image {
  /* Add background color handling */
  
}

#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image {
  box-sizing: border-box;
}



.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container {
      position: relative;
    }

    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (max-width: 767px){#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 {
  margin: 0 !important;
  overflow: visible;
}

#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image {
  /* Add background color handling */
  
}

#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image {
  box-sizing: border-box;
}



.s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container {
      position: relative;
    }

    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8c522530-d61f-4cc3-bc3e-970d0bbc2ac5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}
#s-89206cbb-11fb-4f90-bd0b-f730589a8a77 {
  margin-left: 0px;
margin-right: auto;
padding-top: 4px;
padding-left: 12px;
padding-bottom: 4px;
padding-right: 12px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
background-color: rgba(121, 75, 161, 1);
text-align: right;
text-decoration: none;
}
#s-89206cbb-11fb-4f90-bd0b-f730589a8a77:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-89206cbb-11fb-4f90-bd0b-f730589a8a77:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-89206cbb-11fb-4f90-bd0b-f730589a8a77-root {
    text-align: right;
  }


#s-89206cbb-11fb-4f90-bd0b-f730589a8a77.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-89206cbb-11fb-4f90-bd0b-f730589a8a77-root {
    text-align: right;
  }


#s-89206cbb-11fb-4f90-bd0b-f730589a8a77.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-89206cbb-11fb-4f90-bd0b-f730589a8a77-root {
    text-align: right;
  }


#s-89206cbb-11fb-4f90-bd0b-f730589a8a77.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-89206cbb-11fb-4f90-bd0b-f730589a8a77-root {
    text-align: right;
  }


#s-89206cbb-11fb-4f90-bd0b-f730589a8a77.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-89206cbb-11fb-4f90-bd0b-f730589a8a77-root {
    text-align: right;
  }


#s-89206cbb-11fb-4f90-bd0b-f730589a8a77.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}
#s-2643c72c-4405-44b1-8cdf-039ecf7672ce {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-2643c72c-4405-44b1-8cdf-039ecf7672ce > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2643c72c-4405-44b1-8cdf-039ecf7672ce {
  cursor: pointer;
}#s-2643c72c-4405-44b1-8cdf-039ecf7672ce.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-68f3c20b-391a-40f8-885b-c824e90224b2 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-68f3c20b-391a-40f8-885b-c824e90224b2 {
  margin: 0 !important;
  overflow: visible;
}

#s-68f3c20b-391a-40f8-885b-c824e90224b2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-68f3c20b-391a-40f8-885b-c824e90224b2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-68f3c20b-391a-40f8-885b-c824e90224b2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-68f3c20b-391a-40f8-885b-c824e90224b2 img.shogun-image {
  /* Add background color handling */
  
}

#s-68f3c20b-391a-40f8-885b-c824e90224b2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 5px;

}






.s-68f3c20b-391a-40f8-885b-c824e90224b2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-68f3c20b-391a-40f8-885b-c824e90224b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68f3c20b-391a-40f8-885b-c824e90224b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68f3c20b-391a-40f8-885b-c824e90224b2.shogun-image {
  box-sizing: border-box;
}



.s-68f3c20b-391a-40f8-885b-c824e90224b2 img.shogun-image {
  
}


@media (min-width: 1200px){#s-68f3c20b-391a-40f8-885b-c824e90224b2 {
  margin: 0 !important;
  overflow: visible;
}

#s-68f3c20b-391a-40f8-885b-c824e90224b2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-68f3c20b-391a-40f8-885b-c824e90224b2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-68f3c20b-391a-40f8-885b-c824e90224b2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-68f3c20b-391a-40f8-885b-c824e90224b2 img.shogun-image {
  /* Add background color handling */
  
}

#s-68f3c20b-391a-40f8-885b-c824e90224b2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-68f3c20b-391a-40f8-885b-c824e90224b2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-68f3c20b-391a-40f8-885b-c824e90224b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68f3c20b-391a-40f8-885b-c824e90224b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68f3c20b-391a-40f8-885b-c824e90224b2.shogun-image {
  box-sizing: border-box;
}



.s-68f3c20b-391a-40f8-885b-c824e90224b2 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-68f3c20b-391a-40f8-885b-c824e90224b2 {
  margin: 0 !important;
  overflow: visible;
}

#s-68f3c20b-391a-40f8-885b-c824e90224b2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-68f3c20b-391a-40f8-885b-c824e90224b2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-68f3c20b-391a-40f8-885b-c824e90224b2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-68f3c20b-391a-40f8-885b-c824e90224b2 img.shogun-image {
  /* Add background color handling */
  
}

#s-68f3c20b-391a-40f8-885b-c824e90224b2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-68f3c20b-391a-40f8-885b-c824e90224b2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-68f3c20b-391a-40f8-885b-c824e90224b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68f3c20b-391a-40f8-885b-c824e90224b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68f3c20b-391a-40f8-885b-c824e90224b2.shogun-image {
  box-sizing: border-box;
}



.s-68f3c20b-391a-40f8-885b-c824e90224b2 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-68f3c20b-391a-40f8-885b-c824e90224b2 {
  margin: 0 !important;
  overflow: visible;
}

#s-68f3c20b-391a-40f8-885b-c824e90224b2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-68f3c20b-391a-40f8-885b-c824e90224b2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-68f3c20b-391a-40f8-885b-c824e90224b2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-68f3c20b-391a-40f8-885b-c824e90224b2 img.shogun-image {
  /* Add background color handling */
  
}

#s-68f3c20b-391a-40f8-885b-c824e90224b2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-68f3c20b-391a-40f8-885b-c824e90224b2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-68f3c20b-391a-40f8-885b-c824e90224b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68f3c20b-391a-40f8-885b-c824e90224b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68f3c20b-391a-40f8-885b-c824e90224b2.shogun-image {
  box-sizing: border-box;
}



.s-68f3c20b-391a-40f8-885b-c824e90224b2 img.shogun-image {
  
}


}@media (max-width: 767px){#s-68f3c20b-391a-40f8-885b-c824e90224b2 {
  margin: 0 !important;
  overflow: visible;
}

#s-68f3c20b-391a-40f8-885b-c824e90224b2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-68f3c20b-391a-40f8-885b-c824e90224b2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-68f3c20b-391a-40f8-885b-c824e90224b2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-68f3c20b-391a-40f8-885b-c824e90224b2 img.shogun-image {
  /* Add background color handling */
  
}

#s-68f3c20b-391a-40f8-885b-c824e90224b2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-68f3c20b-391a-40f8-885b-c824e90224b2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-68f3c20b-391a-40f8-885b-c824e90224b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68f3c20b-391a-40f8-885b-c824e90224b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68f3c20b-391a-40f8-885b-c824e90224b2.shogun-image {
  box-sizing: border-box;
}



.s-68f3c20b-391a-40f8-885b-c824e90224b2 img.shogun-image {
  
}


}
#s-617991c5-37e4-4476-aca8-d9133cd546ec {
  margin-top: 5px;
margin-left: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-617991c5-37e4-4476-aca8-d9133cd546ec .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.2em;
  
  
}



#s-0f397323-6d6c-4d14-a4ae-047be4c5db55 {
  margin-top: -10px;
margin-left: 10px;
margin-right: auto;
}

#s-08b55ede-5864-4835-b8d9-32d7295bca6f {
  margin-left: auto;
margin-bottom: 8px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-08b55ede-5864-4835-b8d9-32d7295bca6f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-08b55ede-5864-4835-b8d9-32d7295bca6f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-08b55ede-5864-4835-b8d9-32d7295bca6f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-08b55ede-5864-4835-b8d9-32d7295bca6f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-78813b09-7299-4d3e-966c-2079a52139c3 {
  margin-left: 10px;
margin-bottom: 8px;
margin-right: -10px;
max-width: 88px;
aspect-ratio: 518/116;
text-align: left;
}

#s-78813b09-7299-4d3e-966c-2079a52139c3 {
  margin: 0 !important;
  overflow: visible;
}

#s-78813b09-7299-4d3e-966c-2079a52139c3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-78813b09-7299-4d3e-966c-2079a52139c3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 10px;
  margin-right: -10px;
  
  margin-bottom: 8px;
}

.shg-image-content-margin-container-s-78813b09-7299-4d3e-966c-2079a52139c3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image {
  /* Add background color handling */
  
}

#s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-78813b09-7299-4d3e-966c-2079a52139c3 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-78813b09-7299-4d3e-966c-2079a52139c3 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-78813b09-7299-4d3e-966c-2079a52139c3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-78813b09-7299-4d3e-966c-2079a52139c3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-78813b09-7299-4d3e-966c-2079a52139c3.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image {
  box-sizing: border-box;
}



.s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-78813b09-7299-4d3e-966c-2079a52139c3 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container {
      position: relative;
    }

    .s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

@media (min-width: 1200px){#s-78813b09-7299-4d3e-966c-2079a52139c3 {
  margin: 0 !important;
  overflow: visible;
}

#s-78813b09-7299-4d3e-966c-2079a52139c3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-78813b09-7299-4d3e-966c-2079a52139c3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-78813b09-7299-4d3e-966c-2079a52139c3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image {
  /* Add background color handling */
  
}

#s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-78813b09-7299-4d3e-966c-2079a52139c3 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-78813b09-7299-4d3e-966c-2079a52139c3 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-78813b09-7299-4d3e-966c-2079a52139c3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-78813b09-7299-4d3e-966c-2079a52139c3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-78813b09-7299-4d3e-966c-2079a52139c3.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image {
  box-sizing: border-box;
}



.s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-78813b09-7299-4d3e-966c-2079a52139c3 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container {
      position: relative;
    }

    .s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-78813b09-7299-4d3e-966c-2079a52139c3 {
  margin: 0 !important;
  overflow: visible;
}

#s-78813b09-7299-4d3e-966c-2079a52139c3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-78813b09-7299-4d3e-966c-2079a52139c3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-78813b09-7299-4d3e-966c-2079a52139c3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image {
  /* Add background color handling */
  
}

#s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-78813b09-7299-4d3e-966c-2079a52139c3 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-78813b09-7299-4d3e-966c-2079a52139c3 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-78813b09-7299-4d3e-966c-2079a52139c3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-78813b09-7299-4d3e-966c-2079a52139c3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-78813b09-7299-4d3e-966c-2079a52139c3.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image {
  box-sizing: border-box;
}



.s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-78813b09-7299-4d3e-966c-2079a52139c3 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container {
      position: relative;
    }

    .s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-78813b09-7299-4d3e-966c-2079a52139c3 {
  margin: 0 !important;
  overflow: visible;
}

#s-78813b09-7299-4d3e-966c-2079a52139c3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-78813b09-7299-4d3e-966c-2079a52139c3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-78813b09-7299-4d3e-966c-2079a52139c3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image {
  /* Add background color handling */
  
}

#s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-78813b09-7299-4d3e-966c-2079a52139c3 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-78813b09-7299-4d3e-966c-2079a52139c3 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-78813b09-7299-4d3e-966c-2079a52139c3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-78813b09-7299-4d3e-966c-2079a52139c3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-78813b09-7299-4d3e-966c-2079a52139c3.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image {
  box-sizing: border-box;
}



.s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-78813b09-7299-4d3e-966c-2079a52139c3 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container {
      position: relative;
    }

    .s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (max-width: 767px){#s-78813b09-7299-4d3e-966c-2079a52139c3 {
  margin: 0 !important;
  overflow: visible;
}

#s-78813b09-7299-4d3e-966c-2079a52139c3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-78813b09-7299-4d3e-966c-2079a52139c3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-78813b09-7299-4d3e-966c-2079a52139c3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image {
  /* Add background color handling */
  
}

#s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-78813b09-7299-4d3e-966c-2079a52139c3 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-78813b09-7299-4d3e-966c-2079a52139c3 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-78813b09-7299-4d3e-966c-2079a52139c3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-78813b09-7299-4d3e-966c-2079a52139c3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-78813b09-7299-4d3e-966c-2079a52139c3.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image {
  box-sizing: border-box;
}



.s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-78813b09-7299-4d3e-966c-2079a52139c3 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container {
      position: relative;
    }

    .s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78813b09-7299-4d3e-966c-2079a52139c3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78813b09-7299-4d3e-966c-2079a52139c3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}
#s-acadf669-0254-4792-ac36-cacd801ef09f {
  margin-left: 0px;
margin-right: auto;
padding-top: 4px;
padding-left: 12px;
padding-bottom: 4px;
padding-right: 12px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
background-color: rgba(121, 75, 161, 1);
text-align: right;
text-decoration: none;
}
#s-acadf669-0254-4792-ac36-cacd801ef09f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-acadf669-0254-4792-ac36-cacd801ef09f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-acadf669-0254-4792-ac36-cacd801ef09f-root {
    text-align: right;
  }


#s-acadf669-0254-4792-ac36-cacd801ef09f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-acadf669-0254-4792-ac36-cacd801ef09f-root {
    text-align: right;
  }


#s-acadf669-0254-4792-ac36-cacd801ef09f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-acadf669-0254-4792-ac36-cacd801ef09f-root {
    text-align: right;
  }


#s-acadf669-0254-4792-ac36-cacd801ef09f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-acadf669-0254-4792-ac36-cacd801ef09f-root {
    text-align: right;
  }


#s-acadf669-0254-4792-ac36-cacd801ef09f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-acadf669-0254-4792-ac36-cacd801ef09f-root {
    text-align: right;
  }


#s-acadf669-0254-4792-ac36-cacd801ef09f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}
#s-861f3a64-3818-4a09-ae0f-f22a7508ad3e {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
}

@media (min-width: 0px) {
[id="s-861f3a64-3818-4a09-ae0f-f22a7508ad3e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 768px) {
[id="s-861f3a64-3818-4a09-ae0f-f22a7508ad3e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 992px) {
[id="s-861f3a64-3818-4a09-ae0f-f22a7508ad3e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 1200px) {
[id="s-861f3a64-3818-4a09-ae0f-f22a7508ad3e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 4.0px);
}

}

#s-73aa7a32-a019-4051-8d96-d3e12fd1cef7 {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-73aa7a32-a019-4051-8d96-d3e12fd1cef7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-73aa7a32-a019-4051-8d96-d3e12fd1cef7 {
  cursor: pointer;
}#s-73aa7a32-a019-4051-8d96-d3e12fd1cef7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 {
  margin: 0 !important;
  overflow: visible;
}

#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 img.shogun-image {
  /* Add background color handling */
  
}

#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 5px;

}






.s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46.shogun-image {
  box-sizing: border-box;
}



.s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 img.shogun-image {
  
}


@media (min-width: 1200px){#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 {
  margin: 0 !important;
  overflow: visible;
}

#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 img.shogun-image {
  /* Add background color handling */
  
}

#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46.shogun-image {
  box-sizing: border-box;
}



.s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 {
  margin: 0 !important;
  overflow: visible;
}

#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 img.shogun-image {
  /* Add background color handling */
  
}

#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46.shogun-image {
  box-sizing: border-box;
}



.s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 {
  margin: 0 !important;
  overflow: visible;
}

#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 img.shogun-image {
  /* Add background color handling */
  
}

#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46.shogun-image {
  box-sizing: border-box;
}



.s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 img.shogun-image {
  
}


}@media (max-width: 767px){#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 {
  margin: 0 !important;
  overflow: visible;
}

#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 img.shogun-image {
  /* Add background color handling */
  
}

#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46.shogun-image {
  box-sizing: border-box;
}



.s-4b4bd1f8-2fec-4d8c-8b46-42b82ceb9b46 img.shogun-image {
  
}


}
#s-35f105e9-8798-4ee4-8375-5c91c9544580 {
  margin-top: 5px;
margin-left: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-35f105e9-8798-4ee4-8375-5c91c9544580 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 21px;
  line-height: 1.2em;
  
  
}



#s-dbbf29c1-d20e-4d2d-9552-8c4e52a73735 {
  margin-top: -10px;
margin-left: 10px;
margin-right: auto;
}

#s-ad31989e-79ef-4644-8c70-84007b87fe42 {
  margin-left: auto;
margin-bottom: 20px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-ad31989e-79ef-4644-8c70-84007b87fe42"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-ad31989e-79ef-4644-8c70-84007b87fe42"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-ad31989e-79ef-4644-8c70-84007b87fe42"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-ad31989e-79ef-4644-8c70-84007b87fe42"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-183ab646-675e-4253-92af-a40b9612081f {
  margin-top: 4px;
margin-left: 8px;
margin-right: auto;
max-width: 88px;
aspect-ratio: 518/116;
text-align: left;
}

#s-183ab646-675e-4253-92af-a40b9612081f {
  margin: 0 !important;
  overflow: visible;
}

#s-183ab646-675e-4253-92af-a40b9612081f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-183ab646-675e-4253-92af-a40b9612081f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 8px;
  
  margin-top: 4px;
  
}

.shg-image-content-margin-container-s-183ab646-675e-4253-92af-a40b9612081f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image {
  /* Add background color handling */
  
}

#s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-183ab646-675e-4253-92af-a40b9612081f .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-183ab646-675e-4253-92af-a40b9612081f .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-183ab646-675e-4253-92af-a40b9612081f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-183ab646-675e-4253-92af-a40b9612081f.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-183ab646-675e-4253-92af-a40b9612081f .shogun-image-content {
  
    justify-content: center;
  
}

.s-183ab646-675e-4253-92af-a40b9612081f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-183ab646-675e-4253-92af-a40b9612081f.shogun-image {
  box-sizing: border-box;
}



.s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-183ab646-675e-4253-92af-a40b9612081f {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container {
      position: relative;
    }

    .s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

@media (min-width: 1200px){#s-183ab646-675e-4253-92af-a40b9612081f {
  margin: 0 !important;
  overflow: visible;
}

#s-183ab646-675e-4253-92af-a40b9612081f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-183ab646-675e-4253-92af-a40b9612081f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-183ab646-675e-4253-92af-a40b9612081f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image {
  /* Add background color handling */
  
}

#s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-183ab646-675e-4253-92af-a40b9612081f .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-183ab646-675e-4253-92af-a40b9612081f .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-183ab646-675e-4253-92af-a40b9612081f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-183ab646-675e-4253-92af-a40b9612081f.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-183ab646-675e-4253-92af-a40b9612081f .shogun-image-content {
  
    justify-content: center;
  
}

.s-183ab646-675e-4253-92af-a40b9612081f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-183ab646-675e-4253-92af-a40b9612081f.shogun-image {
  box-sizing: border-box;
}



.s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-183ab646-675e-4253-92af-a40b9612081f {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container {
      position: relative;
    }

    .s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-183ab646-675e-4253-92af-a40b9612081f {
  margin: 0 !important;
  overflow: visible;
}

#s-183ab646-675e-4253-92af-a40b9612081f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-183ab646-675e-4253-92af-a40b9612081f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-183ab646-675e-4253-92af-a40b9612081f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image {
  /* Add background color handling */
  
}

#s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-183ab646-675e-4253-92af-a40b9612081f .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-183ab646-675e-4253-92af-a40b9612081f .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-183ab646-675e-4253-92af-a40b9612081f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-183ab646-675e-4253-92af-a40b9612081f.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-183ab646-675e-4253-92af-a40b9612081f .shogun-image-content {
  
    justify-content: center;
  
}

.s-183ab646-675e-4253-92af-a40b9612081f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-183ab646-675e-4253-92af-a40b9612081f.shogun-image {
  box-sizing: border-box;
}



.s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-183ab646-675e-4253-92af-a40b9612081f {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container {
      position: relative;
    }

    .s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-183ab646-675e-4253-92af-a40b9612081f {
  margin: 0 !important;
  overflow: visible;
}

#s-183ab646-675e-4253-92af-a40b9612081f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-183ab646-675e-4253-92af-a40b9612081f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-183ab646-675e-4253-92af-a40b9612081f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image {
  /* Add background color handling */
  
}

#s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-183ab646-675e-4253-92af-a40b9612081f .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-183ab646-675e-4253-92af-a40b9612081f .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-183ab646-675e-4253-92af-a40b9612081f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-183ab646-675e-4253-92af-a40b9612081f.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-183ab646-675e-4253-92af-a40b9612081f .shogun-image-content {
  
    justify-content: center;
  
}

.s-183ab646-675e-4253-92af-a40b9612081f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-183ab646-675e-4253-92af-a40b9612081f.shogun-image {
  box-sizing: border-box;
}



.s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-183ab646-675e-4253-92af-a40b9612081f {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container {
      position: relative;
    }

    .s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (max-width: 767px){#s-183ab646-675e-4253-92af-a40b9612081f {
  margin: 0 !important;
  overflow: visible;
}

#s-183ab646-675e-4253-92af-a40b9612081f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-183ab646-675e-4253-92af-a40b9612081f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-183ab646-675e-4253-92af-a40b9612081f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image {
  /* Add background color handling */
  
}

#s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-183ab646-675e-4253-92af-a40b9612081f .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-183ab646-675e-4253-92af-a40b9612081f .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-183ab646-675e-4253-92af-a40b9612081f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-183ab646-675e-4253-92af-a40b9612081f.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-183ab646-675e-4253-92af-a40b9612081f .shogun-image-content {
  
    justify-content: center;
  
}

.s-183ab646-675e-4253-92af-a40b9612081f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-183ab646-675e-4253-92af-a40b9612081f.shogun-image {
  box-sizing: border-box;
}



.s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-183ab646-675e-4253-92af-a40b9612081f {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container {
      position: relative;
    }

    .s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-183ab646-675e-4253-92af-a40b9612081f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-183ab646-675e-4253-92af-a40b9612081f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}
#s-654d7fee-a9b5-4a7d-84e1-936e696db694 {
  margin-left: -20px;
margin-right: auto;
padding-top: 5px;
padding-left: 15px;
padding-bottom: 5px;
padding-right: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
background-color: rgba(121, 75, 161, 1);
text-align: right;
text-decoration: none;
}
#s-654d7fee-a9b5-4a7d-84e1-936e696db694:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-654d7fee-a9b5-4a7d-84e1-936e696db694:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-654d7fee-a9b5-4a7d-84e1-936e696db694-root {
    text-align: right;
  }


#s-654d7fee-a9b5-4a7d-84e1-936e696db694.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-654d7fee-a9b5-4a7d-84e1-936e696db694-root {
    text-align: right;
  }


#s-654d7fee-a9b5-4a7d-84e1-936e696db694.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-654d7fee-a9b5-4a7d-84e1-936e696db694-root {
    text-align: right;
  }


#s-654d7fee-a9b5-4a7d-84e1-936e696db694.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-654d7fee-a9b5-4a7d-84e1-936e696db694-root {
    text-align: right;
  }


#s-654d7fee-a9b5-4a7d-84e1-936e696db694.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-654d7fee-a9b5-4a7d-84e1-936e696db694-root {
    text-align: right;
  }


#s-654d7fee-a9b5-4a7d-84e1-936e696db694.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}
#s-6b3f7f8b-2348-4d06-bad7-b3ddbcdd46f7 {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-6b3f7f8b-2348-4d06-bad7-b3ddbcdd46f7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6b3f7f8b-2348-4d06-bad7-b3ddbcdd46f7 {
  cursor: pointer;
}#s-6b3f7f8b-2348-4d06-bad7-b3ddbcdd46f7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 {
  margin: 0 !important;
  overflow: visible;
}

#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image {
  /* Add background color handling */
  
}

#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 5px;

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image {
  box-sizing: border-box;
}



.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container {
      position: relative;
    }

    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 {
  margin: 0 !important;
  overflow: visible;
}

#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image {
  /* Add background color handling */
  
}

#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image {
  box-sizing: border-box;
}



.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container {
      position: relative;
    }

    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 {
  margin: 0 !important;
  overflow: visible;
}

#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image {
  /* Add background color handling */
  
}

#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image {
  box-sizing: border-box;
}



.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container {
      position: relative;
    }

    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 {
  margin: 0 !important;
  overflow: visible;
}

#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image {
  /* Add background color handling */
  
}

#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image {
  box-sizing: border-box;
}



.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container {
      position: relative;
    }

    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 {
  margin: 0 !important;
  overflow: visible;
}

#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image {
  /* Add background color handling */
  
}

#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image {
  box-sizing: border-box;
}



.s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container {
      position: relative;
    }

    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c17c19a4-24e1-40b8-941e-6c8bdb1e3286 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-386f2182-ed4e-4dbb-9a0f-8ccd2497d192 {
  margin-top: 5px;
margin-left: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-386f2182-ed4e-4dbb-9a0f-8ccd2497d192 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 21px;
  line-height: 1.2em;
  
  
}



#s-77822df4-f6c8-4f3f-a667-425b3c1ae1ed {
  margin-top: -10px;
margin-left: 10px;
margin-right: auto;
}

#s-851faac7-41ff-40a7-a86e-d631f4876bec {
  margin-left: auto;
margin-bottom: 20px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-851faac7-41ff-40a7-a86e-d631f4876bec"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-851faac7-41ff-40a7-a86e-d631f4876bec"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-851faac7-41ff-40a7-a86e-d631f4876bec"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-851faac7-41ff-40a7-a86e-d631f4876bec"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 {
  margin-top: 4px;
margin-left: 8px;
margin-right: auto;
max-width: 88px;
aspect-ratio: 518/116;
text-align: left;
}

#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 {
  margin: 0 !important;
  overflow: visible;
}

#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 8px;
  
  margin-top: 4px;
  
}

.shg-image-content-margin-container-s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image {
  /* Add background color handling */
  
}

#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image {
  box-sizing: border-box;
}



.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container {
      position: relative;
    }

    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

@media (min-width: 1200px){#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 {
  margin: 0 !important;
  overflow: visible;
}

#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image {
  /* Add background color handling */
  
}

#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image {
  box-sizing: border-box;
}



.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container {
      position: relative;
    }

    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 {
  margin: 0 !important;
  overflow: visible;
}

#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image {
  /* Add background color handling */
  
}

#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image {
  box-sizing: border-box;
}



.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container {
      position: relative;
    }

    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 {
  margin: 0 !important;
  overflow: visible;
}

#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image {
  /* Add background color handling */
  
}

#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image {
  box-sizing: border-box;
}



.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container {
      position: relative;
    }

    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (max-width: 767px){#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 {
  margin: 0 !important;
  overflow: visible;
}

#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image {
  /* Add background color handling */
  
}

#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image {
  box-sizing: border-box;
}



.s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container {
      position: relative;
    }

    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3fe07547-4302-4d57-9de1-f4ea56cedaf9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}
#s-b8f660be-8405-418f-9658-dc273c431df8 {
  margin-left: -20px;
margin-right: auto;
padding-top: 5px;
padding-left: 15px;
padding-bottom: 5px;
padding-right: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
background-color: rgba(121, 75, 161, 1);
text-align: right;
text-decoration: none;
}
#s-b8f660be-8405-418f-9658-dc273c431df8:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b8f660be-8405-418f-9658-dc273c431df8:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-b8f660be-8405-418f-9658-dc273c431df8-root {
    text-align: right;
  }


#s-b8f660be-8405-418f-9658-dc273c431df8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b8f660be-8405-418f-9658-dc273c431df8-root {
    text-align: right;
  }


#s-b8f660be-8405-418f-9658-dc273c431df8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b8f660be-8405-418f-9658-dc273c431df8-root {
    text-align: right;
  }


#s-b8f660be-8405-418f-9658-dc273c431df8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b8f660be-8405-418f-9658-dc273c431df8-root {
    text-align: right;
  }


#s-b8f660be-8405-418f-9658-dc273c431df8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b8f660be-8405-418f-9658-dc273c431df8-root {
    text-align: right;
  }


#s-b8f660be-8405-418f-9658-dc273c431df8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}
#s-7fcc6b8a-70b8-452f-bc49-10333c9004df {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
}

@media (min-width: 0px) {
[id="s-7fcc6b8a-70b8-452f-bc49-10333c9004df"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 768px) {
[id="s-7fcc6b8a-70b8-452f-bc49-10333c9004df"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 992px) {
[id="s-7fcc6b8a-70b8-452f-bc49-10333c9004df"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 1200px) {
[id="s-7fcc6b8a-70b8-452f-bc49-10333c9004df"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 4.0px);
}

}

#s-451498a6-d05a-48e8-a5a2-43eae6fcf5e2 {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-451498a6-d05a-48e8-a5a2-43eae6fcf5e2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-451498a6-d05a-48e8-a5a2-43eae6fcf5e2 {
  cursor: pointer;
}#s-451498a6-d05a-48e8-a5a2-43eae6fcf5e2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 {
  margin: 0 !important;
  overflow: visible;
}

#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image {
  /* Add background color handling */
  
}

#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 5px;

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image {
  box-sizing: border-box;
}



.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container {
      position: relative;
    }

    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 {
  margin: 0 !important;
  overflow: visible;
}

#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image {
  /* Add background color handling */
  
}

#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image {
  box-sizing: border-box;
}



.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container {
      position: relative;
    }

    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 {
  margin: 0 !important;
  overflow: visible;
}

#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image {
  /* Add background color handling */
  
}

#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image {
  box-sizing: border-box;
}



.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container {
      position: relative;
    }

    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 {
  margin: 0 !important;
  overflow: visible;
}

#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image {
  /* Add background color handling */
  
}

#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image {
  box-sizing: border-box;
}



.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container {
      position: relative;
    }

    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 {
  margin: 0 !important;
  overflow: visible;
}

#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image {
  /* Add background color handling */
  
}

#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image {
  box-sizing: border-box;
}



.s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container {
      position: relative;
    }

    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b23a0bce-7e4e-4a61-8e5a-8d24b2b4f293 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-7ccc94f6-6af3-45ff-8463-3ab8e3491d5d {
  margin-top: 5px;
margin-left: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-7ccc94f6-6af3-45ff-8463-3ab8e3491d5d .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 21px;
  line-height: 1.2em;
  
  
}



#s-ff09bf28-31cd-4122-adc7-183586f50e6f {
  margin-top: -10px;
margin-left: 10px;
margin-right: auto;
}

#s-4cff7d5a-02db-4051-a273-a73d3274e176 {
  margin-left: auto;
margin-bottom: 20px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-4cff7d5a-02db-4051-a273-a73d3274e176"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-4cff7d5a-02db-4051-a273-a73d3274e176"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-4cff7d5a-02db-4051-a273-a73d3274e176"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-4cff7d5a-02db-4051-a273-a73d3274e176"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 {
  margin-top: 4px;
margin-left: 8px;
margin-right: auto;
max-width: 88px;
aspect-ratio: 518/116;
text-align: left;
}

#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 {
  margin: 0 !important;
  overflow: visible;
}

#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 8px;
  
  margin-top: 4px;
  
}

.shg-image-content-margin-container-s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image {
  /* Add background color handling */
  
}

#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image {
  box-sizing: border-box;
}



.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container {
      position: relative;
    }

    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

@media (min-width: 1200px){#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 {
  margin: 0 !important;
  overflow: visible;
}

#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image {
  /* Add background color handling */
  
}

#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image {
  box-sizing: border-box;
}



.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container {
      position: relative;
    }

    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 {
  margin: 0 !important;
  overflow: visible;
}

#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image {
  /* Add background color handling */
  
}

#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image {
  box-sizing: border-box;
}



.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container {
      position: relative;
    }

    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 {
  margin: 0 !important;
  overflow: visible;
}

#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image {
  /* Add background color handling */
  
}

#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image {
  box-sizing: border-box;
}



.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container {
      position: relative;
    }

    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (max-width: 767px){#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 {
  margin: 0 !important;
  overflow: visible;
}

#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image {
  /* Add background color handling */
  
}

#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image {
  box-sizing: border-box;
}



.s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container {
      position: relative;
    }

    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d6f4b8ac-cd9c-43a1-a553-1b6eb07e4026 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}
#s-12c291f1-1aa1-4c50-afd3-97803e494fc4 {
  margin-left: -20px;
margin-right: auto;
padding-top: 5px;
padding-left: 15px;
padding-bottom: 5px;
padding-right: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
background-color: rgba(121, 75, 161, 1);
text-align: right;
text-decoration: none;
}
#s-12c291f1-1aa1-4c50-afd3-97803e494fc4:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-12c291f1-1aa1-4c50-afd3-97803e494fc4:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-12c291f1-1aa1-4c50-afd3-97803e494fc4-root {
    text-align: right;
  }


#s-12c291f1-1aa1-4c50-afd3-97803e494fc4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-12c291f1-1aa1-4c50-afd3-97803e494fc4-root {
    text-align: right;
  }


#s-12c291f1-1aa1-4c50-afd3-97803e494fc4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-12c291f1-1aa1-4c50-afd3-97803e494fc4-root {
    text-align: right;
  }


#s-12c291f1-1aa1-4c50-afd3-97803e494fc4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-12c291f1-1aa1-4c50-afd3-97803e494fc4-root {
    text-align: right;
  }


#s-12c291f1-1aa1-4c50-afd3-97803e494fc4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-12c291f1-1aa1-4c50-afd3-97803e494fc4-root {
    text-align: right;
  }


#s-12c291f1-1aa1-4c50-afd3-97803e494fc4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}
#s-a120e015-b54d-4007-a238-b1ce15314c88 {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-a120e015-b54d-4007-a238-b1ce15314c88 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a120e015-b54d-4007-a238-b1ce15314c88 {
  cursor: pointer;
}#s-a120e015-b54d-4007-a238-b1ce15314c88.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 {
  margin: 0 !important;
  overflow: visible;
}

#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image {
  /* Add background color handling */
  
}

#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 5px;

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image {
  box-sizing: border-box;
}



.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container {
      position: relative;
    }

    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 {
  margin: 0 !important;
  overflow: visible;
}

#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image {
  /* Add background color handling */
  
}

#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image {
  box-sizing: border-box;
}



.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container {
      position: relative;
    }

    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 {
  margin: 0 !important;
  overflow: visible;
}

#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image {
  /* Add background color handling */
  
}

#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image {
  box-sizing: border-box;
}



.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container {
      position: relative;
    }

    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 {
  margin: 0 !important;
  overflow: visible;
}

#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image {
  /* Add background color handling */
  
}

#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image {
  box-sizing: border-box;
}



.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container {
      position: relative;
    }

    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 {
  margin: 0 !important;
  overflow: visible;
}

#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image {
  /* Add background color handling */
  
}

#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image {
  box-sizing: border-box;
}



.s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container {
      position: relative;
    }

    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9f1e9a01-8322-4f5b-b1af-95d8da5785a6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-bc0a1ad7-2bb7-4475-a82a-f46c07671b37 {
  margin-top: 5px;
margin-left: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-bc0a1ad7-2bb7-4475-a82a-f46c07671b37 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 21px;
  line-height: 1.2em;
  
  
}



#s-f03eacd4-443b-44d2-9a9e-f68b001b9f68 {
  margin-top: -10px;
margin-left: 10px;
margin-right: auto;
}

#s-a80c7ae4-f000-4a80-bfb8-0b8eebfc08ff {
  margin-left: auto;
margin-bottom: 20px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-a80c7ae4-f000-4a80-bfb8-0b8eebfc08ff"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-a80c7ae4-f000-4a80-bfb8-0b8eebfc08ff"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a80c7ae4-f000-4a80-bfb8-0b8eebfc08ff"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a80c7ae4-f000-4a80-bfb8-0b8eebfc08ff"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a {
  margin-top: 4px;
margin-left: 8px;
margin-right: auto;
max-width: 88px;
aspect-ratio: 518/116;
text-align: left;
}

#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a {
  margin: 0 !important;
  overflow: visible;
}

#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 8px;
  
  margin-top: 4px;
  
}

.shg-image-content-margin-container-s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image {
  /* Add background color handling */
  
}

#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a .shogun-image-content {
  
    justify-content: center;
  
}

.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image {
  box-sizing: border-box;
}



.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container {
      position: relative;
    }

    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

@media (min-width: 1200px){#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a {
  margin: 0 !important;
  overflow: visible;
}

#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image {
  /* Add background color handling */
  
}

#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a .shogun-image-content {
  
    justify-content: center;
  
}

.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image {
  box-sizing: border-box;
}



.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container {
      position: relative;
    }

    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a {
  margin: 0 !important;
  overflow: visible;
}

#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image {
  /* Add background color handling */
  
}

#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a .shogun-image-content {
  
    justify-content: center;
  
}

.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image {
  box-sizing: border-box;
}



.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container {
      position: relative;
    }

    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a {
  margin: 0 !important;
  overflow: visible;
}

#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image {
  /* Add background color handling */
  
}

#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a .shogun-image-content {
  
    justify-content: center;
  
}

.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image {
  box-sizing: border-box;
}



.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container {
      position: relative;
    }

    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (max-width: 767px){#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a {
  margin: 0 !important;
  overflow: visible;
}

#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image {
  /* Add background color handling */
  
}

#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a .shogun-image-content {
  
    justify-content: center;
  
}

.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image {
  box-sizing: border-box;
}



.s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container {
      position: relative;
    }

    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b56e6c68-9f3c-4242-8913-4a8f186cfb6a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}
#s-fbff2162-f91f-42f9-9199-d46822f3bfc2 {
  margin-left: -20px;
margin-right: auto;
padding-top: 5px;
padding-left: 15px;
padding-bottom: 5px;
padding-right: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
background-color: rgba(121, 75, 161, 1);
text-align: right;
text-decoration: none;
}
#s-fbff2162-f91f-42f9-9199-d46822f3bfc2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-fbff2162-f91f-42f9-9199-d46822f3bfc2:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-fbff2162-f91f-42f9-9199-d46822f3bfc2-root {
    text-align: right;
  }


#s-fbff2162-f91f-42f9-9199-d46822f3bfc2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-fbff2162-f91f-42f9-9199-d46822f3bfc2-root {
    text-align: right;
  }


#s-fbff2162-f91f-42f9-9199-d46822f3bfc2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-fbff2162-f91f-42f9-9199-d46822f3bfc2-root {
    text-align: right;
  }


#s-fbff2162-f91f-42f9-9199-d46822f3bfc2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-fbff2162-f91f-42f9-9199-d46822f3bfc2-root {
    text-align: right;
  }


#s-fbff2162-f91f-42f9-9199-d46822f3bfc2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-fbff2162-f91f-42f9-9199-d46822f3bfc2-root {
    text-align: right;
  }


#s-fbff2162-f91f-42f9-9199-d46822f3bfc2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}
#s-141bd3a4-532b-41d3-a486-042173074496 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
}

@media (min-width: 0px) {
[id="s-141bd3a4-532b-41d3-a486-042173074496"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 768px) {
[id="s-141bd3a4-532b-41d3-a486-042173074496"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 992px) {
[id="s-141bd3a4-532b-41d3-a486-042173074496"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 1200px) {
[id="s-141bd3a4-532b-41d3-a486-042173074496"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 4.0px);
}

}

#s-1422c360-0802-4cc4-9480-7ba661be2966 {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-1422c360-0802-4cc4-9480-7ba661be2966 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1422c360-0802-4cc4-9480-7ba661be2966 {
  cursor: pointer;
}#s-1422c360-0802-4cc4-9480-7ba661be2966.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e {
  margin: 0 !important;
  overflow: visible;
}

#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e img.shogun-image {
  /* Add background color handling */
  
}

#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 5px;

}






.s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e .shogun-image-content {
  
    justify-content: center;
  
}

.s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e.shogun-image {
  box-sizing: border-box;
}



.s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e img.shogun-image {
  
}


@media (min-width: 1200px){#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e {
  margin: 0 !important;
  overflow: visible;
}

#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e img.shogun-image {
  /* Add background color handling */
  
}

#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e .shogun-image-content {
  
    justify-content: center;
  
}

.s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e.shogun-image {
  box-sizing: border-box;
}



.s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e {
  margin: 0 !important;
  overflow: visible;
}

#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e img.shogun-image {
  /* Add background color handling */
  
}

#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e .shogun-image-content {
  
    justify-content: center;
  
}

.s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e.shogun-image {
  box-sizing: border-box;
}



.s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e {
  margin: 0 !important;
  overflow: visible;
}

#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e img.shogun-image {
  /* Add background color handling */
  
}

#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e .shogun-image-content {
  
    justify-content: center;
  
}

.s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e.shogun-image {
  box-sizing: border-box;
}



.s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e img.shogun-image {
  
}


}@media (max-width: 767px){#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e {
  margin: 0 !important;
  overflow: visible;
}

#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e img.shogun-image {
  /* Add background color handling */
  
}

#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e .shogun-image-content {
  
    justify-content: center;
  
}

.s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e.shogun-image {
  box-sizing: border-box;
}



.s-5b85f8de-fc1b-4b3c-9fc4-f1542aad919e img.shogun-image {
  
}


}
#s-be22c632-4975-4a03-9dcb-398a98e5402b {
  margin-top: 5px;
margin-left: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-be22c632-4975-4a03-9dcb-398a98e5402b .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 21px;
  line-height: 1.2em;
  
  
}



#s-9285d8e3-32bd-45f2-9f35-055791693837 {
  margin-top: -10px;
margin-left: 10px;
margin-right: auto;
}

#s-808a35a8-7946-434b-ada9-c80952fe0232 {
  margin-left: auto;
margin-bottom: 20px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-808a35a8-7946-434b-ada9-c80952fe0232"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-808a35a8-7946-434b-ada9-c80952fe0232"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-808a35a8-7946-434b-ada9-c80952fe0232"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-808a35a8-7946-434b-ada9-c80952fe0232"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc {
  margin-top: 4px;
margin-left: 8px;
margin-right: auto;
max-width: 88px;
aspect-ratio: 518/116;
text-align: left;
}

#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc {
  margin: 0 !important;
  overflow: visible;
}

#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 8px;
  
  margin-top: 4px;
  
}

.shg-image-content-margin-container-s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image {
  /* Add background color handling */
  
}

#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image {
  box-sizing: border-box;
}



.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container {
      position: relative;
    }

    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

@media (min-width: 1200px){#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc {
  margin: 0 !important;
  overflow: visible;
}

#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image {
  /* Add background color handling */
  
}

#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image {
  box-sizing: border-box;
}



.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container {
      position: relative;
    }

    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc {
  margin: 0 !important;
  overflow: visible;
}

#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image {
  /* Add background color handling */
  
}

#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image {
  box-sizing: border-box;
}



.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container {
      position: relative;
    }

    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc {
  margin: 0 !important;
  overflow: visible;
}

#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image {
  /* Add background color handling */
  
}

#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image {
  box-sizing: border-box;
}



.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container {
      position: relative;
    }

    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (max-width: 767px){#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc {
  margin: 0 !important;
  overflow: visible;
}

#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image {
  /* Add background color handling */
  
}

#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image {
  box-sizing: border-box;
}



.s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container {
      position: relative;
    }

    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-edf4d9ab-6396-44d8-8b61-1f73cfe8a1bc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}
#s-ff5f1c0b-070c-4186-9b50-ac1cb39bd9e4 {
  margin-left: -20px;
margin-right: auto;
padding-top: 5px;
padding-left: 15px;
padding-bottom: 5px;
padding-right: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
background-color: rgba(121, 75, 161, 1);
text-align: right;
text-decoration: none;
}
#s-ff5f1c0b-070c-4186-9b50-ac1cb39bd9e4:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ff5f1c0b-070c-4186-9b50-ac1cb39bd9e4:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-ff5f1c0b-070c-4186-9b50-ac1cb39bd9e4-root {
    text-align: right;
  }


#s-ff5f1c0b-070c-4186-9b50-ac1cb39bd9e4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ff5f1c0b-070c-4186-9b50-ac1cb39bd9e4-root {
    text-align: right;
  }


#s-ff5f1c0b-070c-4186-9b50-ac1cb39bd9e4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ff5f1c0b-070c-4186-9b50-ac1cb39bd9e4-root {
    text-align: right;
  }


#s-ff5f1c0b-070c-4186-9b50-ac1cb39bd9e4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ff5f1c0b-070c-4186-9b50-ac1cb39bd9e4-root {
    text-align: right;
  }


#s-ff5f1c0b-070c-4186-9b50-ac1cb39bd9e4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ff5f1c0b-070c-4186-9b50-ac1cb39bd9e4-root {
    text-align: right;
  }


#s-ff5f1c0b-070c-4186-9b50-ac1cb39bd9e4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}
#s-2c0d63e1-8ec0-422e-9f43-f6e3abf3d03f {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-2c0d63e1-8ec0-422e-9f43-f6e3abf3d03f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2c0d63e1-8ec0-422e-9f43-f6e3abf3d03f {
  cursor: pointer;
}#s-2c0d63e1-8ec0-422e-9f43-f6e3abf3d03f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd {
  margin: 0 !important;
  overflow: visible;
}

#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd img.shogun-image {
  /* Add background color handling */
  
}

#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 5px;

}






.s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd .shogun-image-content {
  
    justify-content: center;
  
}

.s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd.shogun-image {
  box-sizing: border-box;
}



.s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd img.shogun-image {
  
}


@media (min-width: 1200px){#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd {
  margin: 0 !important;
  overflow: visible;
}

#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd img.shogun-image {
  /* Add background color handling */
  
}

#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd .shogun-image-content {
  
    justify-content: center;
  
}

.s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd.shogun-image {
  box-sizing: border-box;
}



.s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd {
  margin: 0 !important;
  overflow: visible;
}

#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd img.shogun-image {
  /* Add background color handling */
  
}

#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd .shogun-image-content {
  
    justify-content: center;
  
}

.s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd.shogun-image {
  box-sizing: border-box;
}



.s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd {
  margin: 0 !important;
  overflow: visible;
}

#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd img.shogun-image {
  /* Add background color handling */
  
}

#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd .shogun-image-content {
  
    justify-content: center;
  
}

.s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd.shogun-image {
  box-sizing: border-box;
}



.s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd img.shogun-image {
  
}


}@media (max-width: 767px){#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd {
  margin: 0 !important;
  overflow: visible;
}

#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd img.shogun-image {
  /* Add background color handling */
  
}

#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd .shogun-image-content {
  
    justify-content: center;
  
}

.s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd.shogun-image {
  box-sizing: border-box;
}



.s-8215e2da-8aba-4e6c-acf1-0616bcf0b1cd img.shogun-image {
  
}


}
#s-c8e707f0-fe76-42b2-aae6-80b278568a67 {
  margin-top: 5px;
margin-left: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-c8e707f0-fe76-42b2-aae6-80b278568a67 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 21px;
  line-height: 1.2em;
  
  
}



#s-4646aa63-429d-4b97-996e-f01f8ae1f424 {
  margin-top: -10px;
margin-left: 10px;
margin-right: auto;
}

#s-da129dc3-ce2f-44cb-9b57-6ff7574fd725 {
  margin-left: auto;
margin-bottom: 20px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-da129dc3-ce2f-44cb-9b57-6ff7574fd725"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-da129dc3-ce2f-44cb-9b57-6ff7574fd725"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-da129dc3-ce2f-44cb-9b57-6ff7574fd725"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-da129dc3-ce2f-44cb-9b57-6ff7574fd725"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-4ce9b101-3593-49f9-a945-82c06bd085e8 {
  margin-top: 4px;
margin-left: 8px;
margin-right: auto;
max-width: 88px;
aspect-ratio: 518/116;
text-align: left;
}

#s-4ce9b101-3593-49f9-a945-82c06bd085e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-4ce9b101-3593-49f9-a945-82c06bd085e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4ce9b101-3593-49f9-a945-82c06bd085e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 8px;
  
  margin-top: 4px;
  
}

.shg-image-content-margin-container-s-4ce9b101-3593-49f9-a945-82c06bd085e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4ce9b101-3593-49f9-a945-82c06bd085e8 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-4ce9b101-3593-49f9-a945-82c06bd085e8 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4ce9b101-3593-49f9-a945-82c06bd085e8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-4ce9b101-3593-49f9-a945-82c06bd085e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4ce9b101-3593-49f9-a945-82c06bd085e8.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image {
  box-sizing: border-box;
}



.s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4ce9b101-3593-49f9-a945-82c06bd085e8 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container {
      position: relative;
    }

    .s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

@media (min-width: 1200px){#s-4ce9b101-3593-49f9-a945-82c06bd085e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-4ce9b101-3593-49f9-a945-82c06bd085e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4ce9b101-3593-49f9-a945-82c06bd085e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4ce9b101-3593-49f9-a945-82c06bd085e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4ce9b101-3593-49f9-a945-82c06bd085e8 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-4ce9b101-3593-49f9-a945-82c06bd085e8 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4ce9b101-3593-49f9-a945-82c06bd085e8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-4ce9b101-3593-49f9-a945-82c06bd085e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4ce9b101-3593-49f9-a945-82c06bd085e8.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image {
  box-sizing: border-box;
}



.s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4ce9b101-3593-49f9-a945-82c06bd085e8 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container {
      position: relative;
    }

    .s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-4ce9b101-3593-49f9-a945-82c06bd085e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-4ce9b101-3593-49f9-a945-82c06bd085e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4ce9b101-3593-49f9-a945-82c06bd085e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4ce9b101-3593-49f9-a945-82c06bd085e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4ce9b101-3593-49f9-a945-82c06bd085e8 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-4ce9b101-3593-49f9-a945-82c06bd085e8 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4ce9b101-3593-49f9-a945-82c06bd085e8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-4ce9b101-3593-49f9-a945-82c06bd085e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4ce9b101-3593-49f9-a945-82c06bd085e8.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image {
  box-sizing: border-box;
}



.s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4ce9b101-3593-49f9-a945-82c06bd085e8 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container {
      position: relative;
    }

    .s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-4ce9b101-3593-49f9-a945-82c06bd085e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-4ce9b101-3593-49f9-a945-82c06bd085e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4ce9b101-3593-49f9-a945-82c06bd085e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4ce9b101-3593-49f9-a945-82c06bd085e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4ce9b101-3593-49f9-a945-82c06bd085e8 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-4ce9b101-3593-49f9-a945-82c06bd085e8 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4ce9b101-3593-49f9-a945-82c06bd085e8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-4ce9b101-3593-49f9-a945-82c06bd085e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4ce9b101-3593-49f9-a945-82c06bd085e8.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image {
  box-sizing: border-box;
}



.s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4ce9b101-3593-49f9-a945-82c06bd085e8 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container {
      position: relative;
    }

    .s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}@media (max-width: 767px){#s-4ce9b101-3593-49f9-a945-82c06bd085e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-4ce9b101-3593-49f9-a945-82c06bd085e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4ce9b101-3593-49f9-a945-82c06bd085e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4ce9b101-3593-49f9-a945-82c06bd085e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4ce9b101-3593-49f9-a945-82c06bd085e8 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-4ce9b101-3593-49f9-a945-82c06bd085e8 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4ce9b101-3593-49f9-a945-82c06bd085e8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 88px;
  }



  img.s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image {
    
    
    
    max-height: 88px;
  }


.s-4ce9b101-3593-49f9-a945-82c06bd085e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4ce9b101-3593-49f9-a945-82c06bd085e8.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image {
  box-sizing: border-box;
}



.s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-4ce9b101-3593-49f9-a945-82c06bd085e8 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container {
      position: relative;
    }

    .s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4ce9b101-3593-49f9-a945-82c06bd085e8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4ce9b101-3593-49f9-a945-82c06bd085e8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 88px;
    }
  }

}
#s-10349823-e2e0-449b-8b69-d939790578e9 {
  margin-left: -20px;
margin-right: auto;
padding-top: 5px;
padding-left: 15px;
padding-bottom: 5px;
padding-right: 15px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
background-color: rgba(121, 75, 161, 1);
text-align: right;
text-decoration: none;
}
#s-10349823-e2e0-449b-8b69-d939790578e9:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-10349823-e2e0-449b-8b69-d939790578e9:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-10349823-e2e0-449b-8b69-d939790578e9-root {
    text-align: right;
  }


#s-10349823-e2e0-449b-8b69-d939790578e9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-10349823-e2e0-449b-8b69-d939790578e9-root {
    text-align: right;
  }


#s-10349823-e2e0-449b-8b69-d939790578e9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-10349823-e2e0-449b-8b69-d939790578e9-root {
    text-align: right;
  }


#s-10349823-e2e0-449b-8b69-d939790578e9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-10349823-e2e0-449b-8b69-d939790578e9-root {
    text-align: right;
  }


#s-10349823-e2e0-449b-8b69-d939790578e9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-10349823-e2e0-449b-8b69-d939790578e9-root {
    text-align: right;
  }


#s-10349823-e2e0-449b-8b69-d939790578e9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}
#s-53ce6c5c-8216-46fb-9cff-b296cedb2000 {
  margin-left: auto;
margin-right: auto;
max-width: 4460px;
text-align: center;
}
@media (max-width: 767px){#s-53ce6c5c-8216-46fb-9cff-b296cedb2000 {
  display: none;
}
#s-53ce6c5c-8216-46fb-9cff-b296cedb2000, #wrap-s-53ce6c5c-8216-46fb-9cff-b296cedb2000, #wrap-content-s-53ce6c5c-8216-46fb-9cff-b296cedb2000 { display: none !important; }}
#s-53ce6c5c-8216-46fb-9cff-b296cedb2000 {
  margin: 0 !important;
  overflow: visible;
}

#s-53ce6c5c-8216-46fb-9cff-b296cedb2000-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-53ce6c5c-8216-46fb-9cff-b296cedb2000 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-53ce6c5c-8216-46fb-9cff-b296cedb2000 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-53ce6c5c-8216-46fb-9cff-b296cedb2000 img.shogun-image {
  /* Add background color handling */
  
}

#s-53ce6c5c-8216-46fb-9cff-b296cedb2000 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  

}






.s-53ce6c5c-8216-46fb-9cff-b296cedb2000 .shogun-image-content {
  
    justify-content: center;
  
}

.s-53ce6c5c-8216-46fb-9cff-b296cedb2000.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53ce6c5c-8216-46fb-9cff-b296cedb2000.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53ce6c5c-8216-46fb-9cff-b296cedb2000.shogun-image {
  box-sizing: border-box;
}



.s-53ce6c5c-8216-46fb-9cff-b296cedb2000 img.shogun-image {
  
}


@media (min-width: 1200px){#s-53ce6c5c-8216-46fb-9cff-b296cedb2000 {
  margin: 0 !important;
  overflow: visible;
}

#s-53ce6c5c-8216-46fb-9cff-b296cedb2000-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-53ce6c5c-8216-46fb-9cff-b296cedb2000 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-53ce6c5c-8216-46fb-9cff-b296cedb2000 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-53ce6c5c-8216-46fb-9cff-b296cedb2000 img.shogun-image {
  /* Add background color handling */
  
}

#s-53ce6c5c-8216-46fb-9cff-b296cedb2000 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-53ce6c5c-8216-46fb-9cff-b296cedb2000 .shogun-image-content {
  
    justify-content: center;
  
}

.s-53ce6c5c-8216-46fb-9cff-b296cedb2000.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53ce6c5c-8216-46fb-9cff-b296cedb2000.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53ce6c5c-8216-46fb-9cff-b296cedb2000.shogun-image {
  box-sizing: border-box;
}



.s-53ce6c5c-8216-46fb-9cff-b296cedb2000 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-53ce6c5c-8216-46fb-9cff-b296cedb2000 {
  margin: 0 !important;
  overflow: visible;
}

#s-53ce6c5c-8216-46fb-9cff-b296cedb2000-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-53ce6c5c-8216-46fb-9cff-b296cedb2000 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-53ce6c5c-8216-46fb-9cff-b296cedb2000 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-53ce6c5c-8216-46fb-9cff-b296cedb2000 img.shogun-image {
  /* Add background color handling */
  
}

#s-53ce6c5c-8216-46fb-9cff-b296cedb2000 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-53ce6c5c-8216-46fb-9cff-b296cedb2000 .shogun-image-content {
  
    justify-content: center;
  
}

.s-53ce6c5c-8216-46fb-9cff-b296cedb2000.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53ce6c5c-8216-46fb-9cff-b296cedb2000.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53ce6c5c-8216-46fb-9cff-b296cedb2000.shogun-image {
  box-sizing: border-box;
}



.s-53ce6c5c-8216-46fb-9cff-b296cedb2000 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-53ce6c5c-8216-46fb-9cff-b296cedb2000 {
  margin: 0 !important;
  overflow: visible;
}

#s-53ce6c5c-8216-46fb-9cff-b296cedb2000-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-53ce6c5c-8216-46fb-9cff-b296cedb2000 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-53ce6c5c-8216-46fb-9cff-b296cedb2000 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-53ce6c5c-8216-46fb-9cff-b296cedb2000 img.shogun-image {
  /* Add background color handling */
  
}

#s-53ce6c5c-8216-46fb-9cff-b296cedb2000 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-53ce6c5c-8216-46fb-9cff-b296cedb2000 .shogun-image-content {
  
    justify-content: center;
  
}

.s-53ce6c5c-8216-46fb-9cff-b296cedb2000.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53ce6c5c-8216-46fb-9cff-b296cedb2000.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53ce6c5c-8216-46fb-9cff-b296cedb2000.shogun-image {
  box-sizing: border-box;
}



.s-53ce6c5c-8216-46fb-9cff-b296cedb2000 img.shogun-image {
  
}


}@media (max-width: 767px){#s-53ce6c5c-8216-46fb-9cff-b296cedb2000 {
  margin: 0 !important;
  overflow: visible;
}

#s-53ce6c5c-8216-46fb-9cff-b296cedb2000-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-53ce6c5c-8216-46fb-9cff-b296cedb2000 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-53ce6c5c-8216-46fb-9cff-b296cedb2000 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-53ce6c5c-8216-46fb-9cff-b296cedb2000 img.shogun-image {
  /* Add background color handling */
  
}

#s-53ce6c5c-8216-46fb-9cff-b296cedb2000 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-53ce6c5c-8216-46fb-9cff-b296cedb2000 .shogun-image-content {
  
    justify-content: center;
  
}

.s-53ce6c5c-8216-46fb-9cff-b296cedb2000.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53ce6c5c-8216-46fb-9cff-b296cedb2000.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53ce6c5c-8216-46fb-9cff-b296cedb2000.shogun-image {
  box-sizing: border-box;
}



.s-53ce6c5c-8216-46fb-9cff-b296cedb2000 img.shogun-image {
  
}


}
#s-06e24d3c-9668-4814-95a3-b1f1bc1f7ccf {
  margin-left: auto;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
background-color: rgba(255, 253, 247, 1);
}
@media (min-width: 1200px){#s-06e24d3c-9668-4814-95a3-b1f1bc1f7ccf {
  display: none;
}
#s-06e24d3c-9668-4814-95a3-b1f1bc1f7ccf, #wrap-s-06e24d3c-9668-4814-95a3-b1f1bc1f7ccf, #wrap-content-s-06e24d3c-9668-4814-95a3-b1f1bc1f7ccf { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-06e24d3c-9668-4814-95a3-b1f1bc1f7ccf {
  display: none;
}
#s-06e24d3c-9668-4814-95a3-b1f1bc1f7ccf, #wrap-s-06e24d3c-9668-4814-95a3-b1f1bc1f7ccf, #wrap-content-s-06e24d3c-9668-4814-95a3-b1f1bc1f7ccf { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-06e24d3c-9668-4814-95a3-b1f1bc1f7ccf {
  display: none;
}
#s-06e24d3c-9668-4814-95a3-b1f1bc1f7ccf, #wrap-s-06e24d3c-9668-4814-95a3-b1f1bc1f7ccf, #wrap-content-s-06e24d3c-9668-4814-95a3-b1f1bc1f7ccf { display: none !important; }}@media (max-width: 767px){#s-06e24d3c-9668-4814-95a3-b1f1bc1f7ccf {
  display: none;
}
#s-06e24d3c-9668-4814-95a3-b1f1bc1f7ccf, #wrap-s-06e24d3c-9668-4814-95a3-b1f1bc1f7ccf, #wrap-content-s-06e24d3c-9668-4814-95a3-b1f1bc1f7ccf { display: none !important; }}







#s-06e24d3c-9668-4814-95a3-b1f1bc1f7ccf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-06e24d3c-9668-4814-95a3-b1f1bc1f7ccf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ea8fbf3b-efa4-4f9c-bbf9-f277c28d8869 {
  margin-top: 30px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 5%;
padding-left: 0px;
padding-right: 0px;
}
@media (max-width: 767px){#s-ea8fbf3b-efa4-4f9c-bbf9-f277c28d8869 {
  display: none;
}
#s-ea8fbf3b-efa4-4f9c-bbf9-f277c28d8869, #wrap-s-ea8fbf3b-efa4-4f9c-bbf9-f277c28d8869, #wrap-content-s-ea8fbf3b-efa4-4f9c-bbf9-f277c28d8869 { display: none !important; }}
@media (min-width: 0px) {
[id="s-ea8fbf3b-efa4-4f9c-bbf9-f277c28d8869"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 768px) {
[id="s-ea8fbf3b-efa4-4f9c-bbf9-f277c28d8869"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-ea8fbf3b-efa4-4f9c-bbf9-f277c28d8869"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-ea8fbf3b-efa4-4f9c-bbf9-f277c28d8869"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-f652cb34-e23c-42c2-b29a-b5a55e55200b {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-f652cb34-e23c-42c2-b29a-b5a55e55200b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f652cb34-e23c-42c2-b29a-b5a55e55200b {
  cursor: pointer;
}#s-f652cb34-e23c-42c2-b29a-b5a55e55200b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc {
  margin: 0 !important;
  overflow: visible;
}

#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc img.shogun-image {
  /* Add background color handling */
  
}

#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 5px;

}






.s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc.shogun-image {
  box-sizing: border-box;
}



.s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc img.shogun-image {
  
}


@media (min-width: 1200px){#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc {
  margin: 0 !important;
  overflow: visible;
}

#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc img.shogun-image {
  /* Add background color handling */
  
}

#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc.shogun-image {
  box-sizing: border-box;
}



.s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc {
  margin: 0 !important;
  overflow: visible;
}

#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc img.shogun-image {
  /* Add background color handling */
  
}

#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc.shogun-image {
  box-sizing: border-box;
}



.s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc {
  margin: 0 !important;
  overflow: visible;
}

#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc img.shogun-image {
  /* Add background color handling */
  
}

#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc.shogun-image {
  box-sizing: border-box;
}



.s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc img.shogun-image {
  
}


}@media (max-width: 767px){#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc {
  margin: 0 !important;
  overflow: visible;
}

#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc img.shogun-image {
  /* Add background color handling */
  
}

#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc.shogun-image {
  box-sizing: border-box;
}



.s-3e4b1a8e-fb50-46e0-9400-63de1daa5cdc img.shogun-image {
  
}


}
#s-21d99230-f0b8-45f3-8edd-64d053c376a8 {
  margin-top: 5px;
margin-left: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-21d99230-f0b8-45f3-8edd-64d053c376a8 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  line-height: 1.2em;
  
  
}



#s-03b4f3b2-a3c4-49f1-8fcd-7e81d615a1a0 {
  margin-left: auto;
margin-bottom: 12px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-03b4f3b2-a3c4-49f1-8fcd-7e81d615a1a0"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-03b4f3b2-a3c4-49f1-8fcd-7e81d615a1a0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-03b4f3b2-a3c4-49f1-8fcd-7e81d615a1a0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-03b4f3b2-a3c4-49f1-8fcd-7e81d615a1a0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-36361b82-b2fc-4ec2-9730-30b4a143239a {
  margin-top: 6px;
margin-left: 10px;
margin-bottom: 8px;
margin-right: -10px;
max-width: 120px;
aspect-ratio: 518/116;
text-align: left;
}

#s-36361b82-b2fc-4ec2-9730-30b4a143239a {
  margin: 0 !important;
  overflow: visible;
}

#s-36361b82-b2fc-4ec2-9730-30b4a143239a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-36361b82-b2fc-4ec2-9730-30b4a143239a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 10px;
  margin-right: -10px;
  margin-top: 6px;
  margin-bottom: 8px;
}

.shg-image-content-margin-container-s-36361b82-b2fc-4ec2-9730-30b4a143239a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image {
  /* Add background color handling */
  
}

#s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-36361b82-b2fc-4ec2-9730-30b4a143239a .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-36361b82-b2fc-4ec2-9730-30b4a143239a .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-36361b82-b2fc-4ec2-9730-30b4a143239a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-36361b82-b2fc-4ec2-9730-30b4a143239a .shogun-image-content {
  
    justify-content: center;
  
}

.s-36361b82-b2fc-4ec2-9730-30b4a143239a.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image {
  box-sizing: border-box;
}



.s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-36361b82-b2fc-4ec2-9730-30b4a143239a {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container {
      position: relative;
    }

    .s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

@media (min-width: 1200px){#s-36361b82-b2fc-4ec2-9730-30b4a143239a {
  margin: 0 !important;
  overflow: visible;
}

#s-36361b82-b2fc-4ec2-9730-30b4a143239a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-36361b82-b2fc-4ec2-9730-30b4a143239a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-36361b82-b2fc-4ec2-9730-30b4a143239a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image {
  /* Add background color handling */
  
}

#s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-36361b82-b2fc-4ec2-9730-30b4a143239a .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-36361b82-b2fc-4ec2-9730-30b4a143239a .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-36361b82-b2fc-4ec2-9730-30b4a143239a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-36361b82-b2fc-4ec2-9730-30b4a143239a .shogun-image-content {
  
    justify-content: center;
  
}

.s-36361b82-b2fc-4ec2-9730-30b4a143239a.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image {
  box-sizing: border-box;
}



.s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-36361b82-b2fc-4ec2-9730-30b4a143239a {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container {
      position: relative;
    }

    .s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-36361b82-b2fc-4ec2-9730-30b4a143239a {
  margin: 0 !important;
  overflow: visible;
}

#s-36361b82-b2fc-4ec2-9730-30b4a143239a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-36361b82-b2fc-4ec2-9730-30b4a143239a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-36361b82-b2fc-4ec2-9730-30b4a143239a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image {
  /* Add background color handling */
  
}

#s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-36361b82-b2fc-4ec2-9730-30b4a143239a .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-36361b82-b2fc-4ec2-9730-30b4a143239a .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-36361b82-b2fc-4ec2-9730-30b4a143239a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-36361b82-b2fc-4ec2-9730-30b4a143239a .shogun-image-content {
  
    justify-content: center;
  
}

.s-36361b82-b2fc-4ec2-9730-30b4a143239a.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image {
  box-sizing: border-box;
}



.s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-36361b82-b2fc-4ec2-9730-30b4a143239a {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container {
      position: relative;
    }

    .s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-36361b82-b2fc-4ec2-9730-30b4a143239a {
  margin: 0 !important;
  overflow: visible;
}

#s-36361b82-b2fc-4ec2-9730-30b4a143239a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-36361b82-b2fc-4ec2-9730-30b4a143239a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-36361b82-b2fc-4ec2-9730-30b4a143239a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image {
  /* Add background color handling */
  
}

#s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-36361b82-b2fc-4ec2-9730-30b4a143239a .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-36361b82-b2fc-4ec2-9730-30b4a143239a .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-36361b82-b2fc-4ec2-9730-30b4a143239a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-36361b82-b2fc-4ec2-9730-30b4a143239a .shogun-image-content {
  
    justify-content: center;
  
}

.s-36361b82-b2fc-4ec2-9730-30b4a143239a.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image {
  box-sizing: border-box;
}



.s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-36361b82-b2fc-4ec2-9730-30b4a143239a {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container {
      position: relative;
    }

    .s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (max-width: 767px){#s-36361b82-b2fc-4ec2-9730-30b4a143239a {
  margin: 0 !important;
  overflow: visible;
}

#s-36361b82-b2fc-4ec2-9730-30b4a143239a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-36361b82-b2fc-4ec2-9730-30b4a143239a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-36361b82-b2fc-4ec2-9730-30b4a143239a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image {
  /* Add background color handling */
  
}

#s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-36361b82-b2fc-4ec2-9730-30b4a143239a .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-36361b82-b2fc-4ec2-9730-30b4a143239a .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-36361b82-b2fc-4ec2-9730-30b4a143239a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-36361b82-b2fc-4ec2-9730-30b4a143239a .shogun-image-content {
  
    justify-content: center;
  
}

.s-36361b82-b2fc-4ec2-9730-30b4a143239a.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image {
  box-sizing: border-box;
}



.s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-36361b82-b2fc-4ec2-9730-30b4a143239a {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container {
      position: relative;
    }

    .s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-36361b82-b2fc-4ec2-9730-30b4a143239a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-36361b82-b2fc-4ec2-9730-30b4a143239a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}
#s-6ca4eb21-9b5a-4423-9ec3-eb4a32901457 {
  margin-left: -25px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
background-color: rgba(121, 75, 161, 1);
text-align: right;
text-decoration: none;
}
#s-6ca4eb21-9b5a-4423-9ec3-eb4a32901457:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6ca4eb21-9b5a-4423-9ec3-eb4a32901457:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-6ca4eb21-9b5a-4423-9ec3-eb4a32901457-root {
    text-align: right;
  }


#s-6ca4eb21-9b5a-4423-9ec3-eb4a32901457.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6ca4eb21-9b5a-4423-9ec3-eb4a32901457-root {
    text-align: right;
  }


#s-6ca4eb21-9b5a-4423-9ec3-eb4a32901457.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6ca4eb21-9b5a-4423-9ec3-eb4a32901457-root {
    text-align: right;
  }


#s-6ca4eb21-9b5a-4423-9ec3-eb4a32901457.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6ca4eb21-9b5a-4423-9ec3-eb4a32901457-root {
    text-align: right;
  }


#s-6ca4eb21-9b5a-4423-9ec3-eb4a32901457.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6ca4eb21-9b5a-4423-9ec3-eb4a32901457-root {
    text-align: right;
  }


#s-6ca4eb21-9b5a-4423-9ec3-eb4a32901457.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}
#s-47afa67a-3d37-409a-80d0-04708caea94d {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-47afa67a-3d37-409a-80d0-04708caea94d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-47afa67a-3d37-409a-80d0-04708caea94d {
  cursor: pointer;
}#s-47afa67a-3d37-409a-80d0-04708caea94d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f0d25b98-d626-4c66-9ede-64873fa4a75f {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-f0d25b98-d626-4c66-9ede-64873fa4a75f {
  margin: 0 !important;
  overflow: visible;
}

#s-f0d25b98-d626-4c66-9ede-64873fa4a75f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f0d25b98-d626-4c66-9ede-64873fa4a75f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f0d25b98-d626-4c66-9ede-64873fa4a75f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f0d25b98-d626-4c66-9ede-64873fa4a75f img.shogun-image {
  /* Add background color handling */
  
}

#s-f0d25b98-d626-4c66-9ede-64873fa4a75f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 5px;

}






.s-f0d25b98-d626-4c66-9ede-64873fa4a75f .shogun-image-content {
  
    justify-content: center;
  
}

.s-f0d25b98-d626-4c66-9ede-64873fa4a75f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f0d25b98-d626-4c66-9ede-64873fa4a75f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f0d25b98-d626-4c66-9ede-64873fa4a75f.shogun-image {
  box-sizing: border-box;
}



.s-f0d25b98-d626-4c66-9ede-64873fa4a75f img.shogun-image {
  
}


@media (min-width: 1200px){#s-f0d25b98-d626-4c66-9ede-64873fa4a75f {
  margin: 0 !important;
  overflow: visible;
}

#s-f0d25b98-d626-4c66-9ede-64873fa4a75f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f0d25b98-d626-4c66-9ede-64873fa4a75f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f0d25b98-d626-4c66-9ede-64873fa4a75f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f0d25b98-d626-4c66-9ede-64873fa4a75f img.shogun-image {
  /* Add background color handling */
  
}

#s-f0d25b98-d626-4c66-9ede-64873fa4a75f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-f0d25b98-d626-4c66-9ede-64873fa4a75f .shogun-image-content {
  
    justify-content: center;
  
}

.s-f0d25b98-d626-4c66-9ede-64873fa4a75f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f0d25b98-d626-4c66-9ede-64873fa4a75f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f0d25b98-d626-4c66-9ede-64873fa4a75f.shogun-image {
  box-sizing: border-box;
}



.s-f0d25b98-d626-4c66-9ede-64873fa4a75f img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-f0d25b98-d626-4c66-9ede-64873fa4a75f {
  margin: 0 !important;
  overflow: visible;
}

#s-f0d25b98-d626-4c66-9ede-64873fa4a75f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f0d25b98-d626-4c66-9ede-64873fa4a75f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f0d25b98-d626-4c66-9ede-64873fa4a75f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f0d25b98-d626-4c66-9ede-64873fa4a75f img.shogun-image {
  /* Add background color handling */
  
}

#s-f0d25b98-d626-4c66-9ede-64873fa4a75f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-f0d25b98-d626-4c66-9ede-64873fa4a75f .shogun-image-content {
  
    justify-content: center;
  
}

.s-f0d25b98-d626-4c66-9ede-64873fa4a75f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f0d25b98-d626-4c66-9ede-64873fa4a75f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f0d25b98-d626-4c66-9ede-64873fa4a75f.shogun-image {
  box-sizing: border-box;
}



.s-f0d25b98-d626-4c66-9ede-64873fa4a75f img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-f0d25b98-d626-4c66-9ede-64873fa4a75f {
  margin: 0 !important;
  overflow: visible;
}

#s-f0d25b98-d626-4c66-9ede-64873fa4a75f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f0d25b98-d626-4c66-9ede-64873fa4a75f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f0d25b98-d626-4c66-9ede-64873fa4a75f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f0d25b98-d626-4c66-9ede-64873fa4a75f img.shogun-image {
  /* Add background color handling */
  
}

#s-f0d25b98-d626-4c66-9ede-64873fa4a75f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-f0d25b98-d626-4c66-9ede-64873fa4a75f .shogun-image-content {
  
    justify-content: center;
  
}

.s-f0d25b98-d626-4c66-9ede-64873fa4a75f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f0d25b98-d626-4c66-9ede-64873fa4a75f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f0d25b98-d626-4c66-9ede-64873fa4a75f.shogun-image {
  box-sizing: border-box;
}



.s-f0d25b98-d626-4c66-9ede-64873fa4a75f img.shogun-image {
  
}


}@media (max-width: 767px){#s-f0d25b98-d626-4c66-9ede-64873fa4a75f {
  margin: 0 !important;
  overflow: visible;
}

#s-f0d25b98-d626-4c66-9ede-64873fa4a75f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f0d25b98-d626-4c66-9ede-64873fa4a75f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f0d25b98-d626-4c66-9ede-64873fa4a75f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f0d25b98-d626-4c66-9ede-64873fa4a75f img.shogun-image {
  /* Add background color handling */
  
}

#s-f0d25b98-d626-4c66-9ede-64873fa4a75f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-f0d25b98-d626-4c66-9ede-64873fa4a75f .shogun-image-content {
  
    justify-content: center;
  
}

.s-f0d25b98-d626-4c66-9ede-64873fa4a75f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f0d25b98-d626-4c66-9ede-64873fa4a75f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f0d25b98-d626-4c66-9ede-64873fa4a75f.shogun-image {
  box-sizing: border-box;
}



.s-f0d25b98-d626-4c66-9ede-64873fa4a75f img.shogun-image {
  
}


}
#s-3eb08638-1df6-49da-a793-c5aa4caf2e28 {
  margin-top: 5px;
margin-left: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-3eb08638-1df6-49da-a793-c5aa4caf2e28 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  line-height: 1.2em;
  
  
}



#s-a7c55935-5f90-44dc-a6c1-9120e7b5de76 {
  margin-left: auto;
margin-bottom: 12px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-a7c55935-5f90-44dc-a6c1-9120e7b5de76"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-a7c55935-5f90-44dc-a6c1-9120e7b5de76"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a7c55935-5f90-44dc-a6c1-9120e7b5de76"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a7c55935-5f90-44dc-a6c1-9120e7b5de76"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b {
  margin-top: 6px;
margin-left: 10px;
margin-bottom: 8px;
margin-right: -10px;
max-width: 120px;
aspect-ratio: 518/116;
text-align: left;
}

#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b {
  margin: 0 !important;
  overflow: visible;
}

#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a5af14f7-c531-4f0e-9cde-faed18b80f0b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 10px;
  margin-right: -10px;
  margin-top: 6px;
  margin-bottom: 8px;
}

.shg-image-content-margin-container-s-a5af14f7-c531-4f0e-9cde-faed18b80f0b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image {
  /* Add background color handling */
  
}

#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5af14f7-c531-4f0e-9cde-faed18b80f0b .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-a5af14f7-c531-4f0e-9cde-faed18b80f0b .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5af14f7-c531-4f0e-9cde-faed18b80f0b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b .shogun-image-content {
  
    justify-content: center;
  
}

.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image {
  box-sizing: border-box;
}



.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container {
      position: relative;
    }

    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

@media (min-width: 1200px){#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b {
  margin: 0 !important;
  overflow: visible;
}

#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a5af14f7-c531-4f0e-9cde-faed18b80f0b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a5af14f7-c531-4f0e-9cde-faed18b80f0b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image {
  /* Add background color handling */
  
}

#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5af14f7-c531-4f0e-9cde-faed18b80f0b .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-a5af14f7-c531-4f0e-9cde-faed18b80f0b .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5af14f7-c531-4f0e-9cde-faed18b80f0b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b .shogun-image-content {
  
    justify-content: center;
  
}

.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image {
  box-sizing: border-box;
}



.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container {
      position: relative;
    }

    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b {
  margin: 0 !important;
  overflow: visible;
}

#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a5af14f7-c531-4f0e-9cde-faed18b80f0b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a5af14f7-c531-4f0e-9cde-faed18b80f0b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image {
  /* Add background color handling */
  
}

#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5af14f7-c531-4f0e-9cde-faed18b80f0b .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-a5af14f7-c531-4f0e-9cde-faed18b80f0b .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5af14f7-c531-4f0e-9cde-faed18b80f0b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b .shogun-image-content {
  
    justify-content: center;
  
}

.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image {
  box-sizing: border-box;
}



.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container {
      position: relative;
    }

    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b {
  margin: 0 !important;
  overflow: visible;
}

#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a5af14f7-c531-4f0e-9cde-faed18b80f0b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a5af14f7-c531-4f0e-9cde-faed18b80f0b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image {
  /* Add background color handling */
  
}

#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5af14f7-c531-4f0e-9cde-faed18b80f0b .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-a5af14f7-c531-4f0e-9cde-faed18b80f0b .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5af14f7-c531-4f0e-9cde-faed18b80f0b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b .shogun-image-content {
  
    justify-content: center;
  
}

.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image {
  box-sizing: border-box;
}



.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container {
      position: relative;
    }

    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (max-width: 767px){#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b {
  margin: 0 !important;
  overflow: visible;
}

#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a5af14f7-c531-4f0e-9cde-faed18b80f0b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a5af14f7-c531-4f0e-9cde-faed18b80f0b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image {
  /* Add background color handling */
  
}

#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5af14f7-c531-4f0e-9cde-faed18b80f0b .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-a5af14f7-c531-4f0e-9cde-faed18b80f0b .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5af14f7-c531-4f0e-9cde-faed18b80f0b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b .shogun-image-content {
  
    justify-content: center;
  
}

.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image {
  box-sizing: border-box;
}



.s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container {
      position: relative;
    }

    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5af14f7-c531-4f0e-9cde-faed18b80f0b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}
#s-6ce1ed64-d8d6-48e3-870e-66e35240e379 {
  margin-left: -25px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
background-color: rgba(121, 75, 161, 1);
text-align: right;
text-decoration: none;
}
#s-6ce1ed64-d8d6-48e3-870e-66e35240e379:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6ce1ed64-d8d6-48e3-870e-66e35240e379:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-6ce1ed64-d8d6-48e3-870e-66e35240e379-root {
    text-align: right;
  }


#s-6ce1ed64-d8d6-48e3-870e-66e35240e379.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6ce1ed64-d8d6-48e3-870e-66e35240e379-root {
    text-align: right;
  }


#s-6ce1ed64-d8d6-48e3-870e-66e35240e379.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6ce1ed64-d8d6-48e3-870e-66e35240e379-root {
    text-align: right;
  }


#s-6ce1ed64-d8d6-48e3-870e-66e35240e379.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6ce1ed64-d8d6-48e3-870e-66e35240e379-root {
    text-align: right;
  }


#s-6ce1ed64-d8d6-48e3-870e-66e35240e379.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6ce1ed64-d8d6-48e3-870e-66e35240e379-root {
    text-align: right;
  }


#s-6ce1ed64-d8d6-48e3-870e-66e35240e379.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}
#s-5980ad7e-31be-4516-b052-d3abc7a5f182 {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-5980ad7e-31be-4516-b052-d3abc7a5f182 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5980ad7e-31be-4516-b052-d3abc7a5f182 {
  cursor: pointer;
}#s-5980ad7e-31be-4516-b052-d3abc7a5f182.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd {
  margin: 0 !important;
  overflow: visible;
}

#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd img.shogun-image {
  /* Add background color handling */
  
}

#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 5px;

}






.s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd .shogun-image-content {
  
    justify-content: center;
  
}

.s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd.shogun-image {
  box-sizing: border-box;
}



.s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd img.shogun-image {
  
}


@media (min-width: 1200px){#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd {
  margin: 0 !important;
  overflow: visible;
}

#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd img.shogun-image {
  /* Add background color handling */
  
}

#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd .shogun-image-content {
  
    justify-content: center;
  
}

.s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd.shogun-image {
  box-sizing: border-box;
}



.s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd {
  margin: 0 !important;
  overflow: visible;
}

#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd img.shogun-image {
  /* Add background color handling */
  
}

#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd .shogun-image-content {
  
    justify-content: center;
  
}

.s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd.shogun-image {
  box-sizing: border-box;
}



.s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd {
  margin: 0 !important;
  overflow: visible;
}

#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd img.shogun-image {
  /* Add background color handling */
  
}

#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd .shogun-image-content {
  
    justify-content: center;
  
}

.s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd.shogun-image {
  box-sizing: border-box;
}



.s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd img.shogun-image {
  
}


}@media (max-width: 767px){#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd {
  margin: 0 !important;
  overflow: visible;
}

#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd img.shogun-image {
  /* Add background color handling */
  
}

#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd .shogun-image-content {
  
    justify-content: center;
  
}

.s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd.shogun-image {
  box-sizing: border-box;
}



.s-83ed3ba6-5b96-4965-bc76-0ef4a08638bd img.shogun-image {
  
}


}
#s-c6d0e45e-3500-4d82-bc2f-1ad5f94654a4 {
  margin-top: 5px;
margin-left: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-c6d0e45e-3500-4d82-bc2f-1ad5f94654a4 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  line-height: 1.2em;
  
  
}



#s-f50cb911-b783-4399-87c5-8c78655c7972 {
  margin-left: auto;
margin-bottom: 12px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-f50cb911-b783-4399-87c5-8c78655c7972"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-f50cb911-b783-4399-87c5-8c78655c7972"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f50cb911-b783-4399-87c5-8c78655c7972"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f50cb911-b783-4399-87c5-8c78655c7972"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb {
  margin-top: 6px;
margin-left: 10px;
margin-bottom: 8px;
margin-right: -10px;
max-width: 120px;
aspect-ratio: 518/116;
text-align: left;
}

#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb {
  margin: 0 !important;
  overflow: visible;
}

#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 10px;
  margin-right: -10px;
  margin-top: 6px;
  margin-bottom: 8px;
}

.shg-image-content-margin-container-s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image {
  /* Add background color handling */
  
}

#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image {
  box-sizing: border-box;
}



.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container {
      position: relative;
    }

    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

@media (min-width: 1200px){#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb {
  margin: 0 !important;
  overflow: visible;
}

#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image {
  /* Add background color handling */
  
}

#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image {
  box-sizing: border-box;
}



.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container {
      position: relative;
    }

    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb {
  margin: 0 !important;
  overflow: visible;
}

#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image {
  /* Add background color handling */
  
}

#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image {
  box-sizing: border-box;
}



.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container {
      position: relative;
    }

    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb {
  margin: 0 !important;
  overflow: visible;
}

#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image {
  /* Add background color handling */
  
}

#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image {
  box-sizing: border-box;
}



.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container {
      position: relative;
    }

    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (max-width: 767px){#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb {
  margin: 0 !important;
  overflow: visible;
}

#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image {
  /* Add background color handling */
  
}

#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image {
  box-sizing: border-box;
}



.s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container {
      position: relative;
    }

    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e55e0e7e-f069-4466-bacf-a61b9d9e53cb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}
#s-ff3a67de-5c9a-4607-9881-821ef382f1ce {
  margin-left: -25px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
background-color: rgba(121, 75, 161, 1);
text-align: right;
text-decoration: none;
}
#s-ff3a67de-5c9a-4607-9881-821ef382f1ce:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ff3a67de-5c9a-4607-9881-821ef382f1ce:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-ff3a67de-5c9a-4607-9881-821ef382f1ce-root {
    text-align: right;
  }


#s-ff3a67de-5c9a-4607-9881-821ef382f1ce.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ff3a67de-5c9a-4607-9881-821ef382f1ce-root {
    text-align: right;
  }


#s-ff3a67de-5c9a-4607-9881-821ef382f1ce.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ff3a67de-5c9a-4607-9881-821ef382f1ce-root {
    text-align: right;
  }


#s-ff3a67de-5c9a-4607-9881-821ef382f1ce.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ff3a67de-5c9a-4607-9881-821ef382f1ce-root {
    text-align: right;
  }


#s-ff3a67de-5c9a-4607-9881-821ef382f1ce.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ff3a67de-5c9a-4607-9881-821ef382f1ce-root {
    text-align: right;
  }


#s-ff3a67de-5c9a-4607-9881-821ef382f1ce.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}
#s-76787445-865b-4afe-92af-e4c187b2274e {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-76787445-865b-4afe-92af-e4c187b2274e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-76787445-865b-4afe-92af-e4c187b2274e {
  cursor: pointer;
}#s-76787445-865b-4afe-92af-e4c187b2274e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb {
  margin: 0 !important;
  overflow: visible;
}

#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f479f23d-fcba-403b-9f9c-093af0d9c8fb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f479f23d-fcba-403b-9f9c-093af0d9c8fb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image {
  /* Add background color handling */
  
}

#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 5px;

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f479f23d-fcba-403b-9f9c-093af0d9c8fb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f479f23d-fcba-403b-9f9c-093af0d9c8fb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f479f23d-fcba-403b-9f9c-093af0d9c8fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb .shogun-image-content {
  
    justify-content: center;
  
}

.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image {
  box-sizing: border-box;
}



.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container {
      position: relative;
    }

    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb {
  margin: 0 !important;
  overflow: visible;
}

#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f479f23d-fcba-403b-9f9c-093af0d9c8fb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f479f23d-fcba-403b-9f9c-093af0d9c8fb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image {
  /* Add background color handling */
  
}

#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f479f23d-fcba-403b-9f9c-093af0d9c8fb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f479f23d-fcba-403b-9f9c-093af0d9c8fb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f479f23d-fcba-403b-9f9c-093af0d9c8fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb .shogun-image-content {
  
    justify-content: center;
  
}

.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image {
  box-sizing: border-box;
}



.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container {
      position: relative;
    }

    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb {
  margin: 0 !important;
  overflow: visible;
}

#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f479f23d-fcba-403b-9f9c-093af0d9c8fb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f479f23d-fcba-403b-9f9c-093af0d9c8fb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image {
  /* Add background color handling */
  
}

#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f479f23d-fcba-403b-9f9c-093af0d9c8fb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f479f23d-fcba-403b-9f9c-093af0d9c8fb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f479f23d-fcba-403b-9f9c-093af0d9c8fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb .shogun-image-content {
  
    justify-content: center;
  
}

.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image {
  box-sizing: border-box;
}



.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container {
      position: relative;
    }

    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb {
  margin: 0 !important;
  overflow: visible;
}

#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f479f23d-fcba-403b-9f9c-093af0d9c8fb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f479f23d-fcba-403b-9f9c-093af0d9c8fb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image {
  /* Add background color handling */
  
}

#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f479f23d-fcba-403b-9f9c-093af0d9c8fb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f479f23d-fcba-403b-9f9c-093af0d9c8fb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f479f23d-fcba-403b-9f9c-093af0d9c8fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb .shogun-image-content {
  
    justify-content: center;
  
}

.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image {
  box-sizing: border-box;
}



.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container {
      position: relative;
    }

    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb {
  margin: 0 !important;
  overflow: visible;
}

#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f479f23d-fcba-403b-9f9c-093af0d9c8fb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f479f23d-fcba-403b-9f9c-093af0d9c8fb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image {
  /* Add background color handling */
  
}

#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f479f23d-fcba-403b-9f9c-093af0d9c8fb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-f479f23d-fcba-403b-9f9c-093af0d9c8fb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f479f23d-fcba-403b-9f9c-093af0d9c8fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb .shogun-image-content {
  
    justify-content: center;
  
}

.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image {
  box-sizing: border-box;
}



.s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container {
      position: relative;
    }

    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f479f23d-fcba-403b-9f9c-093af0d9c8fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-b43caeaa-cdd9-4c68-b749-6b26589cd1d0 {
  margin-top: 5px;
margin-left: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-b43caeaa-cdd9-4c68-b749-6b26589cd1d0 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  line-height: 1.2em;
  
  
}



#s-bdf9ff7c-e705-4d83-817d-f09ef5536bd2 {
  margin-left: auto;
margin-bottom: 12px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-bdf9ff7c-e705-4d83-817d-f09ef5536bd2"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-bdf9ff7c-e705-4d83-817d-f09ef5536bd2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-bdf9ff7c-e705-4d83-817d-f09ef5536bd2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-bdf9ff7c-e705-4d83-817d-f09ef5536bd2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 {
  margin-top: 6px;
margin-left: 10px;
margin-bottom: 8px;
margin-right: -10px;
max-width: 120px;
aspect-ratio: 518/116;
text-align: left;
}

#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 {
  margin: 0 !important;
  overflow: visible;
}

#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 10px;
  margin-right: -10px;
  margin-top: 6px;
  margin-bottom: 8px;
}

.shg-image-content-margin-container-s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image {
  /* Add background color handling */
  
}

#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image {
  box-sizing: border-box;
}



.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container {
      position: relative;
    }

    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

@media (min-width: 1200px){#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 {
  margin: 0 !important;
  overflow: visible;
}

#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image {
  /* Add background color handling */
  
}

#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image {
  box-sizing: border-box;
}



.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container {
      position: relative;
    }

    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 {
  margin: 0 !important;
  overflow: visible;
}

#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image {
  /* Add background color handling */
  
}

#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image {
  box-sizing: border-box;
}



.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container {
      position: relative;
    }

    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 {
  margin: 0 !important;
  overflow: visible;
}

#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image {
  /* Add background color handling */
  
}

#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image {
  box-sizing: border-box;
}



.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container {
      position: relative;
    }

    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (max-width: 767px){#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 {
  margin: 0 !important;
  overflow: visible;
}

#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image {
  /* Add background color handling */
  
}

#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image {
  box-sizing: border-box;
}



.s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container {
      position: relative;
    }

    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3a08bbe1-aac2-42dd-b346-17bef1f28f65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}
#s-a590e72b-2df2-4592-9076-642582a51dae {
  margin-left: -25px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
background-color: rgba(121, 75, 161, 1);
text-align: right;
text-decoration: none;
}
#s-a590e72b-2df2-4592-9076-642582a51dae:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a590e72b-2df2-4592-9076-642582a51dae:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-a590e72b-2df2-4592-9076-642582a51dae-root {
    text-align: right;
  }


#s-a590e72b-2df2-4592-9076-642582a51dae.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a590e72b-2df2-4592-9076-642582a51dae-root {
    text-align: right;
  }


#s-a590e72b-2df2-4592-9076-642582a51dae.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a590e72b-2df2-4592-9076-642582a51dae-root {
    text-align: right;
  }


#s-a590e72b-2df2-4592-9076-642582a51dae.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a590e72b-2df2-4592-9076-642582a51dae-root {
    text-align: right;
  }


#s-a590e72b-2df2-4592-9076-642582a51dae.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a590e72b-2df2-4592-9076-642582a51dae-root {
    text-align: right;
  }


#s-a590e72b-2df2-4592-9076-642582a51dae.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}
#s-4bf7bd93-ebfb-4867-9397-c8d38933f04a {
  margin-top: 20px;
margin-left: 5%;
margin-bottom: 50px;
margin-right: 5%;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-4bf7bd93-ebfb-4867-9397-c8d38933f04a"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 768px) {
[id="s-4bf7bd93-ebfb-4867-9397-c8d38933f04a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-4bf7bd93-ebfb-4867-9397-c8d38933f04a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-4bf7bd93-ebfb-4867-9397-c8d38933f04a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-1507cb99-2622-4617-9b18-3cf4d386827a {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-1507cb99-2622-4617-9b18-3cf4d386827a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1507cb99-2622-4617-9b18-3cf4d386827a {
  cursor: pointer;
}#s-1507cb99-2622-4617-9b18-3cf4d386827a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 {
  margin: 0 !important;
  overflow: visible;
}

#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image {
  /* Add background color handling */
  
}

#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 5px;

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image {
  box-sizing: border-box;
}



.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container {
      position: relative;
    }

    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 {
  margin: 0 !important;
  overflow: visible;
}

#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image {
  /* Add background color handling */
  
}

#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image {
  box-sizing: border-box;
}



.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container {
      position: relative;
    }

    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 {
  margin: 0 !important;
  overflow: visible;
}

#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image {
  /* Add background color handling */
  
}

#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image {
  box-sizing: border-box;
}



.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container {
      position: relative;
    }

    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 {
  margin: 0 !important;
  overflow: visible;
}

#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image {
  /* Add background color handling */
  
}

#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image {
  box-sizing: border-box;
}



.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container {
      position: relative;
    }

    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 {
  margin: 0 !important;
  overflow: visible;
}

#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image {
  /* Add background color handling */
  
}

#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image {
  box-sizing: border-box;
}



.s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container {
      position: relative;
    }

    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e1a421e-1b44-44c7-84d1-0f9a9cafefb0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-70f81764-f30e-4477-9d07-c8c5638876f1 {
  margin-top: 5px;
margin-left: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-70f81764-f30e-4477-9d07-c8c5638876f1 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  line-height: 1.2em;
  
  
}



#s-18555b9b-4c81-4114-b0f8-62f5c011a69f {
  margin-left: auto;
margin-bottom: 12px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-18555b9b-4c81-4114-b0f8-62f5c011a69f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-18555b9b-4c81-4114-b0f8-62f5c011a69f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-18555b9b-4c81-4114-b0f8-62f5c011a69f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-18555b9b-4c81-4114-b0f8-62f5c011a69f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 {
  margin-top: 6px;
margin-left: 10px;
margin-bottom: 8px;
margin-right: -10px;
max-width: 120px;
aspect-ratio: 518/116;
text-align: left;
}

#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 {
  margin: 0 !important;
  overflow: visible;
}

#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 10px;
  margin-right: -10px;
  margin-top: 6px;
  margin-bottom: 8px;
}

.shg-image-content-margin-container-s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image {
  /* Add background color handling */
  
}

#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image {
  box-sizing: border-box;
}



.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container {
      position: relative;
    }

    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

@media (min-width: 1200px){#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 {
  margin: 0 !important;
  overflow: visible;
}

#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image {
  /* Add background color handling */
  
}

#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image {
  box-sizing: border-box;
}



.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container {
      position: relative;
    }

    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 {
  margin: 0 !important;
  overflow: visible;
}

#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image {
  /* Add background color handling */
  
}

#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image {
  box-sizing: border-box;
}



.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container {
      position: relative;
    }

    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 {
  margin: 0 !important;
  overflow: visible;
}

#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image {
  /* Add background color handling */
  
}

#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image {
  box-sizing: border-box;
}



.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container {
      position: relative;
    }

    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (max-width: 767px){#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 {
  margin: 0 !important;
  overflow: visible;
}

#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image {
  /* Add background color handling */
  
}

#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image {
  box-sizing: border-box;
}



.s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container {
      position: relative;
    }

    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-34284071-e2cd-4261-a7ed-fbe2c5ca0af7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}
#s-ecee910a-0e0d-49d5-9ba1-fc54378ba616 {
  margin-left: -25px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
background-color: rgba(121, 75, 161, 1);
text-align: right;
text-decoration: none;
}
#s-ecee910a-0e0d-49d5-9ba1-fc54378ba616:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ecee910a-0e0d-49d5-9ba1-fc54378ba616:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-ecee910a-0e0d-49d5-9ba1-fc54378ba616-root {
    text-align: right;
  }


#s-ecee910a-0e0d-49d5-9ba1-fc54378ba616.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ecee910a-0e0d-49d5-9ba1-fc54378ba616-root {
    text-align: right;
  }


#s-ecee910a-0e0d-49d5-9ba1-fc54378ba616.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ecee910a-0e0d-49d5-9ba1-fc54378ba616-root {
    text-align: right;
  }


#s-ecee910a-0e0d-49d5-9ba1-fc54378ba616.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ecee910a-0e0d-49d5-9ba1-fc54378ba616-root {
    text-align: right;
  }


#s-ecee910a-0e0d-49d5-9ba1-fc54378ba616.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ecee910a-0e0d-49d5-9ba1-fc54378ba616-root {
    text-align: right;
  }


#s-ecee910a-0e0d-49d5-9ba1-fc54378ba616.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}
#s-f531c8bd-e683-4759-9c73-a786a3ccbd50 {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-f531c8bd-e683-4759-9c73-a786a3ccbd50 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f531c8bd-e683-4759-9c73-a786a3ccbd50 {
  cursor: pointer;
}#s-f531c8bd-e683-4759-9c73-a786a3ccbd50.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-073848b8-87d4-4bae-81dc-d17fc90c998b {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-073848b8-87d4-4bae-81dc-d17fc90c998b {
  margin: 0 !important;
  overflow: visible;
}

#s-073848b8-87d4-4bae-81dc-d17fc90c998b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-073848b8-87d4-4bae-81dc-d17fc90c998b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-073848b8-87d4-4bae-81dc-d17fc90c998b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image {
  /* Add background color handling */
  
}

#s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 5px;

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-073848b8-87d4-4bae-81dc-d17fc90c998b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-073848b8-87d4-4bae-81dc-d17fc90c998b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-073848b8-87d4-4bae-81dc-d17fc90c998b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-073848b8-87d4-4bae-81dc-d17fc90c998b .shogun-image-content {
  
    justify-content: center;
  
}

.s-073848b8-87d4-4bae-81dc-d17fc90c998b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image {
  box-sizing: border-box;
}



.s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-073848b8-87d4-4bae-81dc-d17fc90c998b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container {
      position: relative;
    }

    .s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

@media (min-width: 1200px){#s-073848b8-87d4-4bae-81dc-d17fc90c998b {
  margin: 0 !important;
  overflow: visible;
}

#s-073848b8-87d4-4bae-81dc-d17fc90c998b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-073848b8-87d4-4bae-81dc-d17fc90c998b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-073848b8-87d4-4bae-81dc-d17fc90c998b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image {
  /* Add background color handling */
  
}

#s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-073848b8-87d4-4bae-81dc-d17fc90c998b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-073848b8-87d4-4bae-81dc-d17fc90c998b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-073848b8-87d4-4bae-81dc-d17fc90c998b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-073848b8-87d4-4bae-81dc-d17fc90c998b .shogun-image-content {
  
    justify-content: center;
  
}

.s-073848b8-87d4-4bae-81dc-d17fc90c998b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image {
  box-sizing: border-box;
}



.s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-073848b8-87d4-4bae-81dc-d17fc90c998b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container {
      position: relative;
    }

    .s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-073848b8-87d4-4bae-81dc-d17fc90c998b {
  margin: 0 !important;
  overflow: visible;
}

#s-073848b8-87d4-4bae-81dc-d17fc90c998b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-073848b8-87d4-4bae-81dc-d17fc90c998b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-073848b8-87d4-4bae-81dc-d17fc90c998b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image {
  /* Add background color handling */
  
}

#s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-073848b8-87d4-4bae-81dc-d17fc90c998b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-073848b8-87d4-4bae-81dc-d17fc90c998b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-073848b8-87d4-4bae-81dc-d17fc90c998b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-073848b8-87d4-4bae-81dc-d17fc90c998b .shogun-image-content {
  
    justify-content: center;
  
}

.s-073848b8-87d4-4bae-81dc-d17fc90c998b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image {
  box-sizing: border-box;
}



.s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-073848b8-87d4-4bae-81dc-d17fc90c998b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container {
      position: relative;
    }

    .s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-073848b8-87d4-4bae-81dc-d17fc90c998b {
  margin: 0 !important;
  overflow: visible;
}

#s-073848b8-87d4-4bae-81dc-d17fc90c998b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-073848b8-87d4-4bae-81dc-d17fc90c998b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-073848b8-87d4-4bae-81dc-d17fc90c998b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image {
  /* Add background color handling */
  
}

#s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-073848b8-87d4-4bae-81dc-d17fc90c998b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-073848b8-87d4-4bae-81dc-d17fc90c998b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-073848b8-87d4-4bae-81dc-d17fc90c998b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-073848b8-87d4-4bae-81dc-d17fc90c998b .shogun-image-content {
  
    justify-content: center;
  
}

.s-073848b8-87d4-4bae-81dc-d17fc90c998b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image {
  box-sizing: border-box;
}



.s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-073848b8-87d4-4bae-81dc-d17fc90c998b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container {
      position: relative;
    }

    .s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}@media (max-width: 767px){#s-073848b8-87d4-4bae-81dc-d17fc90c998b {
  margin: 0 !important;
  overflow: visible;
}

#s-073848b8-87d4-4bae-81dc-d17fc90c998b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-073848b8-87d4-4bae-81dc-d17fc90c998b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-073848b8-87d4-4bae-81dc-d17fc90c998b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image {
  /* Add background color handling */
  
}

#s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-073848b8-87d4-4bae-81dc-d17fc90c998b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-073848b8-87d4-4bae-81dc-d17fc90c998b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-073848b8-87d4-4bae-81dc-d17fc90c998b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1080px;
  }



  img.s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image {
    
    
    
    max-height: 1080px;
  }


.s-073848b8-87d4-4bae-81dc-d17fc90c998b .shogun-image-content {
  
    justify-content: center;
  
}

.s-073848b8-87d4-4bae-81dc-d17fc90c998b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image {
  box-sizing: border-box;
}



.s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-073848b8-87d4-4bae-81dc-d17fc90c998b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container {
      position: relative;
    }

    .s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-073848b8-87d4-4bae-81dc-d17fc90c998b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-073848b8-87d4-4bae-81dc-d17fc90c998b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1080px;
    }
  }

}
#s-3b249ccb-8920-43b7-bdeb-a3fbbd1cc90c {
  margin-top: 5px;
margin-left: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-3b249ccb-8920-43b7-bdeb-a3fbbd1cc90c .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  line-height: 1.2em;
  
  
}



#s-a22cf3ab-b4b5-40e0-989b-c531753d5062 {
  margin-left: auto;
margin-bottom: 12px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-a22cf3ab-b4b5-40e0-989b-c531753d5062"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-a22cf3ab-b4b5-40e0-989b-c531753d5062"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a22cf3ab-b4b5-40e0-989b-c531753d5062"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a22cf3ab-b4b5-40e0-989b-c531753d5062"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-f170e58c-e752-4783-89e6-36b4ff0659e4 {
  margin-top: 6px;
margin-left: 10px;
margin-bottom: 8px;
margin-right: -10px;
max-width: 120px;
aspect-ratio: 518/116;
text-align: left;
}

#s-f170e58c-e752-4783-89e6-36b4ff0659e4 {
  margin: 0 !important;
  overflow: visible;
}

#s-f170e58c-e752-4783-89e6-36b4ff0659e4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f170e58c-e752-4783-89e6-36b4ff0659e4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 10px;
  margin-right: -10px;
  margin-top: 6px;
  margin-bottom: 8px;
}

.shg-image-content-margin-container-s-f170e58c-e752-4783-89e6-36b4ff0659e4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image {
  /* Add background color handling */
  
}

#s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f170e58c-e752-4783-89e6-36b4ff0659e4 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-f170e58c-e752-4783-89e6-36b4ff0659e4 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f170e58c-e752-4783-89e6-36b4ff0659e4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-f170e58c-e752-4783-89e6-36b4ff0659e4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f170e58c-e752-4783-89e6-36b4ff0659e4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image {
  box-sizing: border-box;
}



.s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f170e58c-e752-4783-89e6-36b4ff0659e4 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container {
      position: relative;
    }

    .s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

@media (min-width: 1200px){#s-f170e58c-e752-4783-89e6-36b4ff0659e4 {
  margin: 0 !important;
  overflow: visible;
}

#s-f170e58c-e752-4783-89e6-36b4ff0659e4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f170e58c-e752-4783-89e6-36b4ff0659e4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f170e58c-e752-4783-89e6-36b4ff0659e4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image {
  /* Add background color handling */
  
}

#s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f170e58c-e752-4783-89e6-36b4ff0659e4 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-f170e58c-e752-4783-89e6-36b4ff0659e4 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f170e58c-e752-4783-89e6-36b4ff0659e4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-f170e58c-e752-4783-89e6-36b4ff0659e4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f170e58c-e752-4783-89e6-36b4ff0659e4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image {
  box-sizing: border-box;
}



.s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f170e58c-e752-4783-89e6-36b4ff0659e4 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container {
      position: relative;
    }

    .s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-f170e58c-e752-4783-89e6-36b4ff0659e4 {
  margin: 0 !important;
  overflow: visible;
}

#s-f170e58c-e752-4783-89e6-36b4ff0659e4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f170e58c-e752-4783-89e6-36b4ff0659e4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f170e58c-e752-4783-89e6-36b4ff0659e4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image {
  /* Add background color handling */
  
}

#s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f170e58c-e752-4783-89e6-36b4ff0659e4 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-f170e58c-e752-4783-89e6-36b4ff0659e4 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f170e58c-e752-4783-89e6-36b4ff0659e4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-f170e58c-e752-4783-89e6-36b4ff0659e4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f170e58c-e752-4783-89e6-36b4ff0659e4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image {
  box-sizing: border-box;
}



.s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f170e58c-e752-4783-89e6-36b4ff0659e4 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container {
      position: relative;
    }

    .s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-f170e58c-e752-4783-89e6-36b4ff0659e4 {
  margin: 0 !important;
  overflow: visible;
}

#s-f170e58c-e752-4783-89e6-36b4ff0659e4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f170e58c-e752-4783-89e6-36b4ff0659e4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f170e58c-e752-4783-89e6-36b4ff0659e4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image {
  /* Add background color handling */
  
}

#s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f170e58c-e752-4783-89e6-36b4ff0659e4 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-f170e58c-e752-4783-89e6-36b4ff0659e4 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f170e58c-e752-4783-89e6-36b4ff0659e4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-f170e58c-e752-4783-89e6-36b4ff0659e4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f170e58c-e752-4783-89e6-36b4ff0659e4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image {
  box-sizing: border-box;
}



.s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f170e58c-e752-4783-89e6-36b4ff0659e4 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container {
      position: relative;
    }

    .s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (max-width: 767px){#s-f170e58c-e752-4783-89e6-36b4ff0659e4 {
  margin: 0 !important;
  overflow: visible;
}

#s-f170e58c-e752-4783-89e6-36b4ff0659e4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f170e58c-e752-4783-89e6-36b4ff0659e4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f170e58c-e752-4783-89e6-36b4ff0659e4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image {
  /* Add background color handling */
  
}

#s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f170e58c-e752-4783-89e6-36b4ff0659e4 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-f170e58c-e752-4783-89e6-36b4ff0659e4 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f170e58c-e752-4783-89e6-36b4ff0659e4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-f170e58c-e752-4783-89e6-36b4ff0659e4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f170e58c-e752-4783-89e6-36b4ff0659e4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image {
  box-sizing: border-box;
}



.s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f170e58c-e752-4783-89e6-36b4ff0659e4 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container {
      position: relative;
    }

    .s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f170e58c-e752-4783-89e6-36b4ff0659e4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f170e58c-e752-4783-89e6-36b4ff0659e4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}
#s-3fd18756-68e3-44a5-a5bf-8d04c997ef4c {
  margin-left: -25px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
background-color: rgba(121, 75, 161, 1);
text-align: right;
text-decoration: none;
}
#s-3fd18756-68e3-44a5-a5bf-8d04c997ef4c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3fd18756-68e3-44a5-a5bf-8d04c997ef4c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-3fd18756-68e3-44a5-a5bf-8d04c997ef4c-root {
    text-align: right;
  }


#s-3fd18756-68e3-44a5-a5bf-8d04c997ef4c.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-3fd18756-68e3-44a5-a5bf-8d04c997ef4c-root {
    text-align: right;
  }


#s-3fd18756-68e3-44a5-a5bf-8d04c997ef4c.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3fd18756-68e3-44a5-a5bf-8d04c997ef4c-root {
    text-align: right;
  }


#s-3fd18756-68e3-44a5-a5bf-8d04c997ef4c.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3fd18756-68e3-44a5-a5bf-8d04c997ef4c-root {
    text-align: right;
  }


#s-3fd18756-68e3-44a5-a5bf-8d04c997ef4c.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-3fd18756-68e3-44a5-a5bf-8d04c997ef4c-root {
    text-align: right;
  }


#s-3fd18756-68e3-44a5-a5bf-8d04c997ef4c.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}
#s-8cad6d78-6843-431b-a095-d2fd5a9ec9a2 {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-8cad6d78-6843-431b-a095-d2fd5a9ec9a2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8cad6d78-6843-431b-a095-d2fd5a9ec9a2 {
  cursor: pointer;
}#s-8cad6d78-6843-431b-a095-d2fd5a9ec9a2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 5px;

}






.s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8.shogun-image {
  box-sizing: border-box;
}



.s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 img.shogun-image {
  
}


@media (min-width: 1200px){#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8.shogun-image {
  box-sizing: border-box;
}



.s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8.shogun-image {
  box-sizing: border-box;
}



.s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8.shogun-image {
  box-sizing: border-box;
}



.s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 img.shogun-image {
  
}


}@media (max-width: 767px){#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8.shogun-image {
  box-sizing: border-box;
}



.s-c9b9d2dc-f5d3-489d-b0fe-ec71350720a8 img.shogun-image {
  
}


}
#s-0425477c-7e61-4814-ba79-ee6404e998f6 {
  margin-top: 5px;
margin-left: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-0425477c-7e61-4814-ba79-ee6404e998f6 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  line-height: 1.2em;
  
  
}



#s-3adbbb3e-74a1-44b4-a4c2-2364a0018aa7 {
  margin-left: auto;
margin-bottom: 12px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-3adbbb3e-74a1-44b4-a4c2-2364a0018aa7"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-3adbbb3e-74a1-44b4-a4c2-2364a0018aa7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3adbbb3e-74a1-44b4-a4c2-2364a0018aa7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3adbbb3e-74a1-44b4-a4c2-2364a0018aa7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-3527b241-7225-4c3d-93ed-6febfa4c9e51 {
  margin-top: 6px;
margin-left: 10px;
margin-bottom: 8px;
margin-right: -10px;
max-width: 120px;
aspect-ratio: 518/116;
text-align: left;
}

#s-3527b241-7225-4c3d-93ed-6febfa4c9e51 {
  margin: 0 !important;
  overflow: visible;
}

#s-3527b241-7225-4c3d-93ed-6febfa4c9e51-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3527b241-7225-4c3d-93ed-6febfa4c9e51 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 10px;
  margin-right: -10px;
  margin-top: 6px;
  margin-bottom: 8px;
}

.shg-image-content-margin-container-s-3527b241-7225-4c3d-93ed-6febfa4c9e51 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image {
  /* Add background color handling */
  
}

#s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3527b241-7225-4c3d-93ed-6febfa4c9e51 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-3527b241-7225-4c3d-93ed-6febfa4c9e51 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3527b241-7225-4c3d-93ed-6febfa4c9e51 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-3527b241-7225-4c3d-93ed-6febfa4c9e51 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image {
  box-sizing: border-box;
}



.s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container {
      position: relative;
    }

    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

@media (min-width: 1200px){#s-3527b241-7225-4c3d-93ed-6febfa4c9e51 {
  margin: 0 !important;
  overflow: visible;
}

#s-3527b241-7225-4c3d-93ed-6febfa4c9e51-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3527b241-7225-4c3d-93ed-6febfa4c9e51 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3527b241-7225-4c3d-93ed-6febfa4c9e51 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image {
  /* Add background color handling */
  
}

#s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3527b241-7225-4c3d-93ed-6febfa4c9e51 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-3527b241-7225-4c3d-93ed-6febfa4c9e51 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3527b241-7225-4c3d-93ed-6febfa4c9e51 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-3527b241-7225-4c3d-93ed-6febfa4c9e51 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image {
  box-sizing: border-box;
}



.s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container {
      position: relative;
    }

    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-3527b241-7225-4c3d-93ed-6febfa4c9e51 {
  margin: 0 !important;
  overflow: visible;
}

#s-3527b241-7225-4c3d-93ed-6febfa4c9e51-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3527b241-7225-4c3d-93ed-6febfa4c9e51 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3527b241-7225-4c3d-93ed-6febfa4c9e51 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image {
  /* Add background color handling */
  
}

#s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3527b241-7225-4c3d-93ed-6febfa4c9e51 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-3527b241-7225-4c3d-93ed-6febfa4c9e51 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3527b241-7225-4c3d-93ed-6febfa4c9e51 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-3527b241-7225-4c3d-93ed-6febfa4c9e51 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image {
  box-sizing: border-box;
}



.s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container {
      position: relative;
    }

    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-3527b241-7225-4c3d-93ed-6febfa4c9e51 {
  margin: 0 !important;
  overflow: visible;
}

#s-3527b241-7225-4c3d-93ed-6febfa4c9e51-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3527b241-7225-4c3d-93ed-6febfa4c9e51 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3527b241-7225-4c3d-93ed-6febfa4c9e51 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image {
  /* Add background color handling */
  
}

#s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3527b241-7225-4c3d-93ed-6febfa4c9e51 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-3527b241-7225-4c3d-93ed-6febfa4c9e51 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3527b241-7225-4c3d-93ed-6febfa4c9e51 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-3527b241-7225-4c3d-93ed-6febfa4c9e51 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image {
  box-sizing: border-box;
}



.s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container {
      position: relative;
    }

    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (max-width: 767px){#s-3527b241-7225-4c3d-93ed-6febfa4c9e51 {
  margin: 0 !important;
  overflow: visible;
}

#s-3527b241-7225-4c3d-93ed-6febfa4c9e51-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3527b241-7225-4c3d-93ed-6febfa4c9e51 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3527b241-7225-4c3d-93ed-6febfa4c9e51 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image {
  /* Add background color handling */
  
}

#s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3527b241-7225-4c3d-93ed-6febfa4c9e51 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-3527b241-7225-4c3d-93ed-6febfa4c9e51 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3527b241-7225-4c3d-93ed-6febfa4c9e51 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-3527b241-7225-4c3d-93ed-6febfa4c9e51 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image {
  box-sizing: border-box;
}



.s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container {
      position: relative;
    }

    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3527b241-7225-4c3d-93ed-6febfa4c9e51 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}
#s-e596a9d4-c418-4b4a-b51f-f4ca08548c1c {
  margin-left: -25px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
background-color: rgba(121, 75, 161, 1);
text-align: right;
text-decoration: none;
}
#s-e596a9d4-c418-4b4a-b51f-f4ca08548c1c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e596a9d4-c418-4b4a-b51f-f4ca08548c1c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-e596a9d4-c418-4b4a-b51f-f4ca08548c1c-root {
    text-align: right;
  }


#s-e596a9d4-c418-4b4a-b51f-f4ca08548c1c.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e596a9d4-c418-4b4a-b51f-f4ca08548c1c-root {
    text-align: right;
  }


#s-e596a9d4-c418-4b4a-b51f-f4ca08548c1c.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e596a9d4-c418-4b4a-b51f-f4ca08548c1c-root {
    text-align: right;
  }


#s-e596a9d4-c418-4b4a-b51f-f4ca08548c1c.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e596a9d4-c418-4b4a-b51f-f4ca08548c1c-root {
    text-align: right;
  }


#s-e596a9d4-c418-4b4a-b51f-f4ca08548c1c.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e596a9d4-c418-4b4a-b51f-f4ca08548c1c-root {
    text-align: right;
  }


#s-e596a9d4-c418-4b4a-b51f-f4ca08548c1c.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}
#s-e8d961d5-434a-4199-856c-e7c4a0fd5d0a {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-e8d961d5-434a-4199-856c-e7c4a0fd5d0a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e8d961d5-434a-4199-856c-e7c4a0fd5d0a {
  cursor: pointer;
}#s-e8d961d5-434a-4199-856c-e7c4a0fd5d0a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be {
  margin-left: auto;
margin-right: auto;
max-width: 1080px;
text-align: center;
}

#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be {
  margin: 0 !important;
  overflow: visible;
}

#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be img.shogun-image {
  /* Add background color handling */
  
}

#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #000;
  border-style: none;
  border-radius: 5px;

}






.s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be .shogun-image-content {
  
    justify-content: center;
  
}

.s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be.shogun-image {
  box-sizing: border-box;
}



.s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be img.shogun-image {
  
}


@media (min-width: 1200px){#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be {
  margin: 0 !important;
  overflow: visible;
}

#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be img.shogun-image {
  /* Add background color handling */
  
}

#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be .shogun-image-content {
  
    justify-content: center;
  
}

.s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be.shogun-image {
  box-sizing: border-box;
}



.s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be {
  margin: 0 !important;
  overflow: visible;
}

#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be img.shogun-image {
  /* Add background color handling */
  
}

#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be .shogun-image-content {
  
    justify-content: center;
  
}

.s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be.shogun-image {
  box-sizing: border-box;
}



.s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be {
  margin: 0 !important;
  overflow: visible;
}

#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be img.shogun-image {
  /* Add background color handling */
  
}

#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be .shogun-image-content {
  
    justify-content: center;
  
}

.s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be.shogun-image {
  box-sizing: border-box;
}



.s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be img.shogun-image {
  
}


}@media (max-width: 767px){#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be {
  margin: 0 !important;
  overflow: visible;
}

#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be img.shogun-image {
  /* Add background color handling */
  
}

#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be .shogun-image-content {
  
    justify-content: center;
  
}

.s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be.shogun-image {
  box-sizing: border-box;
}



.s-0f2cc519-d030-4d2c-bd6c-c92833b5a5be img.shogun-image {
  
}


}
#s-8ad7a854-75e8-4e73-ba81-4ff9efe5111e {
  margin-top: 5px;
margin-left: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-8ad7a854-75e8-4e73-ba81-4ff9efe5111e .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  line-height: 1.2em;
  
  
}



#s-7cde7d09-8efe-43ac-9191-c14d534f5099 {
  margin-left: auto;
margin-bottom: 12px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-7cde7d09-8efe-43ac-9191-c14d534f5099"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-7cde7d09-8efe-43ac-9191-c14d534f5099"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-7cde7d09-8efe-43ac-9191-c14d534f5099"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-7cde7d09-8efe-43ac-9191-c14d534f5099"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 {
  margin-top: 6px;
margin-left: 10px;
margin-bottom: 8px;
margin-right: -10px;
max-width: 120px;
aspect-ratio: 518/116;
text-align: left;
}

#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 {
  margin: 0 !important;
  overflow: visible;
}

#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 10px;
  margin-right: -10px;
  margin-top: 6px;
  margin-bottom: 8px;
}

.shg-image-content-margin-container-s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image {
  /* Add background color handling */
  
}

#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image {
  box-sizing: border-box;
}



.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container {
      position: relative;
    }

    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

@media (min-width: 1200px){#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 {
  margin: 0 !important;
  overflow: visible;
}

#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image {
  /* Add background color handling */
  
}

#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image {
  box-sizing: border-box;
}



.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container {
      position: relative;
    }

    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 {
  margin: 0 !important;
  overflow: visible;
}

#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image {
  /* Add background color handling */
  
}

#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image {
  box-sizing: border-box;
}



.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container {
      position: relative;
    }

    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 {
  margin: 0 !important;
  overflow: visible;
}

#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image {
  /* Add background color handling */
  
}

#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image {
  box-sizing: border-box;
}



.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container {
      position: relative;
    }

    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}@media (max-width: 767px){#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 {
  margin: 0 !important;
  overflow: visible;
}

#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image {
  /* Add background color handling */
  
}

#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 .shg-image-content-wrapper {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }

    #s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 .shogun-image-link {
      aspect-ratio: 518/116;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 120px;
  }



  img.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image {
    
    
    
    max-height: 120px;
  }


.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image {
  box-sizing: border-box;
}



.s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 {
      --shg-aspect-ratio: calc(518/116); 
    }

    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container {
      position: relative;
    }

    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb682bd1-6978-4b19-aa5f-b72f83a802b1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 120px;
    }
  }

}
#s-df87dcf7-833d-4d69-9153-7bec00402fe4 {
  margin-left: -25px;
padding-top: 6px;
padding-left: 20px;
padding-bottom: 6px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
background-color: rgba(121, 75, 161, 1);
text-align: right;
text-decoration: none;
}
#s-df87dcf7-833d-4d69-9153-7bec00402fe4:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-df87dcf7-833d-4d69-9153-7bec00402fe4:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-df87dcf7-833d-4d69-9153-7bec00402fe4-root {
    text-align: right;
  }


#s-df87dcf7-833d-4d69-9153-7bec00402fe4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-df87dcf7-833d-4d69-9153-7bec00402fe4-root {
    text-align: right;
  }


#s-df87dcf7-833d-4d69-9153-7bec00402fe4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-df87dcf7-833d-4d69-9153-7bec00402fe4-root {
    text-align: right;
  }


#s-df87dcf7-833d-4d69-9153-7bec00402fe4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-df87dcf7-833d-4d69-9153-7bec00402fe4-root {
    text-align: right;
  }


#s-df87dcf7-833d-4d69-9153-7bec00402fe4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-df87dcf7-833d-4d69-9153-7bec00402fe4-root {
    text-align: right;
  }


#s-df87dcf7-833d-4d69-9153-7bec00402fe4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: DM Sans;
  display:  inline-block ;
}
}
/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  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;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen
       and (min-width: 1024px)
       and (max-height: 1366px)
       and (-webkit-min-device-pixel-ratio: 1.5)
       and (hover: none)
       and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}
