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

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

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

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

.shg-box-vertical-align-center, .shg-box-vertical-center {
  justify-content: center;
}

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

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

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

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

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

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

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

#s-cb3cf96f-4403-4e40-8d99-82d1354790bd {
  background-size: cover;
margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
min-height: 50px;
background-position: center center;
background-color: rgba(243, 243, 243, 1);
}








#s-cb3cf96f-4403-4e40-8d99-82d1354790bd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cb3cf96f-4403-4e40-8d99-82d1354790bd {
  cursor: pointer;
}#s-cb3cf96f-4403-4e40-8d99-82d1354790bd.shg-box.shg-c {
  justify-content: center;
}

.shg-row {
  display: flex;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  justify-content: space-between;
}

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

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

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

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

#s-a42db457-42f9-4121-9437-045d29d738c6 {
  margin-left: auto;
margin-right: auto;
background-color: rgba(239, 239, 239, 1);
}

@media (min-width: 0px) {
[id="s-a42db457-42f9-4121-9437-045d29d738c6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a42db457-42f9-4121-9437-045d29d738c6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a42db457-42f9-4121-9437-045d29d738c6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a42db457-42f9-4121-9437-045d29d738c6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-64df6145-9d2b-4d0a-a364-07ad70bb41bf {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-64df6145-9d2b-4d0a-a364-07ad70bb41bf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-64df6145-9d2b-4d0a-a364-07ad70bb41bf {
  cursor: pointer;
}#s-64df6145-9d2b-4d0a-a364-07ad70bb41bf.shg-box.shg-c {
  justify-content: center;
}

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

.shg-image-content-wrapper {
  position: relative;
}

.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;
  padding: 20px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content {
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.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>div {
  width: 100%;
}

.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;
}
#s-417d3584-9c88-4bc0-b4d7-b113993bc070 {
  margin-top: 0px;
margin-left: 17%;
margin-bottom: 0px;
margin-right: 17%;
max-width: 956px;
aspect-ratio: 956/668;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-417d3584-9c88-4bc0-b4d7-b113993bc070 {
  margin-left: 24%;
margin-right: 24%;
}
}@media (max-width: 767px){#s-417d3584-9c88-4bc0-b4d7-b113993bc070 {
  margin-top: 30px;
}
}


.shg-image-margin-container-s-417d3584-9c88-4bc0-b4d7-b113993bc070 {
  margin-left: 17%;
  margin-right: 17%;
  margin-top: 0px;
  margin-bottom: 0px;
}

#s-417d3584-9c88-4bc0-b4d7-b113993bc070 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-417d3584-9c88-4bc0-b4d7-b113993bc070 .shg-image-content-wrapper {
      aspect-ratio: 956/668;
      min-width: 100%;
      height: auto;
    }

    #s-417d3584-9c88-4bc0-b4d7-b113993bc070 .shogun-image-link {
      aspect-ratio: 956/668;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-417d3584-9c88-4bc0-b4d7-b113993bc070 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-417d3584-9c88-4bc0-b4d7-b113993bc070 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 956px;
  }



  img.s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image {
    
    
    
    max-height: 956px;
  }


.s-417d3584-9c88-4bc0-b4d7-b113993bc070 .shogun-image-content {
  
    align-items: center;
  
}

.s-417d3584-9c88-4bc0-b4d7-b113993bc070.shg-align-container {
  display: flex;
  justify-content: center
}

.s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-417d3584-9c88-4bc0-b4d7-b113993bc070 {
      --shg-aspect-ratio: calc(956/668); 
    }

    .s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container {
      position: relative;
    }

    .s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-417d3584-9c88-4bc0-b4d7-b113993bc070 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 956px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-417d3584-9c88-4bc0-b4d7-b113993bc070 {
  
  
  
  
}

#s-417d3584-9c88-4bc0-b4d7-b113993bc070 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-417d3584-9c88-4bc0-b4d7-b113993bc070 .shg-image-content-wrapper {
      aspect-ratio: 956/668;
      min-width: 100%;
      height: auto;
    }

    #s-417d3584-9c88-4bc0-b4d7-b113993bc070 .shogun-image-link {
      aspect-ratio: 956/668;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-417d3584-9c88-4bc0-b4d7-b113993bc070 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-417d3584-9c88-4bc0-b4d7-b113993bc070 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 956px;
  }



  img.s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image {
    
    
    
    max-height: 956px;
  }


.s-417d3584-9c88-4bc0-b4d7-b113993bc070 .shogun-image-content {
  
    align-items: center;
  
}

.s-417d3584-9c88-4bc0-b4d7-b113993bc070.shg-align-container {
  display: flex;
  justify-content: center
}

.s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-417d3584-9c88-4bc0-b4d7-b113993bc070 {
      --shg-aspect-ratio: calc(956/668); 
    }

    .s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container {
      position: relative;
    }

    .s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-417d3584-9c88-4bc0-b4d7-b113993bc070 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 956px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-417d3584-9c88-4bc0-b4d7-b113993bc070 {
  
  
  
  
}

#s-417d3584-9c88-4bc0-b4d7-b113993bc070 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-417d3584-9c88-4bc0-b4d7-b113993bc070 .shg-image-content-wrapper {
      aspect-ratio: 956/668;
      min-width: 100%;
      height: auto;
    }

    #s-417d3584-9c88-4bc0-b4d7-b113993bc070 .shogun-image-link {
      aspect-ratio: 956/668;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-417d3584-9c88-4bc0-b4d7-b113993bc070 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-417d3584-9c88-4bc0-b4d7-b113993bc070 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 956px;
  }



  img.s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image {
    
    
    
    max-height: 956px;
  }


.s-417d3584-9c88-4bc0-b4d7-b113993bc070 .shogun-image-content {
  
    align-items: center;
  
}

.s-417d3584-9c88-4bc0-b4d7-b113993bc070.shg-align-container {
  display: flex;
  justify-content: center
}

.s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-417d3584-9c88-4bc0-b4d7-b113993bc070 {
      --shg-aspect-ratio: calc(956/668); 
    }

    .s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container {
      position: relative;
    }

    .s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-417d3584-9c88-4bc0-b4d7-b113993bc070 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 956px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-417d3584-9c88-4bc0-b4d7-b113993bc070 {
  margin-left: 24%;
  margin-right: 24%;
  
  
}

#s-417d3584-9c88-4bc0-b4d7-b113993bc070 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-417d3584-9c88-4bc0-b4d7-b113993bc070 .shg-image-content-wrapper {
      aspect-ratio: 956/668;
      min-width: 100%;
      height: auto;
    }

    #s-417d3584-9c88-4bc0-b4d7-b113993bc070 .shogun-image-link {
      aspect-ratio: 956/668;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-417d3584-9c88-4bc0-b4d7-b113993bc070 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-417d3584-9c88-4bc0-b4d7-b113993bc070 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 956px;
  }



  img.s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image {
    
    
    
    max-height: 956px;
  }


.s-417d3584-9c88-4bc0-b4d7-b113993bc070 .shogun-image-content {
  
    align-items: center;
  
}

.s-417d3584-9c88-4bc0-b4d7-b113993bc070.shg-align-container {
  display: flex;
  justify-content: center
}

.s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-417d3584-9c88-4bc0-b4d7-b113993bc070 {
      --shg-aspect-ratio: calc(956/668); 
    }

    .s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container {
      position: relative;
    }

    .s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-417d3584-9c88-4bc0-b4d7-b113993bc070 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 956px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-417d3584-9c88-4bc0-b4d7-b113993bc070 {
  
  
  margin-top: 30px;
  
}

#s-417d3584-9c88-4bc0-b4d7-b113993bc070 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-417d3584-9c88-4bc0-b4d7-b113993bc070 .shg-image-content-wrapper {
      aspect-ratio: 956/668;
      min-width: 100%;
      height: auto;
    }

    #s-417d3584-9c88-4bc0-b4d7-b113993bc070 .shogun-image-link {
      aspect-ratio: 956/668;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-417d3584-9c88-4bc0-b4d7-b113993bc070 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-417d3584-9c88-4bc0-b4d7-b113993bc070 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 956px;
  }



  img.s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image {
    
    
    
    max-height: 956px;
  }


.s-417d3584-9c88-4bc0-b4d7-b113993bc070 .shogun-image-content {
  
    align-items: center;
  
}

.s-417d3584-9c88-4bc0-b4d7-b113993bc070.shg-align-container {
  display: flex;
  justify-content: center
}

.s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-417d3584-9c88-4bc0-b4d7-b113993bc070 {
      --shg-aspect-ratio: calc(956/668); 
    }

    .s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container {
      position: relative;
    }

    .s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-417d3584-9c88-4bc0-b4d7-b113993bc070.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-417d3584-9c88-4bc0-b4d7-b113993bc070 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 956px;
    }
  }

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

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

#s-a24016fd-b239-4748-8d5c-922c4da92747 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 10px;
text-align: center;
}

#s-a24016fd-b239-4748-8d5c-922c4da92747 .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  600 ;
  font-family: "Zilla Slab";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-b9af7ad5-5d99-47b3-b492-5328c32719cd {
  margin-top: 3px;
margin-left: 13%;
margin-bottom: 3px;
margin-right: 13%;
}
@media (max-width: 767px){#s-b9af7ad5-5d99-47b3-b492-5328c32719cd {
  margin-left: 4%;
margin-right: 4%;
}
}
@media (min-width: 0px) {
[id="s-b9af7ad5-5d99-47b3-b492-5328c32719cd"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 768px) {
[id="s-b9af7ad5-5d99-47b3-b492-5328c32719cd"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-b9af7ad5-5d99-47b3-b492-5328c32719cd"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-b9af7ad5-5d99-47b3-b492-5328c32719cd"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f {
  margin-left: auto;
margin-right: auto;
max-width: 1946px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1946px;
  }



  img.s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image {
    
    
    
    max-height: 1946px;
  }


.s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f .shogun-image-content {
  
    align-items: center;
  
}

.s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container {
      position: relative;
    }

    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1946px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f {
  
  
  
  
}

#s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1946px;
  }



  img.s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image {
    
    
    
    max-height: 1946px;
  }


.s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f .shogun-image-content {
  
    align-items: center;
  
}

.s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container {
      position: relative;
    }

    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1946px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f {
  
  
  
  
}

#s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1946px;
  }



  img.s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image {
    
    
    
    max-height: 1946px;
  }


.s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f .shogun-image-content {
  
    align-items: center;
  
}

.s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container {
      position: relative;
    }

    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1946px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f {
  
  
  
  
}

#s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1946px;
  }



  img.s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image {
    
    
    
    max-height: 1946px;
  }


.s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f .shogun-image-content {
  
    align-items: center;
  
}

.s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container {
      position: relative;
    }

    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1946px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f {
  
  
  
  
}

#s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1946px;
  }



  img.s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image {
    
    
    
    max-height: 1946px;
  }


.s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f .shogun-image-content {
  
    align-items: center;
  
}

.s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container {
      position: relative;
    }

    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70b94376-dc5f-44f5-beb0-b8a6e7b4769f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1946px;
    }
  }

}
#s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 {
  margin-left: auto;
margin-right: auto;
max-width: 1946px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1946px;
  }



  img.s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image {
    
    
    
    max-height: 1946px;
  }


.s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 .shogun-image-content {
  
    align-items: center;
  
}

.s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container {
      position: relative;
    }

    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1946px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 {
  
  
  
  
}

#s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1946px;
  }



  img.s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image {
    
    
    
    max-height: 1946px;
  }


.s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 .shogun-image-content {
  
    align-items: center;
  
}

.s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container {
      position: relative;
    }

    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1946px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 {
  
  
  
  
}

#s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1946px;
  }



  img.s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image {
    
    
    
    max-height: 1946px;
  }


.s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 .shogun-image-content {
  
    align-items: center;
  
}

.s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container {
      position: relative;
    }

    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1946px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 {
  
  
  
  
}

#s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1946px;
  }



  img.s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image {
    
    
    
    max-height: 1946px;
  }


.s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 .shogun-image-content {
  
    align-items: center;
  
}

.s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container {
      position: relative;
    }

    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1946px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 {
  
  
  
  
}

#s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1946px;
  }



  img.s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image {
    
    
    
    max-height: 1946px;
  }


.s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 .shogun-image-content {
  
    align-items: center;
  
}

.s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container {
      position: relative;
    }

    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b08dba3-cfdf-4e7e-a55a-2f552a8512e7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1946px;
    }
  }

}
#s-bcf27492-e771-4a61-89ce-0e76925a2a3d {
  margin-left: auto;
margin-right: auto;
max-width: 1946px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-bcf27492-e771-4a61-89ce-0e76925a2a3d {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-bcf27492-e771-4a61-89ce-0e76925a2a3d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bcf27492-e771-4a61-89ce-0e76925a2a3d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bcf27492-e771-4a61-89ce-0e76925a2a3d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bcf27492-e771-4a61-89ce-0e76925a2a3d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bcf27492-e771-4a61-89ce-0e76925a2a3d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1946px;
  }



  img.s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image {
    
    
    
    max-height: 1946px;
  }


.s-bcf27492-e771-4a61-89ce-0e76925a2a3d .shogun-image-content {
  
    align-items: center;
  
}

.s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container {
      position: relative;
    }

    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1946px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-bcf27492-e771-4a61-89ce-0e76925a2a3d {
  
  
  
  
}

#s-bcf27492-e771-4a61-89ce-0e76925a2a3d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bcf27492-e771-4a61-89ce-0e76925a2a3d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bcf27492-e771-4a61-89ce-0e76925a2a3d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bcf27492-e771-4a61-89ce-0e76925a2a3d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bcf27492-e771-4a61-89ce-0e76925a2a3d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1946px;
  }



  img.s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image {
    
    
    
    max-height: 1946px;
  }


.s-bcf27492-e771-4a61-89ce-0e76925a2a3d .shogun-image-content {
  
    align-items: center;
  
}

.s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container {
      position: relative;
    }

    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1946px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-bcf27492-e771-4a61-89ce-0e76925a2a3d {
  
  
  
  
}

#s-bcf27492-e771-4a61-89ce-0e76925a2a3d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bcf27492-e771-4a61-89ce-0e76925a2a3d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bcf27492-e771-4a61-89ce-0e76925a2a3d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bcf27492-e771-4a61-89ce-0e76925a2a3d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bcf27492-e771-4a61-89ce-0e76925a2a3d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1946px;
  }



  img.s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image {
    
    
    
    max-height: 1946px;
  }


.s-bcf27492-e771-4a61-89ce-0e76925a2a3d .shogun-image-content {
  
    align-items: center;
  
}

.s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container {
      position: relative;
    }

    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1946px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-bcf27492-e771-4a61-89ce-0e76925a2a3d {
  
  
  
  
}

#s-bcf27492-e771-4a61-89ce-0e76925a2a3d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bcf27492-e771-4a61-89ce-0e76925a2a3d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bcf27492-e771-4a61-89ce-0e76925a2a3d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bcf27492-e771-4a61-89ce-0e76925a2a3d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bcf27492-e771-4a61-89ce-0e76925a2a3d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1946px;
  }



  img.s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image {
    
    
    
    max-height: 1946px;
  }


.s-bcf27492-e771-4a61-89ce-0e76925a2a3d .shogun-image-content {
  
    align-items: center;
  
}

.s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container {
      position: relative;
    }

    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1946px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-bcf27492-e771-4a61-89ce-0e76925a2a3d {
  
  
  
  
}

#s-bcf27492-e771-4a61-89ce-0e76925a2a3d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bcf27492-e771-4a61-89ce-0e76925a2a3d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bcf27492-e771-4a61-89ce-0e76925a2a3d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bcf27492-e771-4a61-89ce-0e76925a2a3d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bcf27492-e771-4a61-89ce-0e76925a2a3d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1946px;
  }



  img.s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image {
    
    
    
    max-height: 1946px;
  }


.s-bcf27492-e771-4a61-89ce-0e76925a2a3d .shogun-image-content {
  
    align-items: center;
  
}

.s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container {
      position: relative;
    }

    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bcf27492-e771-4a61-89ce-0e76925a2a3d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1946px;
    }
  }

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

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

.shg-btn-text {
  
  
}

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

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

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

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

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

#s-974bcfe9-27d4-4d47-9ccd-d7da0221921f {
  margin-top: 12px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(248, 183, 57, 1);
text-align: center;
text-decoration: none;
letter-spacing: 0px;
line-height: 1.5em;
background-image: none;
hover-type: color;
color: rgba(42, 96, 69, 1);
}
#s-974bcfe9-27d4-4d47-9ccd-d7da0221921f:hover {background-color: rgba(248, 183, 57, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(42, 96, 69, 1) !important;}#s-974bcfe9-27d4-4d47-9ccd-d7da0221921f:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-974bcfe9-27d4-4d47-9ccd-d7da0221921f {
  margin-bottom: 30px;
}
}

  #s-974bcfe9-27d4-4d47-9ccd-d7da0221921f-root {
    text-align: center;
  }


#s-974bcfe9-27d4-4d47-9ccd-d7da0221921f.shg-btn {
  color: rgba(42, 96, 69, 1);
  font-size: 18px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-974bcfe9-27d4-4d47-9ccd-d7da0221921f-root {
    text-align: center;
  }


#s-974bcfe9-27d4-4d47-9ccd-d7da0221921f.shg-btn {
  color: rgba(42, 96, 69, 1);
  font-size: 18px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-974bcfe9-27d4-4d47-9ccd-d7da0221921f-root {
    text-align: center;
  }


#s-974bcfe9-27d4-4d47-9ccd-d7da0221921f.shg-btn {
  color: rgba(42, 96, 69, 1);
  font-size: 18px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-974bcfe9-27d4-4d47-9ccd-d7da0221921f-root {
    text-align: center;
  }


#s-974bcfe9-27d4-4d47-9ccd-d7da0221921f.shg-btn {
  color: rgba(42, 96, 69, 1);
  font-size: 18px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-974bcfe9-27d4-4d47-9ccd-d7da0221921f-root {
    text-align: center;
  }


#s-974bcfe9-27d4-4d47-9ccd-d7da0221921f.shg-btn {
  color: rgba(42, 96, 69, 1);
  font-size: 18px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-4776ab6c-fadf-4aff-af6a-33f406be896c {
  margin-left: auto;
margin-right: auto;
max-width: 2237px;
aspect-ratio: 2237/2351;
text-align: center;
}



.shg-image-margin-container-s-4776ab6c-fadf-4aff-af6a-33f406be896c {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-4776ab6c-fadf-4aff-af6a-33f406be896c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4776ab6c-fadf-4aff-af6a-33f406be896c .shg-image-content-wrapper {
      aspect-ratio: 2237/2351;
      min-width: 100%;
      height: auto;
    }

    #s-4776ab6c-fadf-4aff-af6a-33f406be896c .shogun-image-link {
      aspect-ratio: 2237/2351;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4776ab6c-fadf-4aff-af6a-33f406be896c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4776ab6c-fadf-4aff-af6a-33f406be896c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2237px;
  }



  img.s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image {
    
    
    
    max-height: 2237px;
  }


.s-4776ab6c-fadf-4aff-af6a-33f406be896c .shogun-image-content {
  
    align-items: center;
  
}

.s-4776ab6c-fadf-4aff-af6a-33f406be896c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4776ab6c-fadf-4aff-af6a-33f406be896c {
      --shg-aspect-ratio: calc(2237/2351); 
    }

    .s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container {
      position: relative;
    }

    .s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4776ab6c-fadf-4aff-af6a-33f406be896c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2237px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-4776ab6c-fadf-4aff-af6a-33f406be896c {
  
  
  
  
}

#s-4776ab6c-fadf-4aff-af6a-33f406be896c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4776ab6c-fadf-4aff-af6a-33f406be896c .shg-image-content-wrapper {
      aspect-ratio: 2237/2351;
      min-width: 100%;
      height: auto;
    }

    #s-4776ab6c-fadf-4aff-af6a-33f406be896c .shogun-image-link {
      aspect-ratio: 2237/2351;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4776ab6c-fadf-4aff-af6a-33f406be896c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4776ab6c-fadf-4aff-af6a-33f406be896c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2237px;
  }



  img.s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image {
    
    
    
    max-height: 2237px;
  }


.s-4776ab6c-fadf-4aff-af6a-33f406be896c .shogun-image-content {
  
    align-items: center;
  
}

.s-4776ab6c-fadf-4aff-af6a-33f406be896c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4776ab6c-fadf-4aff-af6a-33f406be896c {
      --shg-aspect-ratio: calc(2237/2351); 
    }

    .s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container {
      position: relative;
    }

    .s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4776ab6c-fadf-4aff-af6a-33f406be896c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2237px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-4776ab6c-fadf-4aff-af6a-33f406be896c {
  
  
  
  
}

#s-4776ab6c-fadf-4aff-af6a-33f406be896c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4776ab6c-fadf-4aff-af6a-33f406be896c .shg-image-content-wrapper {
      aspect-ratio: 2237/2351;
      min-width: 100%;
      height: auto;
    }

    #s-4776ab6c-fadf-4aff-af6a-33f406be896c .shogun-image-link {
      aspect-ratio: 2237/2351;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4776ab6c-fadf-4aff-af6a-33f406be896c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4776ab6c-fadf-4aff-af6a-33f406be896c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2237px;
  }



  img.s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image {
    
    
    
    max-height: 2237px;
  }


.s-4776ab6c-fadf-4aff-af6a-33f406be896c .shogun-image-content {
  
    align-items: center;
  
}

.s-4776ab6c-fadf-4aff-af6a-33f406be896c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4776ab6c-fadf-4aff-af6a-33f406be896c {
      --shg-aspect-ratio: calc(2237/2351); 
    }

    .s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container {
      position: relative;
    }

    .s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4776ab6c-fadf-4aff-af6a-33f406be896c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2237px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-4776ab6c-fadf-4aff-af6a-33f406be896c {
  
  
  
  
}

#s-4776ab6c-fadf-4aff-af6a-33f406be896c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4776ab6c-fadf-4aff-af6a-33f406be896c .shg-image-content-wrapper {
      aspect-ratio: 2237/2351;
      min-width: 100%;
      height: auto;
    }

    #s-4776ab6c-fadf-4aff-af6a-33f406be896c .shogun-image-link {
      aspect-ratio: 2237/2351;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4776ab6c-fadf-4aff-af6a-33f406be896c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4776ab6c-fadf-4aff-af6a-33f406be896c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2237px;
  }



  img.s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image {
    
    
    
    max-height: 2237px;
  }


.s-4776ab6c-fadf-4aff-af6a-33f406be896c .shogun-image-content {
  
    align-items: center;
  
}

.s-4776ab6c-fadf-4aff-af6a-33f406be896c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4776ab6c-fadf-4aff-af6a-33f406be896c {
      --shg-aspect-ratio: calc(2237/2351); 
    }

    .s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container {
      position: relative;
    }

    .s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4776ab6c-fadf-4aff-af6a-33f406be896c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2237px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-4776ab6c-fadf-4aff-af6a-33f406be896c {
  
  
  
  
}

#s-4776ab6c-fadf-4aff-af6a-33f406be896c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4776ab6c-fadf-4aff-af6a-33f406be896c .shg-image-content-wrapper {
      aspect-ratio: 2237/2351;
      min-width: 100%;
      height: auto;
    }

    #s-4776ab6c-fadf-4aff-af6a-33f406be896c .shogun-image-link {
      aspect-ratio: 2237/2351;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4776ab6c-fadf-4aff-af6a-33f406be896c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4776ab6c-fadf-4aff-af6a-33f406be896c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2237px;
  }



  img.s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image {
    
    
    
    max-height: 2237px;
  }


.s-4776ab6c-fadf-4aff-af6a-33f406be896c .shogun-image-content {
  
    align-items: center;
  
}

.s-4776ab6c-fadf-4aff-af6a-33f406be896c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4776ab6c-fadf-4aff-af6a-33f406be896c {
      --shg-aspect-ratio: calc(2237/2351); 
    }

    .s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container {
      position: relative;
    }

    .s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4776ab6c-fadf-4aff-af6a-33f406be896c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4776ab6c-fadf-4aff-af6a-33f406be896c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2237px;
    }
  }

}
#s-f19c85e6-afe6-4f18-947f-20cc1e878e2e {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
min-height: 50px;
}








#s-f19c85e6-afe6-4f18-947f-20cc1e878e2e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f19c85e6-afe6-4f18-947f-20cc1e878e2e {
  cursor: pointer;
}#s-f19c85e6-afe6-4f18-947f-20cc1e878e2e.shg-box.shg-c {
  justify-content: center;
}

#s-e38d3eb8-48cf-4587-840b-6df3bd377ef1 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-e38d3eb8-48cf-4587-840b-6df3bd377ef1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e38d3eb8-48cf-4587-840b-6df3bd377ef1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e38d3eb8-48cf-4587-840b-6df3bd377ef1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e38d3eb8-48cf-4587-840b-6df3bd377ef1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-5dd7c982-98fd-4e2c-adf5-bccacc2d21be {
  background-repeat: no-repeat;
background-size: cover;
min-height: 20px;
background-position: left top;
}

#s-5dd7c982-98fd-4e2c-adf5-bccacc2d21be {
  background-image: url(https://i.shgcdn.com/7b614ac2-cc84-4bae-9fd9-747aa11a1072/);
}








#s-5dd7c982-98fd-4e2c-adf5-bccacc2d21be > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5dd7c982-98fd-4e2c-adf5-bccacc2d21be.shg-box.shg-c {
  justify-content: center;
}

#s-ea1a6c0b-558e-42bc-b74c-a3b640e7feea {
  margin-top: 9px;
margin-left: auto;
margin-bottom: 1px;
margin-right: auto;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-ea1a6c0b-558e-42bc-b74c-a3b640e7feea {
  margin-top: 10px;
}
}@media (max-width: 767px){#s-ea1a6c0b-558e-42bc-b74c-a3b640e7feea {
  margin-top: 30px;
}
}
#s-ea1a6c0b-558e-42bc-b74c-a3b640e7feea .shogun-heading-component h1 {
  color: rgba(46, 46, 46, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 17px;
  line-height: 1.2em;
  
  
}



#s-68b60f4a-4f4f-4746-84cf-23234478500d {
  margin-left: 8%;
margin-bottom: 15px;
margin-right: 8%;
padding-top: 8px;
text-align: center;
}
@media (min-width: 1200px){#s-68b60f4a-4f4f-4746-84cf-23234478500d {
  margin-left: 12%;
margin-right: 12%;
}
}@media (max-width: 767px){#s-68b60f4a-4f4f-4746-84cf-23234478500d {
  margin-left: 0%;
margin-right: 0%;
}
}
#s-68b60f4a-4f4f-4746-84cf-23234478500d .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.4em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-68b60f4a-4f4f-4746-84cf-23234478500d .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.4em;
  
  
}


}@media (max-width: 767px){#s-68b60f4a-4f4f-4746-84cf-23234478500d .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 26px;
  line-height: 1.4em;
  
  
}


}
#s-db90dc46-7f5f-44dc-a7c1-33ab957e1388 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(214, 19, 19, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-db90dc46-7f5f-44dc-a7c1-33ab957e1388:hover {background-color: rgba(181, 22, 22, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-db90dc46-7f5f-44dc-a7c1-33ab957e1388:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-db90dc46-7f5f-44dc-a7c1-33ab957e1388 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZjE2ZDBhNWItYTc5Mi00M2Q3LWE3ZmUtMGEwMWZiYmEwNTE4IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZWRkN2FjO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZjhjMTM5O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNmMTZkMGE1Yi1hNzkyLTQzZDctYTdmZS0wYTAxZmJiYTA1MTgpIi8+PC9zdmc+);
background-repeat: no-repeat;
hover-type: gradient;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#edd7ac"}, {"id"=>2, "pos"=>1, "color"=>"#f8c139"}];
color: rgba(42, 96, 69, 1);
letter-spacing: 0px;
}
#s-db90dc46-7f5f-44dc-a7c1-33ab957e1388:hover {background-color: rgba(42, 96, 69, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}}@media (min-width: 992px) and (max-width: 1199px){#s-db90dc46-7f5f-44dc-a7c1-33ab957e1388 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMmQyMDUyY2MtMzQ4Yy00YTZkLTg3N2YtZmViNWM1NDgzNWE2IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZWRkN2FjO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZjhjMTM5O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCMyZDIwNTJjYy0zNDhjLTRhNmQtODc3Zi1mZWI1YzU0ODM1YTYpIi8+PC9zdmc+);
background-repeat: no-repeat;
letter-spacing: 0px;
hover-type: gradient;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#edd7ac"}, {"id"=>2, "pos"=>1, "color"=>"#f8c139"}];
color: rgba(42, 96, 69, 1);
}
#s-db90dc46-7f5f-44dc-a7c1-33ab957e1388:hover {background-color: rgba(42, 96, 69, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}}@media (min-width: 768px) and (max-width: 991px){#s-db90dc46-7f5f-44dc-a7c1-33ab957e1388 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZTRlNjA0ZmQtMzU0OS00Yzg1LWI1NjktYjI1M2IwMDE0NmI5IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZWRkN2FjO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZjhjMTM5O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNlNGU2MDRmZC0zNTQ5LTRjODUtYjU2OS1iMjUzYjAwMTQ2YjkpIi8+PC9zdmc+);
background-repeat: no-repeat;
margin-top: 0px;
margin-bottom: 10px;
hover-type: gradient;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#edd7ac"}, {"id"=>2, "pos"=>1, "color"=>"#f8c139"}];
color: rgba(42, 96, 69, 1);
}
#s-db90dc46-7f5f-44dc-a7c1-33ab957e1388:hover {background-color: rgba(42, 96, 69, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}}@media (max-width: 767px){#s-db90dc46-7f5f-44dc-a7c1-33ab957e1388 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMTYxZTc0ZGEtNDc4Zi00MDQ2LTk0OGMtNTQxY2RjZWY5ZTUwIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZWRkN2FjO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZjhjMTM5O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCMxNjFlNzRkYS00NzhmLTQwNDYtOTQ4Yy01NDFjZGNlZjllNTApIi8+PC9zdmc+);
background-repeat: no-repeat;
margin-bottom: 30px;
letter-spacing: 0px;
hover-type: gradient;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#edd7ac"}, {"id"=>2, "pos"=>1, "color"=>"#f8c139"}];
color: rgba(42, 96, 69, 1);
}
#s-db90dc46-7f5f-44dc-a7c1-33ab957e1388:hover {background-color: rgba(42, 96, 69, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}}

  #s-db90dc46-7f5f-44dc-a7c1-33ab957e1388-root {
    text-align: center;
  }


#s-db90dc46-7f5f-44dc-a7c1-33ab957e1388.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-db90dc46-7f5f-44dc-a7c1-33ab957e1388-root {
    text-align: center;
  }


#s-db90dc46-7f5f-44dc-a7c1-33ab957e1388.shg-btn {
  color: rgba(42, 96, 69, 1);
  font-size: 18px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-db90dc46-7f5f-44dc-a7c1-33ab957e1388-root {
    text-align: center;
  }


#s-db90dc46-7f5f-44dc-a7c1-33ab957e1388.shg-btn {
  color: rgba(42, 96, 69, 1);
  font-size: 17px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-db90dc46-7f5f-44dc-a7c1-33ab957e1388-root {
    text-align: center;
  }


#s-db90dc46-7f5f-44dc-a7c1-33ab957e1388.shg-btn {
  color: rgba(42, 96, 69, 1);
  font-size: 15px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-db90dc46-7f5f-44dc-a7c1-33ab957e1388-root {
    text-align: center;
  }


#s-db90dc46-7f5f-44dc-a7c1-33ab957e1388.shg-btn {
  color: rgba(42, 96, 69, 1);
  font-size: 15px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-105c124e-f8e5-44d5-bb18-28b327a9153f {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-105c124e-f8e5-44d5-bb18-28b327a9153f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-105c124e-f8e5-44d5-bb18-28b327a9153f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-105c124e-f8e5-44d5-bb18-28b327a9153f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-105c124e-f8e5-44d5-bb18-28b327a9153f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 {
  
  
  margin-top: 0px;
  margin-bottom: 0px;
}

#s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 .shogun-image-content {
  
    align-items: center;
  
}

.s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container {
      position: relative;
    }

    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 {
  
  
  
  
}

#s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 .shogun-image-content {
  
    align-items: center;
  
}

.s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container {
      position: relative;
    }

    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 {
  
  
  
  
}

#s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 .shogun-image-content {
  
    align-items: center;
  
}

.s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container {
      position: relative;
    }

    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 {
  
  
  
  
}

#s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 .shogun-image-content {
  
    align-items: center;
  
}

.s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container {
      position: relative;
    }

    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 {
  
  
  
  
}

#s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 .shogun-image-content {
  
    align-items: center;
  
}

.s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container {
      position: relative;
    }

    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3d46b7f2-bf7b-45ed-9ebd-45b50778fb41 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}
#s-d9cf1481-909c-49ef-989d-46e540872dc5 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(42, 96, 69, 1);
}








#s-d9cf1481-909c-49ef-989d-46e540872dc5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d9cf1481-909c-49ef-989d-46e540872dc5.shg-box.shg-c {
  justify-content: center;
}

#s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 {
  margin-left: auto;
margin-right: auto;
max-width: 45px;
aspect-ratio: 97/93;
text-align: center;
}



.shg-image-margin-container-s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 .shg-image-content-wrapper {
      aspect-ratio: 97/93;
      min-width: 100%;
      height: auto;
    }

    #s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 .shogun-image-link {
      aspect-ratio: 97/93;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 45px;
  }



  img.s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image {
    
    
    
    max-height: 45px;
  }


.s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 .shogun-image-content {
  
    align-items: center;
  
}

.s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 {
      --shg-aspect-ratio: calc(97/93); 
    }

    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container {
      position: relative;
    }

    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 45px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 {
  
  
  
  
}

#s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 .shg-image-content-wrapper {
      aspect-ratio: 97/93;
      min-width: 100%;
      height: auto;
    }

    #s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 .shogun-image-link {
      aspect-ratio: 97/93;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 45px;
  }



  img.s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image {
    
    
    
    max-height: 45px;
  }


.s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 .shogun-image-content {
  
    align-items: center;
  
}

.s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 {
      --shg-aspect-ratio: calc(97/93); 
    }

    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container {
      position: relative;
    }

    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 45px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 {
  
  
  
  
}

#s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 .shg-image-content-wrapper {
      aspect-ratio: 97/93;
      min-width: 100%;
      height: auto;
    }

    #s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 .shogun-image-link {
      aspect-ratio: 97/93;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 45px;
  }



  img.s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image {
    
    
    
    max-height: 45px;
  }


.s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 .shogun-image-content {
  
    align-items: center;
  
}

.s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 {
      --shg-aspect-ratio: calc(97/93); 
    }

    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container {
      position: relative;
    }

    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 45px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 {
  
  
  
  
}

#s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 .shg-image-content-wrapper {
      aspect-ratio: 97/93;
      min-width: 100%;
      height: auto;
    }

    #s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 .shogun-image-link {
      aspect-ratio: 97/93;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 45px;
  }



  img.s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image {
    
    
    
    max-height: 45px;
  }


.s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 .shogun-image-content {
  
    align-items: center;
  
}

.s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 {
      --shg-aspect-ratio: calc(97/93); 
    }

    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container {
      position: relative;
    }

    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 45px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 {
  
  
  
  
}

#s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 .shg-image-content-wrapper {
      aspect-ratio: 97/93;
      min-width: 100%;
      height: auto;
    }

    #s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 .shogun-image-link {
      aspect-ratio: 97/93;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 45px;
  }



  img.s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image {
    
    
    
    max-height: 45px;
  }


.s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 .shogun-image-content {
  
    align-items: center;
  
}

.s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 {
      --shg-aspect-ratio: calc(97/93); 
    }

    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container {
      position: relative;
    }

    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-afd6ebb6-912a-4777-9b60-f048b0dc9d16 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 45px;
    }
  }

}
#s-9de3f557-7324-4c05-be7e-157b3cc69296 {
  margin-left: auto;
margin-right: auto;
padding-top: 12px;
padding-left: 14%;
padding-bottom: 18px;
padding-right: 14%;
text-align: center;
}
@media (min-width: 1200px){#s-9de3f557-7324-4c05-be7e-157b3cc69296 {
  margin-left: 1%;
margin-right: 1%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-9de3f557-7324-4c05-be7e-157b3cc69296 {
  padding-left: 9%;
padding-right: 9%;
}
}@media (max-width: 767px){#s-9de3f557-7324-4c05-be7e-157b3cc69296 {
  padding-top: 6px;
padding-left: 9%;
padding-right: 9%;
}
}
#s-9de3f557-7324-4c05-be7e-157b3cc69296 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.2em;
  
  
}


@media (min-width: 1200px){#s-9de3f557-7324-4c05-be7e-157b3cc69296 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 26px;
  line-height: 1.2em;
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-9de3f557-7324-4c05-be7e-157b3cc69296 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.2em;
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-9de3f557-7324-4c05-be7e-157b3cc69296 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  
}


}@media (max-width: 767px){#s-9de3f557-7324-4c05-be7e-157b3cc69296 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  
}


}
#s-61dac9e2-1ac6-4c0d-8e52-4aeb082ad2dc {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
min-height: 50px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-61dac9e2-1ac6-4c0d-8e52-4aeb082ad2dc {
  padding-top: 10px;
}
}







#s-61dac9e2-1ac6-4c0d-8e52-4aeb082ad2dc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-61dac9e2-1ac6-4c0d-8e52-4aeb082ad2dc {
  cursor: pointer;
}#s-61dac9e2-1ac6-4c0d-8e52-4aeb082ad2dc.shg-box.shg-c {
  justify-content: center;
}

#s-1ba1e0f9-bc07-4c20-ba60-b388a515cf93 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-1ba1e0f9-bc07-4c20-ba60-b388a515cf93 {
  margin-top: 20px;
margin-bottom: 20px;
}
}







#s-1ba1e0f9-bc07-4c20-ba60-b388a515cf93 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1ba1e0f9-bc07-4c20-ba60-b388a515cf93.shg-box.shg-c {
  justify-content: center;
}

#s-1e526abd-36b5-45c6-bb3d-c111204da6cc {
  margin-left: auto;
margin-right: auto;
}








#s-1e526abd-36b5-45c6-bb3d-c111204da6cc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1e526abd-36b5-45c6-bb3d-c111204da6cc.shg-box.shg-c {
  justify-content: flex-start;
}

#s-48e7248d-3c33-44ad-9e4e-358a68acd93f {
  margin-left: auto;
margin-right: auto;
max-width: 3000px;
aspect-ratio: 3202/991;
text-align: center;
}
@media (max-width: 767px){#s-48e7248d-3c33-44ad-9e4e-358a68acd93f {
  display: none;
}
#s-48e7248d-3c33-44ad-9e4e-358a68acd93f, #wrap-s-48e7248d-3c33-44ad-9e4e-358a68acd93f { display: none !important; }}


.shg-image-margin-container-s-48e7248d-3c33-44ad-9e4e-358a68acd93f {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-48e7248d-3c33-44ad-9e4e-358a68acd93f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-48e7248d-3c33-44ad-9e4e-358a68acd93f .shg-image-content-wrapper {
      aspect-ratio: 3202/991;
      min-width: 100%;
      height: auto;
    }

    #s-48e7248d-3c33-44ad-9e4e-358a68acd93f .shogun-image-link {
      aspect-ratio: 3202/991;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-48e7248d-3c33-44ad-9e4e-358a68acd93f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-48e7248d-3c33-44ad-9e4e-358a68acd93f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3000px;
  }



  img.s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image {
    
    
    
    max-height: 3000px;
  }


.s-48e7248d-3c33-44ad-9e4e-358a68acd93f .shogun-image-content {
  
    align-items: center;
  
}

.s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f {
      --shg-aspect-ratio: calc(3202/991); 
    }

    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container {
      position: relative;
    }

    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3000px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-48e7248d-3c33-44ad-9e4e-358a68acd93f {
  
  
  
  
}

#s-48e7248d-3c33-44ad-9e4e-358a68acd93f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-48e7248d-3c33-44ad-9e4e-358a68acd93f .shg-image-content-wrapper {
      aspect-ratio: 3202/991;
      min-width: 100%;
      height: auto;
    }

    #s-48e7248d-3c33-44ad-9e4e-358a68acd93f .shogun-image-link {
      aspect-ratio: 3202/991;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-48e7248d-3c33-44ad-9e4e-358a68acd93f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-48e7248d-3c33-44ad-9e4e-358a68acd93f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3000px;
  }



  img.s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image {
    
    
    
    max-height: 3000px;
  }


.s-48e7248d-3c33-44ad-9e4e-358a68acd93f .shogun-image-content {
  
    align-items: center;
  
}

.s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f {
      --shg-aspect-ratio: calc(3202/991); 
    }

    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container {
      position: relative;
    }

    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-48e7248d-3c33-44ad-9e4e-358a68acd93f {
  
  
  
  
}

#s-48e7248d-3c33-44ad-9e4e-358a68acd93f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-48e7248d-3c33-44ad-9e4e-358a68acd93f .shg-image-content-wrapper {
      aspect-ratio: 3202/991;
      min-width: 100%;
      height: auto;
    }

    #s-48e7248d-3c33-44ad-9e4e-358a68acd93f .shogun-image-link {
      aspect-ratio: 3202/991;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-48e7248d-3c33-44ad-9e4e-358a68acd93f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-48e7248d-3c33-44ad-9e4e-358a68acd93f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3000px;
  }



  img.s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image {
    
    
    
    max-height: 3000px;
  }


.s-48e7248d-3c33-44ad-9e4e-358a68acd93f .shogun-image-content {
  
    align-items: center;
  
}

.s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f {
      --shg-aspect-ratio: calc(3202/991); 
    }

    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container {
      position: relative;
    }

    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-48e7248d-3c33-44ad-9e4e-358a68acd93f {
  
  
  
  
}

#s-48e7248d-3c33-44ad-9e4e-358a68acd93f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-48e7248d-3c33-44ad-9e4e-358a68acd93f .shg-image-content-wrapper {
      aspect-ratio: 3202/991;
      min-width: 100%;
      height: auto;
    }

    #s-48e7248d-3c33-44ad-9e4e-358a68acd93f .shogun-image-link {
      aspect-ratio: 3202/991;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-48e7248d-3c33-44ad-9e4e-358a68acd93f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-48e7248d-3c33-44ad-9e4e-358a68acd93f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3000px;
  }



  img.s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image {
    
    
    
    max-height: 3000px;
  }


.s-48e7248d-3c33-44ad-9e4e-358a68acd93f .shogun-image-content {
  
    align-items: center;
  
}

.s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f {
      --shg-aspect-ratio: calc(3202/991); 
    }

    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container {
      position: relative;
    }

    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3000px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-48e7248d-3c33-44ad-9e4e-358a68acd93f {
  
  
  
  
}

#s-48e7248d-3c33-44ad-9e4e-358a68acd93f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-48e7248d-3c33-44ad-9e4e-358a68acd93f .shg-image-content-wrapper {
      aspect-ratio: 3202/991;
      min-width: 100%;
      height: auto;
    }

    #s-48e7248d-3c33-44ad-9e4e-358a68acd93f .shogun-image-link {
      aspect-ratio: 3202/991;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-48e7248d-3c33-44ad-9e4e-358a68acd93f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-48e7248d-3c33-44ad-9e4e-358a68acd93f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3000px;
  }



  img.s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image {
    
    
    
    max-height: 3000px;
  }


.s-48e7248d-3c33-44ad-9e4e-358a68acd93f .shogun-image-content {
  
    align-items: center;
  
}

.s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f {
      --shg-aspect-ratio: calc(3202/991); 
    }

    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container {
      position: relative;
    }

    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-48e7248d-3c33-44ad-9e4e-358a68acd93f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3000px;
    }
  }

}
#s-266ef015-8bc3-4077-9510-5311e756e052 {
  margin-top: 18px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 3px;
text-align: center;
}

#s-266ef015-8bc3-4077-9510-5311e756e052 .shogun-heading-component h1 {
  
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-266ef015-8bc3-4077-9510-5311e756e052 .shogun-heading-component h1 {
  
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-266ef015-8bc3-4077-9510-5311e756e052 .shogun-heading-component h1 {
  
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-8971d54e-72f4-45cb-bf0a-fe5710d02127 {
  margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-8971d54e-72f4-45cb-bf0a-fe5710d02127 {
  padding-top: 5px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8971d54e-72f4-45cb-bf0a-fe5710d02127 {
  padding-top: 3px;
}
}
#s-8971d54e-72f4-45cb-bf0a-fe5710d02127 .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  600 ;
  font-family: "Lora";
  font-style:  normal ;
  font-size: 51px;
  line-height: 1em;
  
  
}


@media (min-width: 1200px){#s-8971d54e-72f4-45cb-bf0a-fe5710d02127 .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  600 ;
  font-family: "Lora";
  font-style:  normal ;
  font-size: 51px;
  line-height: 1em;
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-8971d54e-72f4-45cb-bf0a-fe5710d02127 .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  600 ;
  font-family: "Lora";
  font-style:  normal ;
  font-size: 51px;
  line-height: 0.75em;
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-8971d54e-72f4-45cb-bf0a-fe5710d02127 .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  600 ;
  font-family: "Lora";
  font-style:  normal ;
  font-size: 36px;
  line-height: 0.75em;
  
  
}


}
#s-d71e2801-81e4-4479-98d9-5b54be41e41f {
  margin-left: auto;
margin-right: auto;
padding-bottom: 10px;
text-align: center;
}

#s-d71e2801-81e4-4479-98d9-5b54be41e41f .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  900 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 60px;
  line-height: 1em;
  
  
}


@media (min-width: 1200px){#s-d71e2801-81e4-4479-98d9-5b54be41e41f .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 60px;
  line-height: 1em;
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-d71e2801-81e4-4479-98d9-5b54be41e41f .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 60px;
  line-height: 1em;
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-d71e2801-81e4-4479-98d9-5b54be41e41f .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1em;
  
  
}


}
#s-8f72b7e1-216c-4b11-b249-b239cb237881 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 10px;
text-align: center;
}

#s-8f72b7e1-216c-4b11-b249-b239cb237881 .shogun-heading-component h1 {
  
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-8f72b7e1-216c-4b11-b249-b239cb237881 .shogun-heading-component h1 {
  
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-8f72b7e1-216c-4b11-b249-b239cb237881 .shogun-heading-component h1 {
  
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-d04ff1fa-7208-48f2-901c-166690011d54 {
  margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(42, 96, 69, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-d04ff1fa-7208-48f2-901c-166690011d54:hover {background-color: rgba(204, 59, 104, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-d04ff1fa-7208-48f2-901c-166690011d54:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-d04ff1fa-7208-48f2-901c-166690011d54 {
  
}
#s-d04ff1fa-7208-48f2-901c-166690011d54:hover {background-color: rgba(42, 96, 69, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}}

  #s-d04ff1fa-7208-48f2-901c-166690011d54-root {
    text-align: center;
  }


#s-d04ff1fa-7208-48f2-901c-166690011d54.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d04ff1fa-7208-48f2-901c-166690011d54-root {
    text-align: center;
  }


#s-d04ff1fa-7208-48f2-901c-166690011d54.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d04ff1fa-7208-48f2-901c-166690011d54-root {
    text-align: center;
  }


#s-d04ff1fa-7208-48f2-901c-166690011d54.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d04ff1fa-7208-48f2-901c-166690011d54-root {
    text-align: center;
  }


#s-d04ff1fa-7208-48f2-901c-166690011d54.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d04ff1fa-7208-48f2-901c-166690011d54-root {
    text-align: center;
  }


#s-d04ff1fa-7208-48f2-901c-166690011d54.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-00d2fcdd-857b-4c13-ba40-5667262bbe8a {
  margin-left: auto;
margin-right: auto;
text-align: center;
}
@media (min-width: 1200px){#s-00d2fcdd-857b-4c13-ba40-5667262bbe8a {
  display: none;
}
#s-00d2fcdd-857b-4c13-ba40-5667262bbe8a, #wrap-s-00d2fcdd-857b-4c13-ba40-5667262bbe8a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-00d2fcdd-857b-4c13-ba40-5667262bbe8a {
  display: none;
}
#s-00d2fcdd-857b-4c13-ba40-5667262bbe8a, #wrap-s-00d2fcdd-857b-4c13-ba40-5667262bbe8a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-00d2fcdd-857b-4c13-ba40-5667262bbe8a {
  display: none;
}
#s-00d2fcdd-857b-4c13-ba40-5667262bbe8a, #wrap-s-00d2fcdd-857b-4c13-ba40-5667262bbe8a { display: none !important; }}


.shg-image-margin-container-s-00d2fcdd-857b-4c13-ba40-5667262bbe8a {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-00d2fcdd-857b-4c13-ba40-5667262bbe8a {
  margin: 0 !important;
}





  img.s-00d2fcdd-857b-4c13-ba40-5667262bbe8a.shogun-image {
    
    
    
    
  }


.s-00d2fcdd-857b-4c13-ba40-5667262bbe8a .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-00d2fcdd-857b-4c13-ba40-5667262bbe8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00d2fcdd-857b-4c13-ba40-5667262bbe8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00d2fcdd-857b-4c13-ba40-5667262bbe8a.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-00d2fcdd-857b-4c13-ba40-5667262bbe8a {
  
  
  
  
}

#s-00d2fcdd-857b-4c13-ba40-5667262bbe8a {
  margin: 0 !important;
}





  img.s-00d2fcdd-857b-4c13-ba40-5667262bbe8a.shogun-image {
    
    
    
    
  }


.s-00d2fcdd-857b-4c13-ba40-5667262bbe8a .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-00d2fcdd-857b-4c13-ba40-5667262bbe8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00d2fcdd-857b-4c13-ba40-5667262bbe8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00d2fcdd-857b-4c13-ba40-5667262bbe8a.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-00d2fcdd-857b-4c13-ba40-5667262bbe8a {
  
  
  
  
}

#s-00d2fcdd-857b-4c13-ba40-5667262bbe8a {
  margin: 0 !important;
}





  img.s-00d2fcdd-857b-4c13-ba40-5667262bbe8a.shogun-image {
    
    
    
    
  }


.s-00d2fcdd-857b-4c13-ba40-5667262bbe8a .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-00d2fcdd-857b-4c13-ba40-5667262bbe8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00d2fcdd-857b-4c13-ba40-5667262bbe8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00d2fcdd-857b-4c13-ba40-5667262bbe8a.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-00d2fcdd-857b-4c13-ba40-5667262bbe8a {
  
  
  
  
}

#s-00d2fcdd-857b-4c13-ba40-5667262bbe8a {
  margin: 0 !important;
}





  img.s-00d2fcdd-857b-4c13-ba40-5667262bbe8a.shogun-image {
    
    
    
    
  }


.s-00d2fcdd-857b-4c13-ba40-5667262bbe8a .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-00d2fcdd-857b-4c13-ba40-5667262bbe8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00d2fcdd-857b-4c13-ba40-5667262bbe8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00d2fcdd-857b-4c13-ba40-5667262bbe8a.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){

.shg-image-margin-container-s-00d2fcdd-857b-4c13-ba40-5667262bbe8a {
  
  
  
  
}

#s-00d2fcdd-857b-4c13-ba40-5667262bbe8a {
  margin: 0 !important;
}





  img.s-00d2fcdd-857b-4c13-ba40-5667262bbe8a.shogun-image {
    
    
    
    
  }


.s-00d2fcdd-857b-4c13-ba40-5667262bbe8a .shogun-image-content {
  
    align-items: center;
  
}

.s-00d2fcdd-857b-4c13-ba40-5667262bbe8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00d2fcdd-857b-4c13-ba40-5667262bbe8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00d2fcdd-857b-4c13-ba40-5667262bbe8a.shogun-image {
  box-sizing: border-box;
}




}
#s-04f080f4-5bf9-414e-9a4b-3837207c55cc {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-04f080f4-5bf9-414e-9a4b-3837207c55cc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-04f080f4-5bf9-414e-9a4b-3837207c55cc.shg-box.shg-c {
  justify-content: center;
}

#s-6bb2e1a7-571b-4bef-87d4-6f3e000d7882 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-6bb2e1a7-571b-4bef-87d4-6f3e000d7882 {
  margin-top: 40px;
padding-top: 10px;
padding-bottom: 10px;
}
}
#s-6bb2e1a7-571b-4bef-87d4-6f3e000d7882 .shogun-heading-component h1 {
  
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}


@media (max-width: 767px){#s-6bb2e1a7-571b-4bef-87d4-6f3e000d7882 .shogun-heading-component h1 {
  
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


}
#s-7d62ec28-015f-4846-a0d8-f9b759a899be {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-7d62ec28-015f-4846-a0d8-f9b759a899be {
  padding-top: 10px;
}
}
#s-7d62ec28-015f-4846-a0d8-f9b759a899be .shogun-heading-component h1 {
  color: rgba(247, 85, 135, 1);
  font-weight:  600 ;
  font-family: "Lora";
  font-style:  italic ;
  font-size: 50px;
  line-height: 1.25em;
  
  
}


@media (max-width: 767px){#s-7d62ec28-015f-4846-a0d8-f9b759a899be .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  normal ;
  font-family: "Lora";
  font-style:  normal ;
  font-size: 33px;
  line-height: 1em;
  
  
}


}
#s-5fe5a3f1-12b2-4f40-819a-9067dea0e6b1 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-5fe5a3f1-12b2-4f40-819a-9067dea0e6b1 {
  margin-top: 5px;
padding-top: 0px;
}
}
#s-5fe5a3f1-12b2-4f40-819a-9067dea0e6b1 .shogun-heading-component h1 {
  color: rgba(247, 85, 135, 1);
  font-weight:  600 ;
  font-family: "Lora";
  font-style:  italic ;
  font-size: 50px;
  line-height: 1.25em;
  
  
}


@media (max-width: 767px){#s-5fe5a3f1-12b2-4f40-819a-9067dea0e6b1 .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  800 ;
  font-family: "Poppins";
  font-style:  italic ;
  font-size: 38px;
  line-height: 1em;
  
  
}


}
#s-d5340cd6-329d-4c4d-a82a-c07187086155 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-d5340cd6-329d-4c4d-a82a-c07187086155 {
  padding-top: 10px;
padding-bottom: 10px;
}
}
#s-d5340cd6-329d-4c4d-a82a-c07187086155 .shogun-heading-component h1 {
  
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}


@media (max-width: 767px){#s-d5340cd6-329d-4c4d-a82a-c07187086155 .shogun-heading-component h1 {
  
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


}
#s-5bf0aa77-7792-472a-a9c3-719998f14252 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-5bf0aa77-7792-472a-a9c3-719998f14252:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-5bf0aa77-7792-472a-a9c3-719998f14252:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-5bf0aa77-7792-472a-a9c3-719998f14252 {
  margin-bottom: 34px;
background-image: none;
background-color: rgba(42, 96, 69, 1);
hover-type: color;
}
#s-5bf0aa77-7792-472a-a9c3-719998f14252:hover {background-color: rgba(42, 96, 69, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}}

  #s-5bf0aa77-7792-472a-a9c3-719998f14252-root {
    text-align: center;
  }


#s-5bf0aa77-7792-472a-a9c3-719998f14252.shg-btn {
  color: #ffffff;
  font-size: 23px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5bf0aa77-7792-472a-a9c3-719998f14252-root {
    text-align: center;
  }


#s-5bf0aa77-7792-472a-a9c3-719998f14252.shg-btn {
  color: #ffffff;
  font-size: 23px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5bf0aa77-7792-472a-a9c3-719998f14252-root {
    text-align: center;
  }


#s-5bf0aa77-7792-472a-a9c3-719998f14252.shg-btn {
  color: #ffffff;
  font-size: 23px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5bf0aa77-7792-472a-a9c3-719998f14252-root {
    text-align: center;
  }


#s-5bf0aa77-7792-472a-a9c3-719998f14252.shg-btn {
  color: #ffffff;
  font-size: 23px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5bf0aa77-7792-472a-a9c3-719998f14252-root {
    text-align: center;
  }


#s-5bf0aa77-7792-472a-a9c3-719998f14252.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-96f9e2be-9d3a-428b-99ce-bb3b6bb4e48f {
  margin-top: 20px;
margin-left: 2%;
margin-right: 2%;
}
@media (max-width: 767px){#s-96f9e2be-9d3a-428b-99ce-bb3b6bb4e48f {
  margin-bottom: 15px;
}
}
@media (min-width: 0px) {
[id="s-96f9e2be-9d3a-428b-99ce-bb3b6bb4e48f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-96f9e2be-9d3a-428b-99ce-bb3b6bb4e48f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 3.75px);
}

}

@media (min-width: 992px) {
[id="s-96f9e2be-9d3a-428b-99ce-bb3b6bb4e48f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 3.75px);
}

}

@media (min-width: 1200px) {
[id="s-96f9e2be-9d3a-428b-99ce-bb3b6bb4e48f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 3.75px);
}

}

#s-d24ea606-e05d-4775-900a-5f770ab1fc30 {
  margin-left: auto;
margin-bottom: 1em;
margin-right: auto;
min-height: 50px;
}








#s-d24ea606-e05d-4775-900a-5f770ab1fc30 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d24ea606-e05d-4775-900a-5f770ab1fc30 {
  cursor: pointer;
}#s-d24ea606-e05d-4775-900a-5f770ab1fc30.shg-box.shg-c {
  justify-content: center;
}

#s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 {
  margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
max-width: 1000px;
aspect-ratio: 1000/1338;
text-align: center;
}



.shg-image-margin-container-s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 {
  margin-left: auto;
  margin-right: auto;
  
  margin-bottom: 5px;
}

#s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 .shg-image-content-wrapper {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }

    #s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 .shogun-image-link {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 .shogun-image-content {
  
    align-items: center;
  
}

.s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 {
      --shg-aspect-ratio: calc(1000/1338); 
    }

    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container {
      position: relative;
    }

    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 {
  
  
  
  
}

#s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 .shg-image-content-wrapper {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }

    #s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 .shogun-image-link {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 .shogun-image-content {
  
    align-items: center;
  
}

.s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 {
      --shg-aspect-ratio: calc(1000/1338); 
    }

    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container {
      position: relative;
    }

    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 {
  
  
  
  
}

#s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 .shg-image-content-wrapper {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }

    #s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 .shogun-image-link {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 .shogun-image-content {
  
    align-items: center;
  
}

.s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 {
      --shg-aspect-ratio: calc(1000/1338); 
    }

    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container {
      position: relative;
    }

    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 {
  
  
  
  
}

#s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 .shg-image-content-wrapper {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }

    #s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 .shogun-image-link {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 .shogun-image-content {
  
    align-items: center;
  
}

.s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 {
      --shg-aspect-ratio: calc(1000/1338); 
    }

    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container {
      position: relative;
    }

    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 {
  
  
  
  
}

#s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 .shg-image-content-wrapper {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }

    #s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 .shogun-image-link {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 .shogun-image-content {
  
    align-items: center;
  
}

.s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 {
      --shg-aspect-ratio: calc(1000/1338); 
    }

    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container {
      position: relative;
    }

    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9411bdf4-c812-4c86-bfe2-4b049f5e8461 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}
#s-502e0e02-6074-453d-a817-b43ea4a341b3 {
  margin-left: auto;
margin-bottom: 1em;
margin-right: auto;
min-height: 50px;
}








#s-502e0e02-6074-453d-a817-b43ea4a341b3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-502e0e02-6074-453d-a817-b43ea4a341b3 {
  cursor: pointer;
}#s-502e0e02-6074-453d-a817-b43ea4a341b3.shg-box.shg-c {
  justify-content: center;
}

#s-b8d9f3b0-35c1-4461-b373-696b43ee669f {
  margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
max-width: 1000px;
aspect-ratio: 1000/1338;
text-align: center;
}



.shg-image-margin-container-s-b8d9f3b0-35c1-4461-b373-696b43ee669f {
  margin-left: auto;
  margin-right: auto;
  
  margin-bottom: 5px;
}

#s-b8d9f3b0-35c1-4461-b373-696b43ee669f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b8d9f3b0-35c1-4461-b373-696b43ee669f .shg-image-content-wrapper {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }

    #s-b8d9f3b0-35c1-4461-b373-696b43ee669f .shogun-image-link {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b8d9f3b0-35c1-4461-b373-696b43ee669f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b8d9f3b0-35c1-4461-b373-696b43ee669f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-b8d9f3b0-35c1-4461-b373-696b43ee669f .shogun-image-content {
  
    align-items: center;
  
}

.s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f {
      --shg-aspect-ratio: calc(1000/1338); 
    }

    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container {
      position: relative;
    }

    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-b8d9f3b0-35c1-4461-b373-696b43ee669f {
  
  
  
  
}

#s-b8d9f3b0-35c1-4461-b373-696b43ee669f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b8d9f3b0-35c1-4461-b373-696b43ee669f .shg-image-content-wrapper {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }

    #s-b8d9f3b0-35c1-4461-b373-696b43ee669f .shogun-image-link {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b8d9f3b0-35c1-4461-b373-696b43ee669f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b8d9f3b0-35c1-4461-b373-696b43ee669f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-b8d9f3b0-35c1-4461-b373-696b43ee669f .shogun-image-content {
  
    align-items: center;
  
}

.s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f {
      --shg-aspect-ratio: calc(1000/1338); 
    }

    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container {
      position: relative;
    }

    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-b8d9f3b0-35c1-4461-b373-696b43ee669f {
  
  
  
  
}

#s-b8d9f3b0-35c1-4461-b373-696b43ee669f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b8d9f3b0-35c1-4461-b373-696b43ee669f .shg-image-content-wrapper {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }

    #s-b8d9f3b0-35c1-4461-b373-696b43ee669f .shogun-image-link {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b8d9f3b0-35c1-4461-b373-696b43ee669f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b8d9f3b0-35c1-4461-b373-696b43ee669f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-b8d9f3b0-35c1-4461-b373-696b43ee669f .shogun-image-content {
  
    align-items: center;
  
}

.s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f {
      --shg-aspect-ratio: calc(1000/1338); 
    }

    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container {
      position: relative;
    }

    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-b8d9f3b0-35c1-4461-b373-696b43ee669f {
  
  
  
  
}

#s-b8d9f3b0-35c1-4461-b373-696b43ee669f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b8d9f3b0-35c1-4461-b373-696b43ee669f .shg-image-content-wrapper {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }

    #s-b8d9f3b0-35c1-4461-b373-696b43ee669f .shogun-image-link {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b8d9f3b0-35c1-4461-b373-696b43ee669f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b8d9f3b0-35c1-4461-b373-696b43ee669f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-b8d9f3b0-35c1-4461-b373-696b43ee669f .shogun-image-content {
  
    align-items: center;
  
}

.s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f {
      --shg-aspect-ratio: calc(1000/1338); 
    }

    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container {
      position: relative;
    }

    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-b8d9f3b0-35c1-4461-b373-696b43ee669f {
  
  
  
  
}

#s-b8d9f3b0-35c1-4461-b373-696b43ee669f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b8d9f3b0-35c1-4461-b373-696b43ee669f .shg-image-content-wrapper {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }

    #s-b8d9f3b0-35c1-4461-b373-696b43ee669f .shogun-image-link {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b8d9f3b0-35c1-4461-b373-696b43ee669f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b8d9f3b0-35c1-4461-b373-696b43ee669f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-b8d9f3b0-35c1-4461-b373-696b43ee669f .shogun-image-content {
  
    align-items: center;
  
}

.s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f {
      --shg-aspect-ratio: calc(1000/1338); 
    }

    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container {
      position: relative;
    }

    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b8d9f3b0-35c1-4461-b373-696b43ee669f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}
#s-bb7d897a-550a-43df-afcc-b79eaba921b9 {
  margin-left: auto;
margin-bottom: 1em;
margin-right: auto;
min-height: 50px;
}








#s-bb7d897a-550a-43df-afcc-b79eaba921b9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bb7d897a-550a-43df-afcc-b79eaba921b9 {
  cursor: pointer;
}#s-bb7d897a-550a-43df-afcc-b79eaba921b9.shg-box.shg-c {
  justify-content: center;
}

#s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d {
  margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
max-width: 1000px;
aspect-ratio: 1000/1338;
text-align: center;
}



.shg-image-margin-container-s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d {
  margin-left: auto;
  margin-right: auto;
  
  margin-bottom: 5px;
}

#s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d .shg-image-content-wrapper {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }

    #s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d .shogun-image-link {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d .shogun-image-content {
  
    align-items: center;
  
}

.s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d {
      --shg-aspect-ratio: calc(1000/1338); 
    }

    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container {
      position: relative;
    }

    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d {
  
  
  
  
}

#s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d .shg-image-content-wrapper {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }

    #s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d .shogun-image-link {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d .shogun-image-content {
  
    align-items: center;
  
}

.s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d {
      --shg-aspect-ratio: calc(1000/1338); 
    }

    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container {
      position: relative;
    }

    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d {
  
  
  
  
}

#s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d .shg-image-content-wrapper {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }

    #s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d .shogun-image-link {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d .shogun-image-content {
  
    align-items: center;
  
}

.s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d {
      --shg-aspect-ratio: calc(1000/1338); 
    }

    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container {
      position: relative;
    }

    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d {
  
  
  
  
}

#s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d .shg-image-content-wrapper {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }

    #s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d .shogun-image-link {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d .shogun-image-content {
  
    align-items: center;
  
}

.s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d {
      --shg-aspect-ratio: calc(1000/1338); 
    }

    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container {
      position: relative;
    }

    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d {
  
  
  
  
}

#s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d .shg-image-content-wrapper {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }

    #s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d .shogun-image-link {
      aspect-ratio: 1000/1338;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d .shogun-image-content {
  
    align-items: center;
  
}

.s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d {
      --shg-aspect-ratio: calc(1000/1338); 
    }

    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container {
      position: relative;
    }

    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-90b1a429-1a81-46c2-bbe3-8b9859a8bf2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}
#s-59dc2d0b-a46c-42d6-9358-7c69c642255f {
  margin-left: auto;
margin-bottom: 1em;
margin-right: auto;
min-height: 50px;
}








#s-59dc2d0b-a46c-42d6-9358-7c69c642255f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-59dc2d0b-a46c-42d6-9358-7c69c642255f {
  cursor: pointer;
}#s-59dc2d0b-a46c-42d6-9358-7c69c642255f.shg-box.shg-c {
  justify-content: center;
}

#s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 {
  margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
max-width: 1000px;
aspect-ratio: 1000/1326;
text-align: center;
}



.shg-image-margin-container-s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 {
  margin-left: auto;
  margin-right: auto;
  
  margin-bottom: 5px;
}

#s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 .shg-image-content-wrapper {
      aspect-ratio: 1000/1326;
      min-width: 100%;
      height: auto;
    }

    #s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 .shogun-image-link {
      aspect-ratio: 1000/1326;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 .shogun-image-content {
  
    align-items: center;
  
}

.s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 {
      --shg-aspect-ratio: calc(1000/1326); 
    }

    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container {
      position: relative;
    }

    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 {
  
  
  
  
}

#s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 .shg-image-content-wrapper {
      aspect-ratio: 1000/1326;
      min-width: 100%;
      height: auto;
    }

    #s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 .shogun-image-link {
      aspect-ratio: 1000/1326;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 .shogun-image-content {
  
    align-items: center;
  
}

.s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 {
      --shg-aspect-ratio: calc(1000/1326); 
    }

    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container {
      position: relative;
    }

    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 {
  
  
  
  
}

#s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 .shg-image-content-wrapper {
      aspect-ratio: 1000/1326;
      min-width: 100%;
      height: auto;
    }

    #s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 .shogun-image-link {
      aspect-ratio: 1000/1326;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 .shogun-image-content {
  
    align-items: center;
  
}

.s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 {
      --shg-aspect-ratio: calc(1000/1326); 
    }

    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container {
      position: relative;
    }

    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 {
  
  
  
  
}

#s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 .shg-image-content-wrapper {
      aspect-ratio: 1000/1326;
      min-width: 100%;
      height: auto;
    }

    #s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 .shogun-image-link {
      aspect-ratio: 1000/1326;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 .shogun-image-content {
  
    align-items: center;
  
}

.s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 {
      --shg-aspect-ratio: calc(1000/1326); 
    }

    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container {
      position: relative;
    }

    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 {
  
  
  
  
}

#s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 .shg-image-content-wrapper {
      aspect-ratio: 1000/1326;
      min-width: 100%;
      height: auto;
    }

    #s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 .shogun-image-link {
      aspect-ratio: 1000/1326;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1000px;
  }



  img.s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image {
    
    
    
    max-height: 1000px;
  }


.s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 .shogun-image-content {
  
    align-items: center;
  
}

.s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 {
      --shg-aspect-ratio: calc(1000/1326); 
    }

    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container {
      position: relative;
    }

    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bf04bc6a-3506-4a9a-9b2f-6fd4c1bf95b3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1000px;
    }
  }

}
#s-6883b5ed-9123-4360-9f7d-bc0f3bffd1c8 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
min-height: 50px;
}








#s-6883b5ed-9123-4360-9f7d-bc0f3bffd1c8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6883b5ed-9123-4360-9f7d-bc0f3bffd1c8 {
  cursor: pointer;
}#s-6883b5ed-9123-4360-9f7d-bc0f3bffd1c8.shg-box.shg-c {
  justify-content: center;
}

#s-b352f5ac-ee1b-4f0c-befe-df40dd40e341 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-b352f5ac-ee1b-4f0c-befe-df40dd40e341"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b352f5ac-ee1b-4f0c-befe-df40dd40e341"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b352f5ac-ee1b-4f0c-befe-df40dd40e341"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b352f5ac-ee1b-4f0c-befe-df40dd40e341"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c {
  margin-left: auto;
margin-right: auto;
max-width: 1916px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1916px;
  }



  img.s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image {
    
    
    
    max-height: 1916px;
  }


.s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c .shogun-image-content {
  
    align-items: center;
  
}

.s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container {
      position: relative;
    }

    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1916px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c {
  
  
  
  
}

#s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1916px;
  }



  img.s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image {
    
    
    
    max-height: 1916px;
  }


.s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c .shogun-image-content {
  
    align-items: center;
  
}

.s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container {
      position: relative;
    }

    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1916px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c {
  
  
  
  
}

#s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1916px;
  }



  img.s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image {
    
    
    
    max-height: 1916px;
  }


.s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c .shogun-image-content {
  
    align-items: center;
  
}

.s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container {
      position: relative;
    }

    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1916px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c {
  
  
  
  
}

#s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1916px;
  }



  img.s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image {
    
    
    
    max-height: 1916px;
  }


.s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c .shogun-image-content {
  
    align-items: center;
  
}

.s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container {
      position: relative;
    }

    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1916px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c {
  
  
  
  
}

#s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1916px;
  }



  img.s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image {
    
    
    
    max-height: 1916px;
  }


.s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c .shogun-image-content {
  
    align-items: center;
  
}

.s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container {
      position: relative;
    }

    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-57845a6e-20dd-44f8-a383-cd6dc5d6d42c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1916px;
    }
  }

}
#s-8f348e17-6a0b-4308-90fe-c49c8eda51f8 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-8f348e17-6a0b-4308-90fe-c49c8eda51f8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8f348e17-6a0b-4308-90fe-c49c8eda51f8.shg-box.shg-c {
  justify-content: center;
}

#s-ae8fc30c-d513-4d9a-9f24-bddfc84c5ad6 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ae8fc30c-d513-4d9a-9f24-bddfc84c5ad6 .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 41px;
  line-height: 0.8em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-ae8fc30c-d513-4d9a-9f24-bddfc84c5ad6 .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 33px;
  line-height: 0.8em;
  
  
}


}@media (max-width: 767px){#s-ae8fc30c-d513-4d9a-9f24-bddfc84c5ad6 .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 32px;
  line-height: 0.8em;
  
  
}


}
#s-22a4b576-010f-4612-926f-f014228bf3d8 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-22a4b576-010f-4612-926f-f014228bf3d8 .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 38px;
  line-height: 0.5em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-22a4b576-010f-4612-926f-f014228bf3d8 .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 29px;
  line-height: 0.5em;
  
  
}


}@media (max-width: 767px){#s-22a4b576-010f-4612-926f-f014228bf3d8 .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 29px;
  line-height: 0.5em;
  
  
}


}
#s-0a43581d-9670-49f9-a483-53e3fc771eaf {
  margin-top: 6px;
margin-left: auto;
margin-right: auto;
padding-top: 3px;
padding-bottom: 3px;
text-align: center;
}

#s-0a43581d-9670-49f9-a483-53e3fc771eaf .shogun-heading-component h1 {
  
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-0a43581d-9670-49f9-a483-53e3fc771eaf .shogun-heading-component h1 {
  
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 21px;
  
  
  
}


}@media (max-width: 767px){#s-0a43581d-9670-49f9-a483-53e3fc771eaf .shogun-heading-component h1 {
  
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-4f048869-0e8b-451c-b833-1eafdfd2e65b {
  margin-top: 7px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(52, 171, 179, 1);
text-align: center;
text-decoration: none;
letter-spacing: 0px;
line-height: 1.5em;
background-image: none;
hover-type: color;
}
#s-4f048869-0e8b-451c-b833-1eafdfd2e65b:hover {background-color: rgba(52, 171, 179, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-4f048869-0e8b-451c-b833-1eafdfd2e65b:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 992px) and (max-width: 1199px){#s-4f048869-0e8b-451c-b833-1eafdfd2e65b {
  margin-bottom: 20px;
}
}

  #s-4f048869-0e8b-451c-b833-1eafdfd2e65b-root {
    text-align: center;
  }


#s-4f048869-0e8b-451c-b833-1eafdfd2e65b.shg-btn {
  color: #ffffff;
  font-size: 19px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-4f048869-0e8b-451c-b833-1eafdfd2e65b-root {
    text-align: center;
  }


#s-4f048869-0e8b-451c-b833-1eafdfd2e65b.shg-btn {
  color: #ffffff;
  font-size: 19px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4f048869-0e8b-451c-b833-1eafdfd2e65b-root {
    text-align: center;
  }


#s-4f048869-0e8b-451c-b833-1eafdfd2e65b.shg-btn {
  color: #ffffff;
  font-size: 19px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4f048869-0e8b-451c-b833-1eafdfd2e65b-root {
    text-align: center;
  }


#s-4f048869-0e8b-451c-b833-1eafdfd2e65b.shg-btn {
  color: #ffffff;
  font-size: 19px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-4f048869-0e8b-451c-b833-1eafdfd2e65b-root {
    text-align: center;
  }


#s-4f048869-0e8b-451c-b833-1eafdfd2e65b.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-4270a817-f6b8-421e-97b1-5076da2a6b16 {
  margin-left: auto;
margin-right: auto;
max-width: 2916px;
aspect-ratio: 2916/1161;
text-align: center;
}



.shg-image-margin-container-s-4270a817-f6b8-421e-97b1-5076da2a6b16 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-4270a817-f6b8-421e-97b1-5076da2a6b16 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4270a817-f6b8-421e-97b1-5076da2a6b16 .shg-image-content-wrapper {
      aspect-ratio: 2916/1161;
      min-width: 100%;
      height: auto;
    }

    #s-4270a817-f6b8-421e-97b1-5076da2a6b16 .shogun-image-link {
      aspect-ratio: 2916/1161;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4270a817-f6b8-421e-97b1-5076da2a6b16 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4270a817-f6b8-421e-97b1-5076da2a6b16 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2916px;
  }



  img.s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image {
    
    
    
    max-height: 2916px;
  }


.s-4270a817-f6b8-421e-97b1-5076da2a6b16 .shogun-image-content {
  
    align-items: center;
  
}

.s-4270a817-f6b8-421e-97b1-5076da2a6b16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4270a817-f6b8-421e-97b1-5076da2a6b16 {
      --shg-aspect-ratio: calc(2916/1161); 
    }

    .s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container {
      position: relative;
    }

    .s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4270a817-f6b8-421e-97b1-5076da2a6b16 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2916px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-4270a817-f6b8-421e-97b1-5076da2a6b16 {
  
  
  
  
}

#s-4270a817-f6b8-421e-97b1-5076da2a6b16 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4270a817-f6b8-421e-97b1-5076da2a6b16 .shg-image-content-wrapper {
      aspect-ratio: 2916/1161;
      min-width: 100%;
      height: auto;
    }

    #s-4270a817-f6b8-421e-97b1-5076da2a6b16 .shogun-image-link {
      aspect-ratio: 2916/1161;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4270a817-f6b8-421e-97b1-5076da2a6b16 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4270a817-f6b8-421e-97b1-5076da2a6b16 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2916px;
  }



  img.s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image {
    
    
    
    max-height: 2916px;
  }


.s-4270a817-f6b8-421e-97b1-5076da2a6b16 .shogun-image-content {
  
    align-items: center;
  
}

.s-4270a817-f6b8-421e-97b1-5076da2a6b16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4270a817-f6b8-421e-97b1-5076da2a6b16 {
      --shg-aspect-ratio: calc(2916/1161); 
    }

    .s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container {
      position: relative;
    }

    .s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4270a817-f6b8-421e-97b1-5076da2a6b16 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2916px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-4270a817-f6b8-421e-97b1-5076da2a6b16 {
  
  
  
  
}

#s-4270a817-f6b8-421e-97b1-5076da2a6b16 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4270a817-f6b8-421e-97b1-5076da2a6b16 .shg-image-content-wrapper {
      aspect-ratio: 2916/1161;
      min-width: 100%;
      height: auto;
    }

    #s-4270a817-f6b8-421e-97b1-5076da2a6b16 .shogun-image-link {
      aspect-ratio: 2916/1161;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4270a817-f6b8-421e-97b1-5076da2a6b16 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4270a817-f6b8-421e-97b1-5076da2a6b16 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2916px;
  }



  img.s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image {
    
    
    
    max-height: 2916px;
  }


.s-4270a817-f6b8-421e-97b1-5076da2a6b16 .shogun-image-content {
  
    align-items: center;
  
}

.s-4270a817-f6b8-421e-97b1-5076da2a6b16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4270a817-f6b8-421e-97b1-5076da2a6b16 {
      --shg-aspect-ratio: calc(2916/1161); 
    }

    .s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container {
      position: relative;
    }

    .s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4270a817-f6b8-421e-97b1-5076da2a6b16 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2916px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-4270a817-f6b8-421e-97b1-5076da2a6b16 {
  
  
  
  
}

#s-4270a817-f6b8-421e-97b1-5076da2a6b16 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4270a817-f6b8-421e-97b1-5076da2a6b16 .shg-image-content-wrapper {
      aspect-ratio: 2916/1161;
      min-width: 100%;
      height: auto;
    }

    #s-4270a817-f6b8-421e-97b1-5076da2a6b16 .shogun-image-link {
      aspect-ratio: 2916/1161;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4270a817-f6b8-421e-97b1-5076da2a6b16 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4270a817-f6b8-421e-97b1-5076da2a6b16 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2916px;
  }



  img.s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image {
    
    
    
    max-height: 2916px;
  }


.s-4270a817-f6b8-421e-97b1-5076da2a6b16 .shogun-image-content {
  
    align-items: center;
  
}

.s-4270a817-f6b8-421e-97b1-5076da2a6b16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4270a817-f6b8-421e-97b1-5076da2a6b16 {
      --shg-aspect-ratio: calc(2916/1161); 
    }

    .s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container {
      position: relative;
    }

    .s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4270a817-f6b8-421e-97b1-5076da2a6b16 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2916px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-4270a817-f6b8-421e-97b1-5076da2a6b16 {
  
  
  
  
}

#s-4270a817-f6b8-421e-97b1-5076da2a6b16 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4270a817-f6b8-421e-97b1-5076da2a6b16 .shg-image-content-wrapper {
      aspect-ratio: 2916/1161;
      min-width: 100%;
      height: auto;
    }

    #s-4270a817-f6b8-421e-97b1-5076da2a6b16 .shogun-image-link {
      aspect-ratio: 2916/1161;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4270a817-f6b8-421e-97b1-5076da2a6b16 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4270a817-f6b8-421e-97b1-5076da2a6b16 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2916px;
  }



  img.s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image {
    
    
    
    max-height: 2916px;
  }


.s-4270a817-f6b8-421e-97b1-5076da2a6b16 .shogun-image-content {
  
    align-items: center;
  
}

.s-4270a817-f6b8-421e-97b1-5076da2a6b16.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4270a817-f6b8-421e-97b1-5076da2a6b16 {
      --shg-aspect-ratio: calc(2916/1161); 
    }

    .s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container {
      position: relative;
    }

    .s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4270a817-f6b8-421e-97b1-5076da2a6b16.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4270a817-f6b8-421e-97b1-5076da2a6b16 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2916px;
    }
  }

}
#s-6ebd438c-bef6-411a-97e2-ee7b8b1d5c0e {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-6ebd438c-bef6-411a-97e2-ee7b8b1d5c0e {
  background-color: rgba(255, 255, 255, 1);
}
}







#s-6ebd438c-bef6-411a-97e2-ee7b8b1d5c0e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6ebd438c-bef6-411a-97e2-ee7b8b1d5c0e {
  cursor: pointer;
}#s-6ebd438c-bef6-411a-97e2-ee7b8b1d5c0e.shg-box.shg-c {
  justify-content: center;
}

#s-4ff9a0a2-281e-42c3-a5f1-46e4ee536c53 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-4ff9a0a2-281e-42c3-a5f1-46e4ee536c53 {
  display: none;
}
#s-4ff9a0a2-281e-42c3-a5f1-46e4ee536c53, #wrap-s-4ff9a0a2-281e-42c3-a5f1-46e4ee536c53 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4ff9a0a2-281e-42c3-a5f1-46e4ee536c53 {
  display: none;
}
#s-4ff9a0a2-281e-42c3-a5f1-46e4ee536c53, #wrap-s-4ff9a0a2-281e-42c3-a5f1-46e4ee536c53 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4ff9a0a2-281e-42c3-a5f1-46e4ee536c53 {
  display: none;
}
#s-4ff9a0a2-281e-42c3-a5f1-46e4ee536c53, #wrap-s-4ff9a0a2-281e-42c3-a5f1-46e4ee536c53 { display: none !important; }}@media (max-width: 767px){#s-4ff9a0a2-281e-42c3-a5f1-46e4ee536c53 {
  margin-top: 10px;
background-color: rgba(233, 224, 227, 1);
}
}
#s-4ff9a0a2-281e-42c3-a5f1-46e4ee536c53 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Lora";
  font-style:  italic ;
  font-size: 69px;
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-4ff9a0a2-281e-42c3-a5f1-46e4ee536c53 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Lora";
  font-style:  italic ;
  font-size: 63px;
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-4ff9a0a2-281e-42c3-a5f1-46e4ee536c53 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Lora";
  font-style:  italic ;
  font-size: 50px;
  
  
  
}


}@media (max-width: 767px){#s-4ff9a0a2-281e-42c3-a5f1-46e4ee536c53 .shogun-heading-component h1 {
  color: rgba(21, 44, 78, 1);
  font-weight:  normal ;
  font-family: "Lora";
  font-style:  normal ;
  font-size: 37px;
  
  
  
}


}
#s-a7238832-f03a-4f48-8193-eb881042d0e1 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-a7238832-f03a-4f48-8193-eb881042d0e1 {
  display: none;
}
#s-a7238832-f03a-4f48-8193-eb881042d0e1, #wrap-s-a7238832-f03a-4f48-8193-eb881042d0e1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a7238832-f03a-4f48-8193-eb881042d0e1 {
  display: none;
}
#s-a7238832-f03a-4f48-8193-eb881042d0e1, #wrap-s-a7238832-f03a-4f48-8193-eb881042d0e1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a7238832-f03a-4f48-8193-eb881042d0e1 {
  display: none;
}
#s-a7238832-f03a-4f48-8193-eb881042d0e1, #wrap-s-a7238832-f03a-4f48-8193-eb881042d0e1 { display: none !important; }}@media (max-width: 767px){#s-a7238832-f03a-4f48-8193-eb881042d0e1 {
  padding-top: 0px;
background-color: rgba(233, 224, 227, 1);
}
}
#s-a7238832-f03a-4f48-8193-eb881042d0e1 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Lora";
  font-style:  italic ;
  font-size: 69px;
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-a7238832-f03a-4f48-8193-eb881042d0e1 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Lora";
  font-style:  italic ;
  font-size: 63px;
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-a7238832-f03a-4f48-8193-eb881042d0e1 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Lora";
  font-style:  italic ;
  font-size: 50px;
  
  
  
}


}@media (max-width: 767px){#s-a7238832-f03a-4f48-8193-eb881042d0e1 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 17px;
  
  
  
}


}
#s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 {
  margin-left: auto;
margin-right: auto;
max-width: 1459px;
aspect-ratio: 1459/1141;
text-align: center;
}
@media (min-width: 1200px){#s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 {
  display: none;
}
#s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957, #wrap-s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 {
  display: none;
}
#s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957, #wrap-s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 {
  display: none;
}
#s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957, #wrap-s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 { display: none !important; }}


.shg-image-margin-container-s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 .shg-image-content-wrapper {
      aspect-ratio: 1459/1141;
      min-width: 100%;
      height: auto;
    }

    #s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 .shogun-image-link {
      aspect-ratio: 1459/1141;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1459px;
  }



  img.s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image {
    
    
    
    max-height: 1459px;
  }


.s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 .shogun-image-content {
  
    align-items: center;
  
}

.s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 {
      --shg-aspect-ratio: calc(1459/1141); 
    }

    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container {
      position: relative;
    }

    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1459px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 {
  
  
  
  
}

#s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 .shg-image-content-wrapper {
      aspect-ratio: 1459/1141;
      min-width: 100%;
      height: auto;
    }

    #s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 .shogun-image-link {
      aspect-ratio: 1459/1141;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1459px;
  }



  img.s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image {
    
    
    
    max-height: 1459px;
  }


.s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 .shogun-image-content {
  
    align-items: center;
  
}

.s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 {
      --shg-aspect-ratio: calc(1459/1141); 
    }

    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container {
      position: relative;
    }

    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1459px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 {
  
  
  
  
}

#s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 .shg-image-content-wrapper {
      aspect-ratio: 1459/1141;
      min-width: 100%;
      height: auto;
    }

    #s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 .shogun-image-link {
      aspect-ratio: 1459/1141;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1459px;
  }



  img.s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image {
    
    
    
    max-height: 1459px;
  }


.s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 .shogun-image-content {
  
    align-items: center;
  
}

.s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 {
      --shg-aspect-ratio: calc(1459/1141); 
    }

    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container {
      position: relative;
    }

    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1459px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 {
  
  
  
  
}

#s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 .shg-image-content-wrapper {
      aspect-ratio: 1459/1141;
      min-width: 100%;
      height: auto;
    }

    #s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 .shogun-image-link {
      aspect-ratio: 1459/1141;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1459px;
  }



  img.s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image {
    
    
    
    max-height: 1459px;
  }


.s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 .shogun-image-content {
  
    align-items: center;
  
}

.s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 {
      --shg-aspect-ratio: calc(1459/1141); 
    }

    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container {
      position: relative;
    }

    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1459px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 {
  
  
  
  
}

#s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 .shg-image-content-wrapper {
      aspect-ratio: 1459/1141;
      min-width: 100%;
      height: auto;
    }

    #s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 .shogun-image-link {
      aspect-ratio: 1459/1141;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1459px;
  }



  img.s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image {
    
    
    
    max-height: 1459px;
  }


.s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 .shogun-image-content {
  
    align-items: center;
  
}

.s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 {
      --shg-aspect-ratio: calc(1459/1141); 
    }

    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container {
      position: relative;
    }

    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6f999fbb-1f8e-43cc-9bc8-1fa3d7f2c957 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1459px;
    }
  }

}
#s-33139857-2569-4aa6-b718-0fc580ae40cc {
  margin-left: auto;
margin-right: auto;
max-width: 2600px;
aspect-ratio: 2600/1103;
text-align: center;
}
@media (max-width: 767px){#s-33139857-2569-4aa6-b718-0fc580ae40cc {
  display: none;
}
#s-33139857-2569-4aa6-b718-0fc580ae40cc, #wrap-s-33139857-2569-4aa6-b718-0fc580ae40cc { display: none !important; }}


.shg-image-margin-container-s-33139857-2569-4aa6-b718-0fc580ae40cc {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-33139857-2569-4aa6-b718-0fc580ae40cc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-33139857-2569-4aa6-b718-0fc580ae40cc .shg-image-content-wrapper {
      aspect-ratio: 2600/1103;
      min-width: 100%;
      height: auto;
    }

    #s-33139857-2569-4aa6-b718-0fc580ae40cc .shogun-image-link {
      aspect-ratio: 2600/1103;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-33139857-2569-4aa6-b718-0fc580ae40cc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-33139857-2569-4aa6-b718-0fc580ae40cc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2600px;
  }



  img.s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image {
    
    
    
    max-height: 2600px;
  }


.s-33139857-2569-4aa6-b718-0fc580ae40cc .shogun-image-content {
  
    align-items: center;
  
}

.s-33139857-2569-4aa6-b718-0fc580ae40cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-33139857-2569-4aa6-b718-0fc580ae40cc {
      --shg-aspect-ratio: calc(2600/1103); 
    }

    .s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container {
      position: relative;
    }

    .s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-33139857-2569-4aa6-b718-0fc580ae40cc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2600px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-33139857-2569-4aa6-b718-0fc580ae40cc {
  
  
  
  
}

#s-33139857-2569-4aa6-b718-0fc580ae40cc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-33139857-2569-4aa6-b718-0fc580ae40cc .shg-image-content-wrapper {
      aspect-ratio: 2600/1103;
      min-width: 100%;
      height: auto;
    }

    #s-33139857-2569-4aa6-b718-0fc580ae40cc .shogun-image-link {
      aspect-ratio: 2600/1103;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-33139857-2569-4aa6-b718-0fc580ae40cc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-33139857-2569-4aa6-b718-0fc580ae40cc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2600px;
  }



  img.s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image {
    
    
    
    max-height: 2600px;
  }


.s-33139857-2569-4aa6-b718-0fc580ae40cc .shogun-image-content {
  
    align-items: center;
  
}

.s-33139857-2569-4aa6-b718-0fc580ae40cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-33139857-2569-4aa6-b718-0fc580ae40cc {
      --shg-aspect-ratio: calc(2600/1103); 
    }

    .s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container {
      position: relative;
    }

    .s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-33139857-2569-4aa6-b718-0fc580ae40cc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2600px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-33139857-2569-4aa6-b718-0fc580ae40cc {
  
  
  
  
}

#s-33139857-2569-4aa6-b718-0fc580ae40cc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-33139857-2569-4aa6-b718-0fc580ae40cc .shg-image-content-wrapper {
      aspect-ratio: 2600/1103;
      min-width: 100%;
      height: auto;
    }

    #s-33139857-2569-4aa6-b718-0fc580ae40cc .shogun-image-link {
      aspect-ratio: 2600/1103;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-33139857-2569-4aa6-b718-0fc580ae40cc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-33139857-2569-4aa6-b718-0fc580ae40cc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2600px;
  }



  img.s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image {
    
    
    
    max-height: 2600px;
  }


.s-33139857-2569-4aa6-b718-0fc580ae40cc .shogun-image-content {
  
    align-items: center;
  
}

.s-33139857-2569-4aa6-b718-0fc580ae40cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-33139857-2569-4aa6-b718-0fc580ae40cc {
      --shg-aspect-ratio: calc(2600/1103); 
    }

    .s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container {
      position: relative;
    }

    .s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-33139857-2569-4aa6-b718-0fc580ae40cc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2600px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-33139857-2569-4aa6-b718-0fc580ae40cc {
  
  
  
  
}

#s-33139857-2569-4aa6-b718-0fc580ae40cc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-33139857-2569-4aa6-b718-0fc580ae40cc .shg-image-content-wrapper {
      aspect-ratio: 2600/1103;
      min-width: 100%;
      height: auto;
    }

    #s-33139857-2569-4aa6-b718-0fc580ae40cc .shogun-image-link {
      aspect-ratio: 2600/1103;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-33139857-2569-4aa6-b718-0fc580ae40cc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-33139857-2569-4aa6-b718-0fc580ae40cc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2600px;
  }



  img.s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image {
    
    
    
    max-height: 2600px;
  }


.s-33139857-2569-4aa6-b718-0fc580ae40cc .shogun-image-content {
  
    align-items: center;
  
}

.s-33139857-2569-4aa6-b718-0fc580ae40cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-33139857-2569-4aa6-b718-0fc580ae40cc {
      --shg-aspect-ratio: calc(2600/1103); 
    }

    .s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container {
      position: relative;
    }

    .s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-33139857-2569-4aa6-b718-0fc580ae40cc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2600px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-33139857-2569-4aa6-b718-0fc580ae40cc {
  
  
  
  
}

#s-33139857-2569-4aa6-b718-0fc580ae40cc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-33139857-2569-4aa6-b718-0fc580ae40cc .shg-image-content-wrapper {
      aspect-ratio: 2600/1103;
      min-width: 100%;
      height: auto;
    }

    #s-33139857-2569-4aa6-b718-0fc580ae40cc .shogun-image-link {
      aspect-ratio: 2600/1103;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-33139857-2569-4aa6-b718-0fc580ae40cc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-33139857-2569-4aa6-b718-0fc580ae40cc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2600px;
  }



  img.s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image {
    
    
    
    max-height: 2600px;
  }


.s-33139857-2569-4aa6-b718-0fc580ae40cc .shogun-image-content {
  
    align-items: center;
  
}

.s-33139857-2569-4aa6-b718-0fc580ae40cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-33139857-2569-4aa6-b718-0fc580ae40cc {
      --shg-aspect-ratio: calc(2600/1103); 
    }

    .s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container {
      position: relative;
    }

    .s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-33139857-2569-4aa6-b718-0fc580ae40cc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-33139857-2569-4aa6-b718-0fc580ae40cc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2600px;
    }
  }

}
#s-af878050-4c75-4aa5-925f-dce08ca39096 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-af878050-4c75-4aa5-925f-dce08ca39096 {
  display: none;
}
#s-af878050-4c75-4aa5-925f-dce08ca39096, #wrap-s-af878050-4c75-4aa5-925f-dce08ca39096 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-af878050-4c75-4aa5-925f-dce08ca39096 {
  display: none;
}
#s-af878050-4c75-4aa5-925f-dce08ca39096, #wrap-s-af878050-4c75-4aa5-925f-dce08ca39096 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-af878050-4c75-4aa5-925f-dce08ca39096 {
  display: none;
}
#s-af878050-4c75-4aa5-925f-dce08ca39096, #wrap-s-af878050-4c75-4aa5-925f-dce08ca39096 { display: none !important; }}@media (max-width: 767px){#s-af878050-4c75-4aa5-925f-dce08ca39096 {
  margin-top: 10px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 0px;
}
}
#s-af878050-4c75-4aa5-925f-dce08ca39096 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Lora";
  font-style:  italic ;
  font-size: 69px;
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-af878050-4c75-4aa5-925f-dce08ca39096 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Lora";
  font-style:  italic ;
  font-size: 63px;
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-af878050-4c75-4aa5-925f-dce08ca39096 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Lora";
  font-style:  italic ;
  font-size: 50px;
  
  
  
}


}@media (max-width: 767px){#s-af878050-4c75-4aa5-925f-dce08ca39096 .shogun-heading-component h1 {
  color: rgba(74, 74, 74, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}
#s-cd75c9ad-460f-45b6-baa0-eb3cea67b46d {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-cd75c9ad-460f-45b6-baa0-eb3cea67b46d {
  margin-top: 10px;
}
}@media (max-width: 767px){#s-cd75c9ad-460f-45b6-baa0-eb3cea67b46d {
  display: none;
}
#s-cd75c9ad-460f-45b6-baa0-eb3cea67b46d, #wrap-s-cd75c9ad-460f-45b6-baa0-eb3cea67b46d { display: none !important; }}
#s-cd75c9ad-460f-45b6-baa0-eb3cea67b46d .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 1200px){#s-cd75c9ad-460f-45b6-baa0-eb3cea67b46d .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 34px;
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-cd75c9ad-460f-45b6-baa0-eb3cea67b46d .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-cd75c9ad-460f-45b6-baa0-eb3cea67b46d .shogun-heading-component h1 {
  color: rgba(42, 96, 69, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  
  
}


}
#s-4753501f-201e-4bd7-abf7-75484fd24e76 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-4753501f-201e-4bd7-abf7-75484fd24e76 {
  padding-top: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-4753501f-201e-4bd7-abf7-75484fd24e76 {
  padding-top: 0px;
}
}@media (max-width: 767px){#s-4753501f-201e-4bd7-abf7-75484fd24e76 {
  display: none;
}
#s-4753501f-201e-4bd7-abf7-75484fd24e76, #wrap-s-4753501f-201e-4bd7-abf7-75484fd24e76 { display: none !important; }}
#s-4753501f-201e-4bd7-abf7-75484fd24e76 .shogun-heading-component h1 {
  
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 1200px){#s-4753501f-201e-4bd7-abf7-75484fd24e76 .shogun-heading-component h1 {
  
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1em;
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-4753501f-201e-4bd7-abf7-75484fd24e76 .shogun-heading-component h1 {
  
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1em;
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-4753501f-201e-4bd7-abf7-75484fd24e76 .shogun-heading-component h1 {
  
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 19px;
  line-height: 1em;
  
  
}


}
#s-b582ab07-e39b-4506-b530-da44c4442711 {
  margin-top: 10px;
margin-left: 7%;
margin-bottom: 10px;
margin-right: 7%;
}
@media (min-width: 992px) and (max-width: 1199px){#s-b582ab07-e39b-4506-b530-da44c4442711 {
  margin-left: 2%;
margin-right: 2%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-b582ab07-e39b-4506-b530-da44c4442711 {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-b582ab07-e39b-4506-b530-da44c4442711 {
  margin-left: 1%;
margin-right: 1%;
}
}
@media (min-width: 0px) {
[id="s-b582ab07-e39b-4506-b530-da44c4442711"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-b582ab07-e39b-4506-b530-da44c4442711"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-b582ab07-e39b-4506-b530-da44c4442711"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-b582ab07-e39b-4506-b530-da44c4442711"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 7.5px);
}

}

#s-b4389a31-c560-42d4-a391-f0262281f11a {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-b4389a31-c560-42d4-a391-f0262281f11a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b4389a31-c560-42d4-a391-f0262281f11a {
  cursor: pointer;
}#s-b4389a31-c560-42d4-a391-f0262281f11a.shg-box.shg-c {
  justify-content: flex-start;
}

#s-4468ec86-a91f-459e-a3dc-7568a4048986 {
  margin-left: auto;
margin-right: auto;
}

.shg-product-image-wrapper a.shogun-product-image-url {
  display: inline-block;
}

.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

.shg-product-img-placeholder img {
  padding: 3rem;
  background: rgba(0, 0, 0, 0.1);
  max-width: -moz-max-content;
  max-width: max-content;
}

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

.shg-product-image-wrapper.visible {
  display: inline-block;
}

.shg-product-image-wrapper .shg-product-image-wrapper a {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.shg-product-image-wrapper .shg-image-zoom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  max-width: 100%;
  min-height: 100%;
}

.shg-c.shg-align-center .shg-image-zoom {
  margin: 0 auto;
}

.shg-c.shg-align-right .shg-image-zoom {
  margin-left: auto;
}

.shg-image-zoom .shg-image-zoom-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease-out;
  transform: scale(1);
}

/**
  Fix for IE11, as min-width does not works there.
**/
@media screen\0 {
  .shg-product-image-wrapper > .shogun-image {
    width: 100%;
  }
}

#s-4abd956f-02d3-4bee-a189-1f795fddb27a {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-4abd956f-02d3-4bee-a189-1f795fddb27a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4abd956f-02d3-4bee-a189-1f795fddb27a img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-4abd956f-02d3-4bee-a189-1f795fddb27a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4abd956f-02d3-4bee-a189-1f795fddb27a img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-4abd956f-02d3-4bee-a189-1f795fddb27a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4abd956f-02d3-4bee-a189-1f795fddb27a img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-4abd956f-02d3-4bee-a189-1f795fddb27a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4abd956f-02d3-4bee-a189-1f795fddb27a img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-4abd956f-02d3-4bee-a189-1f795fddb27a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4abd956f-02d3-4bee-a189-1f795fddb27a img.shogun-image {
  width: 100%;
  height: auto;
}





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

.shg-product-title-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-d372fbe4-1161-4e05-a30a-f291585981a3 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-d372fbe4-1161-4e05-a30a-f291585981a3 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 17px;
  
  
  
}
@media (min-width: 992px) and (max-width: 1199px){#s-d372fbe4-1161-4e05-a30a-f291585981a3 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-d372fbe4-1161-4e05-a30a-f291585981a3 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (max-width: 767px){#s-d372fbe4-1161-4e05-a30a-f291585981a3 .shg-product-title-component h1 {
  color: rgba(0, 0, 0, 1);
  
  font-family: Poppins;
  
  font-size: 14px;
  
  
  
}
}
#s-26b6f31b-cf1c-4a82-a2ec-72a6fb1b059c {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-26b6f31b-cf1c-4a82-a2ec-72a6fb1b059c .shg-product-sold-out {
  display: none;
  color: rgba(21, 44, 78, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-26b6f31b-cf1c-4a82-a2ec-72a6fb1b059c .shg-product-price {
  color: rgba(21, 44, 78, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-26b6f31b-cf1c-4a82-a2ec-72a6fb1b059c .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-26b6f31b-cf1c-4a82-a2ec-72a6fb1b059c .shg-product-sold-out {
  display: none;
  color: rgba(21, 44, 78, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-26b6f31b-cf1c-4a82-a2ec-72a6fb1b059c .shg-product-price {
  color: rgba(21, 44, 78, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-26b6f31b-cf1c-4a82-a2ec-72a6fb1b059c .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}
.shg-rich-text {
  overflow-wrap: break-word;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-theme-text-content p {
  
  
  
}

#s-523f72cc-9898-4a24-a3d8-1aa59ec9228c {
  margin-top: -20px;
margin-left: auto;
margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px){#s-523f72cc-9898-4a24-a3d8-1aa59ec9228c {
  margin-top: -20px;
}
}
#s-f1c42d3e-0bb0-4a30-adf8-1e599dc8eae9 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-f1c42d3e-0bb0-4a30-adf8-1e599dc8eae9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f1c42d3e-0bb0-4a30-adf8-1e599dc8eae9 {
  cursor: pointer;
}#s-f1c42d3e-0bb0-4a30-adf8-1e599dc8eae9.shg-box.shg-c {
  justify-content: flex-start;
}

#s-72342aef-762f-491f-b2e5-b3be3184995e {
  margin-left: auto;
margin-right: auto;
}

#s-f9b0bd7d-89a6-4e1e-9c97-860ea2f54e85 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-f9b0bd7d-89a6-4e1e-9c97-860ea2f54e85 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f9b0bd7d-89a6-4e1e-9c97-860ea2f54e85 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-f9b0bd7d-89a6-4e1e-9c97-860ea2f54e85 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f9b0bd7d-89a6-4e1e-9c97-860ea2f54e85 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-f9b0bd7d-89a6-4e1e-9c97-860ea2f54e85 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f9b0bd7d-89a6-4e1e-9c97-860ea2f54e85 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-f9b0bd7d-89a6-4e1e-9c97-860ea2f54e85 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f9b0bd7d-89a6-4e1e-9c97-860ea2f54e85 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-f9b0bd7d-89a6-4e1e-9c97-860ea2f54e85 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f9b0bd7d-89a6-4e1e-9c97-860ea2f54e85 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-53e36bd2-79aa-4a01-bc2a-abeed4bf77c4 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-53e36bd2-79aa-4a01-bc2a-abeed4bf77c4 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 17px;
  
  
  
}
@media (min-width: 992px) and (max-width: 1199px){#s-53e36bd2-79aa-4a01-bc2a-abeed4bf77c4 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-53e36bd2-79aa-4a01-bc2a-abeed4bf77c4 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (max-width: 767px){#s-53e36bd2-79aa-4a01-bc2a-abeed4bf77c4 .shg-product-title-component h1 {
  color: rgba(0, 0, 0, 1);
  
  font-family: Poppins;
  
  font-size: 14px;
  
  
  
}
}
#s-965c0614-3203-4f5e-acc9-00b339016781 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-965c0614-3203-4f5e-acc9-00b339016781 .shg-product-sold-out {
  display: none;
  color: rgba(21, 44, 78, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-965c0614-3203-4f5e-acc9-00b339016781 .shg-product-price {
  color: rgba(21, 44, 78, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-965c0614-3203-4f5e-acc9-00b339016781 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-965c0614-3203-4f5e-acc9-00b339016781 .shg-product-sold-out {
  display: none;
  color: rgba(21, 44, 78, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-965c0614-3203-4f5e-acc9-00b339016781 .shg-product-price {
  color: rgba(21, 44, 78, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-965c0614-3203-4f5e-acc9-00b339016781 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}
#s-9de5609a-70ff-445c-941c-c4aad42ee545 {
  margin-top: -20px;
margin-left: auto;
margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px){#s-9de5609a-70ff-445c-941c-c4aad42ee545 {
  margin-top: -20px;
}
}
#s-6f49141a-3a0f-4387-9d9d-06c6b4101900 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-6f49141a-3a0f-4387-9d9d-06c6b4101900 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6f49141a-3a0f-4387-9d9d-06c6b4101900 {
  cursor: pointer;
}#s-6f49141a-3a0f-4387-9d9d-06c6b4101900.shg-box.shg-c {
  justify-content: flex-start;
}

#s-8c9511f2-c1ed-461e-a424-d2b27a7ef523 {
  margin-left: auto;
margin-right: auto;
}

#s-85fc4128-8c1b-45b7-a403-b574939d7caf {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-85fc4128-8c1b-45b7-a403-b574939d7caf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-85fc4128-8c1b-45b7-a403-b574939d7caf img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-85fc4128-8c1b-45b7-a403-b574939d7caf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-85fc4128-8c1b-45b7-a403-b574939d7caf img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-85fc4128-8c1b-45b7-a403-b574939d7caf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-85fc4128-8c1b-45b7-a403-b574939d7caf img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-85fc4128-8c1b-45b7-a403-b574939d7caf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-85fc4128-8c1b-45b7-a403-b574939d7caf img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-85fc4128-8c1b-45b7-a403-b574939d7caf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-85fc4128-8c1b-45b7-a403-b574939d7caf img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-9c8b7353-eca0-4766-bae5-ebdab6c6fb16 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-9c8b7353-eca0-4766-bae5-ebdab6c6fb16 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 17px;
  
  
  
}
@media (min-width: 992px) and (max-width: 1199px){#s-9c8b7353-eca0-4766-bae5-ebdab6c6fb16 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-9c8b7353-eca0-4766-bae5-ebdab6c6fb16 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (max-width: 767px){#s-9c8b7353-eca0-4766-bae5-ebdab6c6fb16 .shg-product-title-component h1 {
  color: rgba(0, 0, 0, 1);
  
  font-family: Poppins;
  
  font-size: 14px;
  
  
  
}
}
#s-dc2154af-a5e5-4628-b218-28ec310d8615 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-dc2154af-a5e5-4628-b218-28ec310d8615 .shg-product-sold-out {
  display: none;
  color: rgba(21, 44, 78, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-dc2154af-a5e5-4628-b218-28ec310d8615 .shg-product-price {
  color: rgba(21, 44, 78, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-dc2154af-a5e5-4628-b218-28ec310d8615 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-dc2154af-a5e5-4628-b218-28ec310d8615 .shg-product-sold-out {
  display: none;
  color: rgba(21, 44, 78, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-dc2154af-a5e5-4628-b218-28ec310d8615 .shg-product-price {
  color: rgba(21, 44, 78, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-dc2154af-a5e5-4628-b218-28ec310d8615 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}
#s-535a2a14-0ef5-4fff-a78d-c688329a6815 {
  margin-top: -20px;
margin-left: auto;
margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px){#s-535a2a14-0ef5-4fff-a78d-c688329a6815 {
  margin-top: -20px;
}
}
#s-4dcf69a9-295a-4e84-9b04-56940cf2bcbe {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-4dcf69a9-295a-4e84-9b04-56940cf2bcbe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4dcf69a9-295a-4e84-9b04-56940cf2bcbe {
  cursor: pointer;
}#s-4dcf69a9-295a-4e84-9b04-56940cf2bcbe.shg-box.shg-c {
  justify-content: flex-start;
}

#s-e0d04525-17b2-4c8f-9701-0390f5b4d8d4 {
  margin-left: auto;
margin-right: auto;
}

#s-7a048412-c6a7-492b-a9c7-caf14e5d4644 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-7a048412-c6a7-492b-a9c7-caf14e5d4644 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a048412-c6a7-492b-a9c7-caf14e5d4644 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-7a048412-c6a7-492b-a9c7-caf14e5d4644 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a048412-c6a7-492b-a9c7-caf14e5d4644 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-7a048412-c6a7-492b-a9c7-caf14e5d4644 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a048412-c6a7-492b-a9c7-caf14e5d4644 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-7a048412-c6a7-492b-a9c7-caf14e5d4644 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a048412-c6a7-492b-a9c7-caf14e5d4644 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-7a048412-c6a7-492b-a9c7-caf14e5d4644 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a048412-c6a7-492b-a9c7-caf14e5d4644 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-9a552412-f3a7-492f-9c0b-2b1f5a0fd3ed {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-9a552412-f3a7-492f-9c0b-2b1f5a0fd3ed .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 17px;
  
  
  
}
@media (min-width: 992px) and (max-width: 1199px){#s-9a552412-f3a7-492f-9c0b-2b1f5a0fd3ed .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-9a552412-f3a7-492f-9c0b-2b1f5a0fd3ed .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (max-width: 767px){#s-9a552412-f3a7-492f-9c0b-2b1f5a0fd3ed .shg-product-title-component h1 {
  color: rgba(0, 0, 0, 1);
  
  font-family: Poppins;
  
  font-size: 14px;
  
  
  
}
}
#s-84ff5ece-93b4-4afd-9854-4f616af7fc7b {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-84ff5ece-93b4-4afd-9854-4f616af7fc7b .shg-product-sold-out {
  display: none;
  color: rgba(21, 44, 78, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-84ff5ece-93b4-4afd-9854-4f616af7fc7b .shg-product-price {
  color: rgba(21, 44, 78, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-84ff5ece-93b4-4afd-9854-4f616af7fc7b .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-84ff5ece-93b4-4afd-9854-4f616af7fc7b .shg-product-sold-out {
  display: none;
  color: rgba(21, 44, 78, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-84ff5ece-93b4-4afd-9854-4f616af7fc7b .shg-product-price {
  color: rgba(21, 44, 78, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-84ff5ece-93b4-4afd-9854-4f616af7fc7b .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}
#s-e19bfd8c-7360-42cc-86c3-0261a1082c00 {
  margin-top: -20px;
margin-left: auto;
margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px){#s-e19bfd8c-7360-42cc-86c3-0261a1082c00 {
  margin-top: -20px;
}
}
#s-c59bd174-b935-4888-abaa-09f9482fdaa1 {
  margin-top: 7px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(21, 44, 78, 1);
text-align: center;
text-decoration: none;
letter-spacing: 0px;
line-height: 1.5em;
background-image: none;
hover-type: color;
}
#s-c59bd174-b935-4888-abaa-09f9482fdaa1:hover {background-color: rgba(21, 44, 78, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-c59bd174-b935-4888-abaa-09f9482fdaa1:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-c59bd174-b935-4888-abaa-09f9482fdaa1 {
  margin-bottom: 30px;
}
}

  #s-c59bd174-b935-4888-abaa-09f9482fdaa1-root {
    text-align: center;
  }


#s-c59bd174-b935-4888-abaa-09f9482fdaa1.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c59bd174-b935-4888-abaa-09f9482fdaa1-root {
    text-align: center;
  }


#s-c59bd174-b935-4888-abaa-09f9482fdaa1.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c59bd174-b935-4888-abaa-09f9482fdaa1-root {
    text-align: center;
  }


#s-c59bd174-b935-4888-abaa-09f9482fdaa1.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c59bd174-b935-4888-abaa-09f9482fdaa1-root {
    text-align: center;
  }


#s-c59bd174-b935-4888-abaa-09f9482fdaa1.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c59bd174-b935-4888-abaa-09f9482fdaa1-root {
    text-align: center;
  }


#s-c59bd174-b935-4888-abaa-09f9482fdaa1.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-cf3c6013-aa12-4a8b-8b90-78fd0ae1cb4d {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
min-height: 50px;
}








#s-cf3c6013-aa12-4a8b-8b90-78fd0ae1cb4d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cf3c6013-aa12-4a8b-8b90-78fd0ae1cb4d {
  cursor: pointer;
}#s-cf3c6013-aa12-4a8b-8b90-78fd0ae1cb4d.shg-box.shg-c {
  justify-content: center;
}

#s-514b3522-2806-4820-909a-98e0b3c8ce9d {
  margin-left: auto;
margin-right: auto;
max-width: 2600px;
aspect-ratio: 2600/1103;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-514b3522-2806-4820-909a-98e0b3c8ce9d {
  max-width: 2600px;
aspect-ratio: 2600/1103;
}
}@media (min-width: 768px) and (max-width: 991px){#s-514b3522-2806-4820-909a-98e0b3c8ce9d {
  max-width: 2600px;
aspect-ratio: 2600/1103;
}
}@media (max-width: 767px){#s-514b3522-2806-4820-909a-98e0b3c8ce9d {
  display: none;
}
#s-514b3522-2806-4820-909a-98e0b3c8ce9d, #wrap-s-514b3522-2806-4820-909a-98e0b3c8ce9d { display: none !important; }}


.shg-image-margin-container-s-514b3522-2806-4820-909a-98e0b3c8ce9d {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-514b3522-2806-4820-909a-98e0b3c8ce9d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-514b3522-2806-4820-909a-98e0b3c8ce9d .shg-image-content-wrapper {
      aspect-ratio: 2600/1103;
      min-width: 100%;
      height: auto;
    }

    #s-514b3522-2806-4820-909a-98e0b3c8ce9d .shogun-image-link {
      aspect-ratio: 2600/1103;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-514b3522-2806-4820-909a-98e0b3c8ce9d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-514b3522-2806-4820-909a-98e0b3c8ce9d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2600px;
  }



  img.s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image {
    
    
    
    max-height: 2600px;
  }


.s-514b3522-2806-4820-909a-98e0b3c8ce9d .shogun-image-content {
  
    align-items: center;
  
}

.s-514b3522-2806-4820-909a-98e0b3c8ce9d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-514b3522-2806-4820-909a-98e0b3c8ce9d {
      --shg-aspect-ratio: calc(2600/1103); 
    }

    .s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container {
      position: relative;
    }

    .s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-514b3522-2806-4820-909a-98e0b3c8ce9d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2600px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-514b3522-2806-4820-909a-98e0b3c8ce9d {
  
  
  
  
}

#s-514b3522-2806-4820-909a-98e0b3c8ce9d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-514b3522-2806-4820-909a-98e0b3c8ce9d .shg-image-content-wrapper {
      aspect-ratio: 2600/1103;
      min-width: 100%;
      height: auto;
    }

    #s-514b3522-2806-4820-909a-98e0b3c8ce9d .shogun-image-link {
      aspect-ratio: 2600/1103;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-514b3522-2806-4820-909a-98e0b3c8ce9d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-514b3522-2806-4820-909a-98e0b3c8ce9d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2600px;
  }



  img.s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image {
    
    
    
    max-height: 2600px;
  }


.s-514b3522-2806-4820-909a-98e0b3c8ce9d .shogun-image-content {
  
    align-items: center;
  
}

.s-514b3522-2806-4820-909a-98e0b3c8ce9d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-514b3522-2806-4820-909a-98e0b3c8ce9d {
      --shg-aspect-ratio: calc(2600/1103); 
    }

    .s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container {
      position: relative;
    }

    .s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-514b3522-2806-4820-909a-98e0b3c8ce9d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2600px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-514b3522-2806-4820-909a-98e0b3c8ce9d {
  
  
  
  
}

#s-514b3522-2806-4820-909a-98e0b3c8ce9d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-514b3522-2806-4820-909a-98e0b3c8ce9d .shg-image-content-wrapper {
      aspect-ratio: 2600/1103;
      min-width: 100%;
      height: auto;
    }

    #s-514b3522-2806-4820-909a-98e0b3c8ce9d .shogun-image-link {
      aspect-ratio: 2600/1103;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-514b3522-2806-4820-909a-98e0b3c8ce9d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-514b3522-2806-4820-909a-98e0b3c8ce9d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2600px;
  }



  img.s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image {
    
    
    
    max-height: 2600px;
  }


.s-514b3522-2806-4820-909a-98e0b3c8ce9d .shogun-image-content {
  
    align-items: center;
  
}

.s-514b3522-2806-4820-909a-98e0b3c8ce9d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-514b3522-2806-4820-909a-98e0b3c8ce9d {
      --shg-aspect-ratio: calc(2600/1103); 
    }

    .s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container {
      position: relative;
    }

    .s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-514b3522-2806-4820-909a-98e0b3c8ce9d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2600px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-514b3522-2806-4820-909a-98e0b3c8ce9d {
  
  
  
  
}

#s-514b3522-2806-4820-909a-98e0b3c8ce9d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-514b3522-2806-4820-909a-98e0b3c8ce9d .shg-image-content-wrapper {
      aspect-ratio: 2600/1103;
      min-width: 100%;
      height: auto;
    }

    #s-514b3522-2806-4820-909a-98e0b3c8ce9d .shogun-image-link {
      aspect-ratio: 2600/1103;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-514b3522-2806-4820-909a-98e0b3c8ce9d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-514b3522-2806-4820-909a-98e0b3c8ce9d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2600px;
  }



  img.s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image {
    
    
    
    max-height: 2600px;
  }


.s-514b3522-2806-4820-909a-98e0b3c8ce9d .shogun-image-content {
  
    align-items: center;
  
}

.s-514b3522-2806-4820-909a-98e0b3c8ce9d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-514b3522-2806-4820-909a-98e0b3c8ce9d {
      --shg-aspect-ratio: calc(2600/1103); 
    }

    .s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container {
      position: relative;
    }

    .s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-514b3522-2806-4820-909a-98e0b3c8ce9d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2600px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-514b3522-2806-4820-909a-98e0b3c8ce9d {
  
  
  
  
}

#s-514b3522-2806-4820-909a-98e0b3c8ce9d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-514b3522-2806-4820-909a-98e0b3c8ce9d .shg-image-content-wrapper {
      aspect-ratio: 2600/1103;
      min-width: 100%;
      height: auto;
    }

    #s-514b3522-2806-4820-909a-98e0b3c8ce9d .shogun-image-link {
      aspect-ratio: 2600/1103;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-514b3522-2806-4820-909a-98e0b3c8ce9d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-514b3522-2806-4820-909a-98e0b3c8ce9d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2600px;
  }



  img.s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image {
    
    
    
    max-height: 2600px;
  }


.s-514b3522-2806-4820-909a-98e0b3c8ce9d .shogun-image-content {
  
    align-items: center;
  
}

.s-514b3522-2806-4820-909a-98e0b3c8ce9d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-514b3522-2806-4820-909a-98e0b3c8ce9d {
      --shg-aspect-ratio: calc(2600/1103); 
    }

    .s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container {
      position: relative;
    }

    .s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-514b3522-2806-4820-909a-98e0b3c8ce9d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-514b3522-2806-4820-909a-98e0b3c8ce9d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2600px;
    }
  }

}
#s-c08f12ce-b6ac-4f70-a6fe-31e18fc52b83 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-c08f12ce-b6ac-4f70-a6fe-31e18fc52b83 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c08f12ce-b6ac-4f70-a6fe-31e18fc52b83.shg-box.shg-c {
  justify-content: center;
}

#s-4fad8123-6860-4072-8c06-2ee8a1c44cd8 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4fad8123-6860-4072-8c06-2ee8a1c44cd8 .shogun-heading-component h1 {
  color: rgba(21, 44, 78, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 22px;
  
  letter-spacing: 0.2px;
  
}



#s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f {
  margin-left: 24%;
margin-right: 24%;
max-width: 1160px;
aspect-ratio: 1160/352;
text-align: center;
}



.shg-image-margin-container-s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f {
  margin-left: 24%;
  margin-right: 24%;
  
  
}

#s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f .shg-image-content-wrapper {
      aspect-ratio: 1160/352;
      min-width: 100%;
      height: auto;
    }

    #s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f .shogun-image-link {
      aspect-ratio: 1160/352;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1160px;
  }



  img.s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image {
    
    
    
    max-height: 1160px;
  }


.s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f .shogun-image-content {
  
    align-items: center;
  
}

.s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f {
      --shg-aspect-ratio: calc(1160/352); 
    }

    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container {
      position: relative;
    }

    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1160px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f {
  
  
  
  
}

#s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f .shg-image-content-wrapper {
      aspect-ratio: 1160/352;
      min-width: 100%;
      height: auto;
    }

    #s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f .shogun-image-link {
      aspect-ratio: 1160/352;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1160px;
  }



  img.s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image {
    
    
    
    max-height: 1160px;
  }


.s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f .shogun-image-content {
  
    align-items: center;
  
}

.s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f {
      --shg-aspect-ratio: calc(1160/352); 
    }

    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container {
      position: relative;
    }

    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1160px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f {
  
  
  
  
}

#s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f .shg-image-content-wrapper {
      aspect-ratio: 1160/352;
      min-width: 100%;
      height: auto;
    }

    #s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f .shogun-image-link {
      aspect-ratio: 1160/352;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1160px;
  }



  img.s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image {
    
    
    
    max-height: 1160px;
  }


.s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f .shogun-image-content {
  
    align-items: center;
  
}

.s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f {
      --shg-aspect-ratio: calc(1160/352); 
    }

    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container {
      position: relative;
    }

    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1160px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f {
  
  
  
  
}

#s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f .shg-image-content-wrapper {
      aspect-ratio: 1160/352;
      min-width: 100%;
      height: auto;
    }

    #s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f .shogun-image-link {
      aspect-ratio: 1160/352;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1160px;
  }



  img.s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image {
    
    
    
    max-height: 1160px;
  }


.s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f .shogun-image-content {
  
    align-items: center;
  
}

.s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f {
      --shg-aspect-ratio: calc(1160/352); 
    }

    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container {
      position: relative;
    }

    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1160px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f {
  
  
  
  
}

#s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f .shg-image-content-wrapper {
      aspect-ratio: 1160/352;
      min-width: 100%;
      height: auto;
    }

    #s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f .shogun-image-link {
      aspect-ratio: 1160/352;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1160px;
  }



  img.s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image {
    
    
    
    max-height: 1160px;
  }


.s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f .shogun-image-content {
  
    align-items: center;
  
}

.s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f {
      --shg-aspect-ratio: calc(1160/352); 
    }

    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container {
      position: relative;
    }

    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-54ecf536-bdf2-4b5b-9c13-3938e2fac06f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1160px;
    }
  }

}
#s-d808269b-de8b-424b-994b-74d76d8eea1b {
  margin-top: 7px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
padding-top: 7px;
padding-left: 20px;
padding-bottom: 7px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(42, 96, 69, 1);
text-align: center;
text-decoration: none;
letter-spacing: 0px;
line-height: 1.5em;
background-image: none;
hover-type: color;
}
#s-d808269b-de8b-424b-994b-74d76d8eea1b:hover {background-color: rgba(21, 44, 78, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-d808269b-de8b-424b-994b-74d76d8eea1b:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-d808269b-de8b-424b-994b-74d76d8eea1b-root {
    text-align: center;
  }


#s-d808269b-de8b-424b-994b-74d76d8eea1b.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d808269b-de8b-424b-994b-74d76d8eea1b-root {
    text-align: center;
  }


#s-d808269b-de8b-424b-994b-74d76d8eea1b.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d808269b-de8b-424b-994b-74d76d8eea1b-root {
    text-align: center;
  }


#s-d808269b-de8b-424b-994b-74d76d8eea1b.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d808269b-de8b-424b-994b-74d76d8eea1b-root {
    text-align: center;
  }


#s-d808269b-de8b-424b-994b-74d76d8eea1b.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d808269b-de8b-424b-994b-74d76d8eea1b-root {
    text-align: center;
  }


#s-d808269b-de8b-424b-994b-74d76d8eea1b.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-60b0c52b-52c7-443a-91b9-eb182a89d55c {
  margin-left: auto;
margin-right: auto;
text-align: center;
}
@media (min-width: 1200px){#s-60b0c52b-52c7-443a-91b9-eb182a89d55c {
  display: none;
}
#s-60b0c52b-52c7-443a-91b9-eb182a89d55c, #wrap-s-60b0c52b-52c7-443a-91b9-eb182a89d55c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-60b0c52b-52c7-443a-91b9-eb182a89d55c {
  display: none;
}
#s-60b0c52b-52c7-443a-91b9-eb182a89d55c, #wrap-s-60b0c52b-52c7-443a-91b9-eb182a89d55c { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-60b0c52b-52c7-443a-91b9-eb182a89d55c {
  display: none;
}
#s-60b0c52b-52c7-443a-91b9-eb182a89d55c, #wrap-s-60b0c52b-52c7-443a-91b9-eb182a89d55c { display: none !important; }}


.shg-image-margin-container-s-60b0c52b-52c7-443a-91b9-eb182a89d55c {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-60b0c52b-52c7-443a-91b9-eb182a89d55c {
  margin: 0 !important;
}





  img.s-60b0c52b-52c7-443a-91b9-eb182a89d55c.shogun-image {
    
    
    
    
  }


.s-60b0c52b-52c7-443a-91b9-eb182a89d55c .shogun-image-content {
  
    align-items: center;
  
}

.s-60b0c52b-52c7-443a-91b9-eb182a89d55c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60b0c52b-52c7-443a-91b9-eb182a89d55c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60b0c52b-52c7-443a-91b9-eb182a89d55c.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-60b0c52b-52c7-443a-91b9-eb182a89d55c {
  
  
  
  
}

#s-60b0c52b-52c7-443a-91b9-eb182a89d55c {
  margin: 0 !important;
}





  img.s-60b0c52b-52c7-443a-91b9-eb182a89d55c.shogun-image {
    
    
    
    
  }


.s-60b0c52b-52c7-443a-91b9-eb182a89d55c .shogun-image-content {
  
    align-items: center;
  
}

.s-60b0c52b-52c7-443a-91b9-eb182a89d55c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60b0c52b-52c7-443a-91b9-eb182a89d55c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60b0c52b-52c7-443a-91b9-eb182a89d55c.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-60b0c52b-52c7-443a-91b9-eb182a89d55c {
  
  
  
  
}

#s-60b0c52b-52c7-443a-91b9-eb182a89d55c {
  margin: 0 !important;
}





  img.s-60b0c52b-52c7-443a-91b9-eb182a89d55c.shogun-image {
    
    
    
    
  }


.s-60b0c52b-52c7-443a-91b9-eb182a89d55c .shogun-image-content {
  
    align-items: center;
  
}

.s-60b0c52b-52c7-443a-91b9-eb182a89d55c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60b0c52b-52c7-443a-91b9-eb182a89d55c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60b0c52b-52c7-443a-91b9-eb182a89d55c.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-60b0c52b-52c7-443a-91b9-eb182a89d55c {
  
  
  
  
}

#s-60b0c52b-52c7-443a-91b9-eb182a89d55c {
  margin: 0 !important;
}





  img.s-60b0c52b-52c7-443a-91b9-eb182a89d55c.shogun-image {
    
    
    
    
  }


.s-60b0c52b-52c7-443a-91b9-eb182a89d55c .shogun-image-content {
  
    align-items: center;
  
}

.s-60b0c52b-52c7-443a-91b9-eb182a89d55c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60b0c52b-52c7-443a-91b9-eb182a89d55c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60b0c52b-52c7-443a-91b9-eb182a89d55c.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){

.shg-image-margin-container-s-60b0c52b-52c7-443a-91b9-eb182a89d55c {
  
  
  
  
}

#s-60b0c52b-52c7-443a-91b9-eb182a89d55c {
  margin: 0 !important;
}





  img.s-60b0c52b-52c7-443a-91b9-eb182a89d55c.shogun-image {
    
    
    
    
  }


.s-60b0c52b-52c7-443a-91b9-eb182a89d55c .shogun-image-content {
  
    align-items: center;
  
}

.s-60b0c52b-52c7-443a-91b9-eb182a89d55c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60b0c52b-52c7-443a-91b9-eb182a89d55c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60b0c52b-52c7-443a-91b9-eb182a89d55c.shogun-image {
  box-sizing: border-box;
}




}
#s-12401c00-e00e-4b13-b1f4-14cf30c529e3 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-12401c00-e00e-4b13-b1f4-14cf30c529e3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-12401c00-e00e-4b13-b1f4-14cf30c529e3.shg-box.shg-c {
  justify-content: center;
}

#s-30c76027-8023-4e45-8808-f93e2b0434fe {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-30c76027-8023-4e45-8808-f93e2b0434fe {
  padding-top: 0px;
}
}
#s-30c76027-8023-4e45-8808-f93e2b0434fe .shogun-heading-component h1 {
  color: rgba(127, 14, 125, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 22px;
  
  letter-spacing: 0.2px;
  
}


@media (max-width: 767px){#s-30c76027-8023-4e45-8808-f93e2b0434fe .shogun-heading-component h1 {
  color: rgba(21, 44, 78, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.2px;
  
}


}
#s-f1025cce-4ea9-41bf-b9aa-602535ff0afc {
  margin-left: 24%;
margin-right: 24%;
max-width: 1160px;
aspect-ratio: 1160/352;
text-align: center;
}
@media (max-width: 767px){#s-f1025cce-4ea9-41bf-b9aa-602535ff0afc {
  margin-left: 21%;
margin-right: 21%;
}
}


.shg-image-margin-container-s-f1025cce-4ea9-41bf-b9aa-602535ff0afc {
  margin-left: 24%;
  margin-right: 24%;
  
  
}

#s-f1025cce-4ea9-41bf-b9aa-602535ff0afc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f1025cce-4ea9-41bf-b9aa-602535ff0afc .shg-image-content-wrapper {
      aspect-ratio: 1160/352;
      min-width: 100%;
      height: auto;
    }

    #s-f1025cce-4ea9-41bf-b9aa-602535ff0afc .shogun-image-link {
      aspect-ratio: 1160/352;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f1025cce-4ea9-41bf-b9aa-602535ff0afc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f1025cce-4ea9-41bf-b9aa-602535ff0afc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1160px;
  }



  img.s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image {
    
    
    
    max-height: 1160px;
  }


.s-f1025cce-4ea9-41bf-b9aa-602535ff0afc .shogun-image-content {
  
    align-items: center;
  
}

.s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc {
      --shg-aspect-ratio: calc(1160/352); 
    }

    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container {
      position: relative;
    }

    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1160px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-f1025cce-4ea9-41bf-b9aa-602535ff0afc {
  
  
  
  
}

#s-f1025cce-4ea9-41bf-b9aa-602535ff0afc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f1025cce-4ea9-41bf-b9aa-602535ff0afc .shg-image-content-wrapper {
      aspect-ratio: 1160/352;
      min-width: 100%;
      height: auto;
    }

    #s-f1025cce-4ea9-41bf-b9aa-602535ff0afc .shogun-image-link {
      aspect-ratio: 1160/352;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f1025cce-4ea9-41bf-b9aa-602535ff0afc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f1025cce-4ea9-41bf-b9aa-602535ff0afc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1160px;
  }



  img.s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image {
    
    
    
    max-height: 1160px;
  }


.s-f1025cce-4ea9-41bf-b9aa-602535ff0afc .shogun-image-content {
  
    align-items: center;
  
}

.s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc {
      --shg-aspect-ratio: calc(1160/352); 
    }

    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container {
      position: relative;
    }

    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1160px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-f1025cce-4ea9-41bf-b9aa-602535ff0afc {
  
  
  
  
}

#s-f1025cce-4ea9-41bf-b9aa-602535ff0afc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f1025cce-4ea9-41bf-b9aa-602535ff0afc .shg-image-content-wrapper {
      aspect-ratio: 1160/352;
      min-width: 100%;
      height: auto;
    }

    #s-f1025cce-4ea9-41bf-b9aa-602535ff0afc .shogun-image-link {
      aspect-ratio: 1160/352;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f1025cce-4ea9-41bf-b9aa-602535ff0afc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f1025cce-4ea9-41bf-b9aa-602535ff0afc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1160px;
  }



  img.s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image {
    
    
    
    max-height: 1160px;
  }


.s-f1025cce-4ea9-41bf-b9aa-602535ff0afc .shogun-image-content {
  
    align-items: center;
  
}

.s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc {
      --shg-aspect-ratio: calc(1160/352); 
    }

    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container {
      position: relative;
    }

    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1160px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-f1025cce-4ea9-41bf-b9aa-602535ff0afc {
  
  
  
  
}

#s-f1025cce-4ea9-41bf-b9aa-602535ff0afc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f1025cce-4ea9-41bf-b9aa-602535ff0afc .shg-image-content-wrapper {
      aspect-ratio: 1160/352;
      min-width: 100%;
      height: auto;
    }

    #s-f1025cce-4ea9-41bf-b9aa-602535ff0afc .shogun-image-link {
      aspect-ratio: 1160/352;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f1025cce-4ea9-41bf-b9aa-602535ff0afc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f1025cce-4ea9-41bf-b9aa-602535ff0afc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1160px;
  }



  img.s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image {
    
    
    
    max-height: 1160px;
  }


.s-f1025cce-4ea9-41bf-b9aa-602535ff0afc .shogun-image-content {
  
    align-items: center;
  
}

.s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc {
      --shg-aspect-ratio: calc(1160/352); 
    }

    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container {
      position: relative;
    }

    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1160px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-f1025cce-4ea9-41bf-b9aa-602535ff0afc {
  margin-left: 21%;
  margin-right: 21%;
  
  
}

#s-f1025cce-4ea9-41bf-b9aa-602535ff0afc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f1025cce-4ea9-41bf-b9aa-602535ff0afc .shg-image-content-wrapper {
      aspect-ratio: 1160/352;
      min-width: 100%;
      height: auto;
    }

    #s-f1025cce-4ea9-41bf-b9aa-602535ff0afc .shogun-image-link {
      aspect-ratio: 1160/352;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f1025cce-4ea9-41bf-b9aa-602535ff0afc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f1025cce-4ea9-41bf-b9aa-602535ff0afc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1160px;
  }



  img.s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image {
    
    
    
    max-height: 1160px;
  }


.s-f1025cce-4ea9-41bf-b9aa-602535ff0afc .shogun-image-content {
  
    align-items: center;
  
}

.s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc {
      --shg-aspect-ratio: calc(1160/352); 
    }

    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container {
      position: relative;
    }

    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f1025cce-4ea9-41bf-b9aa-602535ff0afc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1160px;
    }
  }

}
#s-0d00b300-2859-41f4-a507-3b62a0cf8e28 {
  margin-top: 7px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
padding-top: 7px;
padding-left: 20px;
padding-bottom: 7px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(42, 96, 69, 1);
text-align: center;
text-decoration: none;
letter-spacing: 0px;
line-height: 1.5em;
background-image: none;
hover-type: color;
}
#s-0d00b300-2859-41f4-a507-3b62a0cf8e28:hover {background-color: rgba(127, 14, 125, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-0d00b300-2859-41f4-a507-3b62a0cf8e28:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-0d00b300-2859-41f4-a507-3b62a0cf8e28-root {
    text-align: center;
  }


#s-0d00b300-2859-41f4-a507-3b62a0cf8e28.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-0d00b300-2859-41f4-a507-3b62a0cf8e28-root {
    text-align: center;
  }


#s-0d00b300-2859-41f4-a507-3b62a0cf8e28.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0d00b300-2859-41f4-a507-3b62a0cf8e28-root {
    text-align: center;
  }


#s-0d00b300-2859-41f4-a507-3b62a0cf8e28.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0d00b300-2859-41f4-a507-3b62a0cf8e28-root {
    text-align: center;
  }


#s-0d00b300-2859-41f4-a507-3b62a0cf8e28.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-0d00b300-2859-41f4-a507-3b62a0cf8e28-root {
    text-align: center;
  }


#s-0d00b300-2859-41f4-a507-3b62a0cf8e28.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-056d209f-41ec-4c2d-bdd3-d98e64024700 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 0);
}
@media (max-width: 767px){#s-056d209f-41ec-4c2d-bdd3-d98e64024700 {
  background-color: rgba(255, 255, 255, 0);
}
}







#s-056d209f-41ec-4c2d-bdd3-d98e64024700 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-056d209f-41ec-4c2d-bdd3-d98e64024700 {
  cursor: pointer;
}#s-056d209f-41ec-4c2d-bdd3-d98e64024700.shg-box.shg-c {
  justify-content: center;
}

#s-ca884442-28b9-4c39-8d31-561581ec4c62 {
  background-repeat: no-repeat;
background-size: cover;
margin-left: auto;
margin-right: auto;
min-height: 50px;
background-position: center bottom;
}
@media (min-width: 1200px){#s-ca884442-28b9-4c39-8d31-561581ec4c62 {
  display: none;
}
#s-ca884442-28b9-4c39-8d31-561581ec4c62, #wrap-s-ca884442-28b9-4c39-8d31-561581ec4c62 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ca884442-28b9-4c39-8d31-561581ec4c62 {
  display: none;
}
#s-ca884442-28b9-4c39-8d31-561581ec4c62, #wrap-s-ca884442-28b9-4c39-8d31-561581ec4c62 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ca884442-28b9-4c39-8d31-561581ec4c62 {
  display: none;
}
#s-ca884442-28b9-4c39-8d31-561581ec4c62, #wrap-s-ca884442-28b9-4c39-8d31-561581ec4c62 { display: none !important; }}@media (max-width: 767px){#s-ca884442-28b9-4c39-8d31-561581ec4c62 {
  
}
}
#s-ca884442-28b9-4c39-8d31-561581ec4c62 {
  background-image: url(https://i.shgcdn.com/c1c786b0-c7a2-440e-8b79-94dcd594adef/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-ca884442-28b9-4c39-8d31-561581ec4c62 {
  background-image: url(https://i.shgcdn.com/c1c786b0-c7a2-440e-8b79-94dcd594adef/-/resize/480x/);
}
#s-ca884442-28b9-4c39-8d31-561581ec4c62.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-ca884442-28b9-4c39-8d31-561581ec4c62 {
  background-image: url(https://i.shgcdn.com/c1c786b0-c7a2-440e-8b79-94dcd594adef/-/resize/960x/);
}
#s-ca884442-28b9-4c39-8d31-561581ec4c62.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-ca884442-28b9-4c39-8d31-561581ec4c62 {
  background-image: url(https://i.shgcdn.com/c1c786b0-c7a2-440e-8b79-94dcd594adef/-/resize/768x/);
}
#s-ca884442-28b9-4c39-8d31-561581ec4c62.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-ca884442-28b9-4c39-8d31-561581ec4c62 {
  background-image: url(https://i.shgcdn.com/c1c786b0-c7a2-440e-8b79-94dcd594adef/-/resize/1536x/);
}
#s-ca884442-28b9-4c39-8d31-561581ec4c62.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-ca884442-28b9-4c39-8d31-561581ec4c62 {
  background-image: url(https://i.shgcdn.com/c1c786b0-c7a2-440e-8b79-94dcd594adef/-/resize/1024x/);
}
#s-ca884442-28b9-4c39-8d31-561581ec4c62.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-ca884442-28b9-4c39-8d31-561581ec4c62 {
  background-image: url(https://i.shgcdn.com/c1c786b0-c7a2-440e-8b79-94dcd594adef/-/resize/2048x/);
}
#s-ca884442-28b9-4c39-8d31-561581ec4c62.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-ca884442-28b9-4c39-8d31-561581ec4c62 {
  background-image: url(https://i.shgcdn.com/c1c786b0-c7a2-440e-8b79-94dcd594adef/-/resize/1200x/);
}
#s-ca884442-28b9-4c39-8d31-561581ec4c62.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-ca884442-28b9-4c39-8d31-561581ec4c62 {
  background-image: url(https://i.shgcdn.com/c1c786b0-c7a2-440e-8b79-94dcd594adef/-/resize/2048x/);
}
#s-ca884442-28b9-4c39-8d31-561581ec4c62.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-ca884442-28b9-4c39-8d31-561581ec4c62 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ca884442-28b9-4c39-8d31-561581ec4c62.shg-box.shg-c {
  justify-content: center;
}

#s-2cab4529-c24b-4290-a778-0cf072d35076 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-2cab4529-c24b-4290-a778-0cf072d35076 {
  display: none;
}
#s-2cab4529-c24b-4290-a778-0cf072d35076, #wrap-s-2cab4529-c24b-4290-a778-0cf072d35076 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2cab4529-c24b-4290-a778-0cf072d35076 {
  display: none;
}
#s-2cab4529-c24b-4290-a778-0cf072d35076, #wrap-s-2cab4529-c24b-4290-a778-0cf072d35076 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2cab4529-c24b-4290-a778-0cf072d35076 {
  display: none;
}
#s-2cab4529-c24b-4290-a778-0cf072d35076, #wrap-s-2cab4529-c24b-4290-a778-0cf072d35076 { display: none !important; }}
#s-2cab4529-c24b-4290-a778-0cf072d35076 .shogun-heading-component h1 {
  color: rgba(127, 14, 125, 1);
  font-weight:  600 ;
  font-family: "Lora";
  font-style:  normal ;
  
  
  
  
}


@media (max-width: 767px){#s-2cab4529-c24b-4290-a778-0cf072d35076 .shogun-heading-component h1 {
  color: rgba(21, 44, 78, 1);
  font-weight:  600 ;
  font-family: "Lora";
  font-style:  normal ;
  font-size: 38px;
  
  
  
}


}
#s-00e22a50-d4ae-4247-b014-66df2a045da1 {
  margin-left: auto;
margin-right: auto;
max-width: 1459px;
aspect-ratio: 1459/1141;
text-align: center;
}
@media (min-width: 1200px){#s-00e22a50-d4ae-4247-b014-66df2a045da1 {
  display: none;
}
#s-00e22a50-d4ae-4247-b014-66df2a045da1, #wrap-s-00e22a50-d4ae-4247-b014-66df2a045da1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-00e22a50-d4ae-4247-b014-66df2a045da1 {
  display: none;
}
#s-00e22a50-d4ae-4247-b014-66df2a045da1, #wrap-s-00e22a50-d4ae-4247-b014-66df2a045da1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-00e22a50-d4ae-4247-b014-66df2a045da1 {
  display: none;
}
#s-00e22a50-d4ae-4247-b014-66df2a045da1, #wrap-s-00e22a50-d4ae-4247-b014-66df2a045da1 { display: none !important; }}


.shg-image-margin-container-s-00e22a50-d4ae-4247-b014-66df2a045da1 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-00e22a50-d4ae-4247-b014-66df2a045da1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-00e22a50-d4ae-4247-b014-66df2a045da1 .shg-image-content-wrapper {
      aspect-ratio: 1459/1141;
      min-width: 100%;
      height: auto;
    }

    #s-00e22a50-d4ae-4247-b014-66df2a045da1 .shogun-image-link {
      aspect-ratio: 1459/1141;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-00e22a50-d4ae-4247-b014-66df2a045da1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-00e22a50-d4ae-4247-b014-66df2a045da1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1459px;
  }



  img.s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image {
    
    
    
    max-height: 1459px;
  }


.s-00e22a50-d4ae-4247-b014-66df2a045da1 .shogun-image-content {
  
    align-items: center;
  
}

.s-00e22a50-d4ae-4247-b014-66df2a045da1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-00e22a50-d4ae-4247-b014-66df2a045da1 {
      --shg-aspect-ratio: calc(1459/1141); 
    }

    .s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container {
      position: relative;
    }

    .s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-00e22a50-d4ae-4247-b014-66df2a045da1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1459px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-00e22a50-d4ae-4247-b014-66df2a045da1 {
  
  
  
  
}

#s-00e22a50-d4ae-4247-b014-66df2a045da1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-00e22a50-d4ae-4247-b014-66df2a045da1 .shg-image-content-wrapper {
      aspect-ratio: 1459/1141;
      min-width: 100%;
      height: auto;
    }

    #s-00e22a50-d4ae-4247-b014-66df2a045da1 .shogun-image-link {
      aspect-ratio: 1459/1141;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-00e22a50-d4ae-4247-b014-66df2a045da1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-00e22a50-d4ae-4247-b014-66df2a045da1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1459px;
  }



  img.s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image {
    
    
    
    max-height: 1459px;
  }


.s-00e22a50-d4ae-4247-b014-66df2a045da1 .shogun-image-content {
  
    align-items: center;
  
}

.s-00e22a50-d4ae-4247-b014-66df2a045da1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-00e22a50-d4ae-4247-b014-66df2a045da1 {
      --shg-aspect-ratio: calc(1459/1141); 
    }

    .s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container {
      position: relative;
    }

    .s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-00e22a50-d4ae-4247-b014-66df2a045da1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1459px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-00e22a50-d4ae-4247-b014-66df2a045da1 {
  
  
  
  
}

#s-00e22a50-d4ae-4247-b014-66df2a045da1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-00e22a50-d4ae-4247-b014-66df2a045da1 .shg-image-content-wrapper {
      aspect-ratio: 1459/1141;
      min-width: 100%;
      height: auto;
    }

    #s-00e22a50-d4ae-4247-b014-66df2a045da1 .shogun-image-link {
      aspect-ratio: 1459/1141;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-00e22a50-d4ae-4247-b014-66df2a045da1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-00e22a50-d4ae-4247-b014-66df2a045da1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1459px;
  }



  img.s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image {
    
    
    
    max-height: 1459px;
  }


.s-00e22a50-d4ae-4247-b014-66df2a045da1 .shogun-image-content {
  
    align-items: center;
  
}

.s-00e22a50-d4ae-4247-b014-66df2a045da1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-00e22a50-d4ae-4247-b014-66df2a045da1 {
      --shg-aspect-ratio: calc(1459/1141); 
    }

    .s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container {
      position: relative;
    }

    .s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-00e22a50-d4ae-4247-b014-66df2a045da1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1459px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-00e22a50-d4ae-4247-b014-66df2a045da1 {
  
  
  
  
}

#s-00e22a50-d4ae-4247-b014-66df2a045da1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-00e22a50-d4ae-4247-b014-66df2a045da1 .shg-image-content-wrapper {
      aspect-ratio: 1459/1141;
      min-width: 100%;
      height: auto;
    }

    #s-00e22a50-d4ae-4247-b014-66df2a045da1 .shogun-image-link {
      aspect-ratio: 1459/1141;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-00e22a50-d4ae-4247-b014-66df2a045da1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-00e22a50-d4ae-4247-b014-66df2a045da1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1459px;
  }



  img.s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image {
    
    
    
    max-height: 1459px;
  }


.s-00e22a50-d4ae-4247-b014-66df2a045da1 .shogun-image-content {
  
    align-items: center;
  
}

.s-00e22a50-d4ae-4247-b014-66df2a045da1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-00e22a50-d4ae-4247-b014-66df2a045da1 {
      --shg-aspect-ratio: calc(1459/1141); 
    }

    .s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container {
      position: relative;
    }

    .s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-00e22a50-d4ae-4247-b014-66df2a045da1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1459px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-00e22a50-d4ae-4247-b014-66df2a045da1 {
  
  
  
  
}

#s-00e22a50-d4ae-4247-b014-66df2a045da1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-00e22a50-d4ae-4247-b014-66df2a045da1 .shg-image-content-wrapper {
      aspect-ratio: 1459/1141;
      min-width: 100%;
      height: auto;
    }

    #s-00e22a50-d4ae-4247-b014-66df2a045da1 .shogun-image-link {
      aspect-ratio: 1459/1141;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-00e22a50-d4ae-4247-b014-66df2a045da1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-00e22a50-d4ae-4247-b014-66df2a045da1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1459px;
  }



  img.s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image {
    
    
    
    max-height: 1459px;
  }


.s-00e22a50-d4ae-4247-b014-66df2a045da1 .shogun-image-content {
  
    align-items: center;
  
}

.s-00e22a50-d4ae-4247-b014-66df2a045da1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-00e22a50-d4ae-4247-b014-66df2a045da1 {
      --shg-aspect-ratio: calc(1459/1141); 
    }

    .s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container {
      position: relative;
    }

    .s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-00e22a50-d4ae-4247-b014-66df2a045da1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-00e22a50-d4ae-4247-b014-66df2a045da1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1459px;
    }
  }

}
#s-77646a68-e8d8-462b-998a-a601cd5c3892 {
  margin-left: auto;
margin-right: auto;
max-width: 2706px;
aspect-ratio: 2706/1103;
text-align: center;
}
@media (max-width: 767px){#s-77646a68-e8d8-462b-998a-a601cd5c3892 {
  display: none;
}
#s-77646a68-e8d8-462b-998a-a601cd5c3892, #wrap-s-77646a68-e8d8-462b-998a-a601cd5c3892 { display: none !important; }}


.shg-image-margin-container-s-77646a68-e8d8-462b-998a-a601cd5c3892 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-77646a68-e8d8-462b-998a-a601cd5c3892 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77646a68-e8d8-462b-998a-a601cd5c3892 .shg-image-content-wrapper {
      aspect-ratio: 2706/1103;
      min-width: 100%;
      height: auto;
    }

    #s-77646a68-e8d8-462b-998a-a601cd5c3892 .shogun-image-link {
      aspect-ratio: 2706/1103;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77646a68-e8d8-462b-998a-a601cd5c3892 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77646a68-e8d8-462b-998a-a601cd5c3892 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2706px;
  }



  img.s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image {
    
    
    
    max-height: 2706px;
  }


.s-77646a68-e8d8-462b-998a-a601cd5c3892 .shogun-image-content {
  
    align-items: center;
  
}

.s-77646a68-e8d8-462b-998a-a601cd5c3892.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77646a68-e8d8-462b-998a-a601cd5c3892 {
      --shg-aspect-ratio: calc(2706/1103); 
    }

    .s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container {
      position: relative;
    }

    .s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77646a68-e8d8-462b-998a-a601cd5c3892 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2706px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-77646a68-e8d8-462b-998a-a601cd5c3892 {
  
  
  
  
}

#s-77646a68-e8d8-462b-998a-a601cd5c3892 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77646a68-e8d8-462b-998a-a601cd5c3892 .shg-image-content-wrapper {
      aspect-ratio: 2706/1103;
      min-width: 100%;
      height: auto;
    }

    #s-77646a68-e8d8-462b-998a-a601cd5c3892 .shogun-image-link {
      aspect-ratio: 2706/1103;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77646a68-e8d8-462b-998a-a601cd5c3892 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77646a68-e8d8-462b-998a-a601cd5c3892 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2706px;
  }



  img.s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image {
    
    
    
    max-height: 2706px;
  }


.s-77646a68-e8d8-462b-998a-a601cd5c3892 .shogun-image-content {
  
    align-items: center;
  
}

.s-77646a68-e8d8-462b-998a-a601cd5c3892.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77646a68-e8d8-462b-998a-a601cd5c3892 {
      --shg-aspect-ratio: calc(2706/1103); 
    }

    .s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container {
      position: relative;
    }

    .s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77646a68-e8d8-462b-998a-a601cd5c3892 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2706px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-77646a68-e8d8-462b-998a-a601cd5c3892 {
  
  
  
  
}

#s-77646a68-e8d8-462b-998a-a601cd5c3892 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77646a68-e8d8-462b-998a-a601cd5c3892 .shg-image-content-wrapper {
      aspect-ratio: 2706/1103;
      min-width: 100%;
      height: auto;
    }

    #s-77646a68-e8d8-462b-998a-a601cd5c3892 .shogun-image-link {
      aspect-ratio: 2706/1103;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77646a68-e8d8-462b-998a-a601cd5c3892 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77646a68-e8d8-462b-998a-a601cd5c3892 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2706px;
  }



  img.s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image {
    
    
    
    max-height: 2706px;
  }


.s-77646a68-e8d8-462b-998a-a601cd5c3892 .shogun-image-content {
  
    align-items: center;
  
}

.s-77646a68-e8d8-462b-998a-a601cd5c3892.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77646a68-e8d8-462b-998a-a601cd5c3892 {
      --shg-aspect-ratio: calc(2706/1103); 
    }

    .s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container {
      position: relative;
    }

    .s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77646a68-e8d8-462b-998a-a601cd5c3892 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2706px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-77646a68-e8d8-462b-998a-a601cd5c3892 {
  
  
  
  
}

#s-77646a68-e8d8-462b-998a-a601cd5c3892 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77646a68-e8d8-462b-998a-a601cd5c3892 .shg-image-content-wrapper {
      aspect-ratio: 2706/1103;
      min-width: 100%;
      height: auto;
    }

    #s-77646a68-e8d8-462b-998a-a601cd5c3892 .shogun-image-link {
      aspect-ratio: 2706/1103;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77646a68-e8d8-462b-998a-a601cd5c3892 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77646a68-e8d8-462b-998a-a601cd5c3892 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2706px;
  }



  img.s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image {
    
    
    
    max-height: 2706px;
  }


.s-77646a68-e8d8-462b-998a-a601cd5c3892 .shogun-image-content {
  
    align-items: center;
  
}

.s-77646a68-e8d8-462b-998a-a601cd5c3892.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77646a68-e8d8-462b-998a-a601cd5c3892 {
      --shg-aspect-ratio: calc(2706/1103); 
    }

    .s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container {
      position: relative;
    }

    .s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77646a68-e8d8-462b-998a-a601cd5c3892 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2706px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-77646a68-e8d8-462b-998a-a601cd5c3892 {
  
  
  
  
}

#s-77646a68-e8d8-462b-998a-a601cd5c3892 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77646a68-e8d8-462b-998a-a601cd5c3892 .shg-image-content-wrapper {
      aspect-ratio: 2706/1103;
      min-width: 100%;
      height: auto;
    }

    #s-77646a68-e8d8-462b-998a-a601cd5c3892 .shogun-image-link {
      aspect-ratio: 2706/1103;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77646a68-e8d8-462b-998a-a601cd5c3892 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77646a68-e8d8-462b-998a-a601cd5c3892 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2706px;
  }



  img.s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image {
    
    
    
    max-height: 2706px;
  }


.s-77646a68-e8d8-462b-998a-a601cd5c3892 .shogun-image-content {
  
    align-items: center;
  
}

.s-77646a68-e8d8-462b-998a-a601cd5c3892.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77646a68-e8d8-462b-998a-a601cd5c3892 {
      --shg-aspect-ratio: calc(2706/1103); 
    }

    .s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container {
      position: relative;
    }

    .s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77646a68-e8d8-462b-998a-a601cd5c3892.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77646a68-e8d8-462b-998a-a601cd5c3892 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2706px;
    }
  }

}
#s-93f0d24d-baf7-40bc-931a-6d3b0403b554 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-93f0d24d-baf7-40bc-931a-6d3b0403b554 {
  display: none;
}
#s-93f0d24d-baf7-40bc-931a-6d3b0403b554, #wrap-s-93f0d24d-baf7-40bc-931a-6d3b0403b554 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-93f0d24d-baf7-40bc-931a-6d3b0403b554 {
  display: none;
}
#s-93f0d24d-baf7-40bc-931a-6d3b0403b554, #wrap-s-93f0d24d-baf7-40bc-931a-6d3b0403b554 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-93f0d24d-baf7-40bc-931a-6d3b0403b554 {
  display: none;
}
#s-93f0d24d-baf7-40bc-931a-6d3b0403b554, #wrap-s-93f0d24d-baf7-40bc-931a-6d3b0403b554 { display: none !important; }}







#s-93f0d24d-baf7-40bc-931a-6d3b0403b554 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-93f0d24d-baf7-40bc-931a-6d3b0403b554.shg-box.shg-c {
  justify-content: center;
}

#s-c68ab26a-541b-4d57-9259-bed87818590a {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c68ab26a-541b-4d57-9259-bed87818590a .shogun-heading-component h1 {
  color: rgba(247, 85, 135, 1);
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}


@media (max-width: 767px){#s-c68ab26a-541b-4d57-9259-bed87818590a .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-695f8c05-24af-432b-bbd2-9111b80427f3 {
  margin-top: 10px;
margin-left: 7%;
margin-bottom: 10px;
margin-right: 7%;
}
@media (min-width: 992px) and (max-width: 1199px){#s-695f8c05-24af-432b-bbd2-9111b80427f3 {
  margin-left: 2%;
margin-right: 2%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-695f8c05-24af-432b-bbd2-9111b80427f3 {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-695f8c05-24af-432b-bbd2-9111b80427f3 {
  margin-left: 1%;
margin-right: 1%;
}
}
@media (min-width: 0px) {
[id="s-695f8c05-24af-432b-bbd2-9111b80427f3"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-695f8c05-24af-432b-bbd2-9111b80427f3"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-695f8c05-24af-432b-bbd2-9111b80427f3"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-695f8c05-24af-432b-bbd2-9111b80427f3"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 7.5px);
}

}

#s-ede22cab-2301-4afd-b06e-2c21f62cbba1 {
  margin-left: auto;
margin-right: auto;
}

#s-b14456ff-953e-48e5-81d4-fab68e3ff648 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-b14456ff-953e-48e5-81d4-fab68e3ff648 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b14456ff-953e-48e5-81d4-fab68e3ff648 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-b14456ff-953e-48e5-81d4-fab68e3ff648 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b14456ff-953e-48e5-81d4-fab68e3ff648 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-b14456ff-953e-48e5-81d4-fab68e3ff648 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b14456ff-953e-48e5-81d4-fab68e3ff648 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-b14456ff-953e-48e5-81d4-fab68e3ff648 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b14456ff-953e-48e5-81d4-fab68e3ff648 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-b14456ff-953e-48e5-81d4-fab68e3ff648 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b14456ff-953e-48e5-81d4-fab68e3ff648 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-c5764a96-4cbd-4891-9de9-1a0cf076bcdd {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-c5764a96-4cbd-4891-9de9-1a0cf076bcdd .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 17px;
  
  
  
}
@media (min-width: 992px) and (max-width: 1199px){#s-c5764a96-4cbd-4891-9de9-1a0cf076bcdd .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-c5764a96-4cbd-4891-9de9-1a0cf076bcdd .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (max-width: 767px){#s-c5764a96-4cbd-4891-9de9-1a0cf076bcdd .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 14px;
  
  
  
}
}
#s-da1ee5f0-2f4b-4e93-8522-c680676a1219 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-da1ee5f0-2f4b-4e93-8522-c680676a1219 .shg-product-sold-out {
  display: none;
  color: rgba(153, 52, 150, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-da1ee5f0-2f4b-4e93-8522-c680676a1219 .shg-product-price {
  color: rgba(153, 52, 150, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-da1ee5f0-2f4b-4e93-8522-c680676a1219 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-da1ee5f0-2f4b-4e93-8522-c680676a1219 .shg-product-sold-out {
  display: none;
  color: rgba(153, 52, 150, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-da1ee5f0-2f4b-4e93-8522-c680676a1219 .shg-product-price {
  color: rgba(153, 52, 150, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-da1ee5f0-2f4b-4e93-8522-c680676a1219 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}@media (max-width: 767px){#s-da1ee5f0-2f4b-4e93-8522-c680676a1219 .shg-product-sold-out {
  display: none;
  color: rgba(21, 44, 78, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-da1ee5f0-2f4b-4e93-8522-c680676a1219 .shg-product-price {
  color: rgba(21, 44, 78, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-da1ee5f0-2f4b-4e93-8522-c680676a1219 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}
#s-d2a42c61-d38a-4923-b055-5fa45d09f0c7 {
  margin-left: auto;
margin-right: auto;
}

#s-01e7e9e2-8d0e-42ba-84fd-c37b397c0553 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-01e7e9e2-8d0e-42ba-84fd-c37b397c0553 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-01e7e9e2-8d0e-42ba-84fd-c37b397c0553 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-01e7e9e2-8d0e-42ba-84fd-c37b397c0553 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-01e7e9e2-8d0e-42ba-84fd-c37b397c0553 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-01e7e9e2-8d0e-42ba-84fd-c37b397c0553 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-01e7e9e2-8d0e-42ba-84fd-c37b397c0553 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-01e7e9e2-8d0e-42ba-84fd-c37b397c0553 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-01e7e9e2-8d0e-42ba-84fd-c37b397c0553 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-01e7e9e2-8d0e-42ba-84fd-c37b397c0553 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-01e7e9e2-8d0e-42ba-84fd-c37b397c0553 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-a23af32a-5e1d-448b-a606-7a39668d0739 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-a23af32a-5e1d-448b-a606-7a39668d0739 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 17px;
  
  
  
}
@media (min-width: 992px) and (max-width: 1199px){#s-a23af32a-5e1d-448b-a606-7a39668d0739 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a23af32a-5e1d-448b-a606-7a39668d0739 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (max-width: 767px){#s-a23af32a-5e1d-448b-a606-7a39668d0739 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 14px;
  
  
  
}
}
#s-886ba149-9e9f-4659-9aa3-c4546208d961 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-886ba149-9e9f-4659-9aa3-c4546208d961 .shg-product-sold-out {
  display: none;
  color: rgba(153, 52, 150, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-886ba149-9e9f-4659-9aa3-c4546208d961 .shg-product-price {
  color: rgba(153, 52, 150, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-886ba149-9e9f-4659-9aa3-c4546208d961 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-886ba149-9e9f-4659-9aa3-c4546208d961 .shg-product-sold-out {
  display: none;
  color: rgba(153, 52, 150, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-886ba149-9e9f-4659-9aa3-c4546208d961 .shg-product-price {
  color: rgba(153, 52, 150, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-886ba149-9e9f-4659-9aa3-c4546208d961 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}@media (max-width: 767px){#s-886ba149-9e9f-4659-9aa3-c4546208d961 .shg-product-sold-out {
  display: none;
  color: rgba(21, 44, 78, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-886ba149-9e9f-4659-9aa3-c4546208d961 .shg-product-price {
  color: rgba(21, 44, 78, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-886ba149-9e9f-4659-9aa3-c4546208d961 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}
#s-56e83609-a51f-49c3-9428-f468b2a84a64 {
  margin-left: auto;
margin-right: auto;
}

#s-a428e661-7c32-4426-a878-e41b130c75b3 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-a428e661-7c32-4426-a878-e41b130c75b3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a428e661-7c32-4426-a878-e41b130c75b3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-a428e661-7c32-4426-a878-e41b130c75b3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a428e661-7c32-4426-a878-e41b130c75b3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-a428e661-7c32-4426-a878-e41b130c75b3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a428e661-7c32-4426-a878-e41b130c75b3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-a428e661-7c32-4426-a878-e41b130c75b3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a428e661-7c32-4426-a878-e41b130c75b3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-a428e661-7c32-4426-a878-e41b130c75b3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a428e661-7c32-4426-a878-e41b130c75b3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-11a804cf-0843-4675-9f90-bad88fea54c0 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-11a804cf-0843-4675-9f90-bad88fea54c0 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 17px;
  
  
  
}
@media (min-width: 992px) and (max-width: 1199px){#s-11a804cf-0843-4675-9f90-bad88fea54c0 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-11a804cf-0843-4675-9f90-bad88fea54c0 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (max-width: 767px){#s-11a804cf-0843-4675-9f90-bad88fea54c0 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 14px;
  
  
  
}
}
#s-feeb938d-e1e7-4124-8463-efa7f07b528d {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-feeb938d-e1e7-4124-8463-efa7f07b528d .shg-product-sold-out {
  display: none;
  color: rgba(153, 52, 150, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-feeb938d-e1e7-4124-8463-efa7f07b528d .shg-product-price {
  color: rgba(153, 52, 150, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-feeb938d-e1e7-4124-8463-efa7f07b528d .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-feeb938d-e1e7-4124-8463-efa7f07b528d .shg-product-sold-out {
  display: none;
  color: rgba(153, 52, 150, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-feeb938d-e1e7-4124-8463-efa7f07b528d .shg-product-price {
  color: rgba(153, 52, 150, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-feeb938d-e1e7-4124-8463-efa7f07b528d .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}@media (max-width: 767px){#s-feeb938d-e1e7-4124-8463-efa7f07b528d .shg-product-sold-out {
  display: none;
  color: rgba(21, 44, 78, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-feeb938d-e1e7-4124-8463-efa7f07b528d .shg-product-price {
  color: rgba(21, 44, 78, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-feeb938d-e1e7-4124-8463-efa7f07b528d .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}
#s-3c6a1627-6b9b-4550-845b-5c32bcdf1d61 {
  margin-left: auto;
margin-right: auto;
}

#s-0cf76ae7-3ba9-4c9b-8f59-2560f5176bf0 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-0cf76ae7-3ba9-4c9b-8f59-2560f5176bf0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0cf76ae7-3ba9-4c9b-8f59-2560f5176bf0 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-0cf76ae7-3ba9-4c9b-8f59-2560f5176bf0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0cf76ae7-3ba9-4c9b-8f59-2560f5176bf0 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-0cf76ae7-3ba9-4c9b-8f59-2560f5176bf0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0cf76ae7-3ba9-4c9b-8f59-2560f5176bf0 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-0cf76ae7-3ba9-4c9b-8f59-2560f5176bf0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0cf76ae7-3ba9-4c9b-8f59-2560f5176bf0 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-0cf76ae7-3ba9-4c9b-8f59-2560f5176bf0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0cf76ae7-3ba9-4c9b-8f59-2560f5176bf0 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-55468c60-1717-4376-8ea5-6fcc449df71a {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-55468c60-1717-4376-8ea5-6fcc449df71a .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 17px;
  
  
  
}
@media (min-width: 992px) and (max-width: 1199px){#s-55468c60-1717-4376-8ea5-6fcc449df71a .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-55468c60-1717-4376-8ea5-6fcc449df71a .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (max-width: 767px){#s-55468c60-1717-4376-8ea5-6fcc449df71a .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 14px;
  
  
  
}
}
#s-37049bd9-580b-481d-aceb-08be8e279015 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-37049bd9-580b-481d-aceb-08be8e279015 .shg-product-sold-out {
  display: none;
  color: rgba(153, 52, 150, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-37049bd9-580b-481d-aceb-08be8e279015 .shg-product-price {
  color: rgba(153, 52, 150, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-37049bd9-580b-481d-aceb-08be8e279015 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-37049bd9-580b-481d-aceb-08be8e279015 .shg-product-sold-out {
  display: none;
  color: rgba(153, 52, 150, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-37049bd9-580b-481d-aceb-08be8e279015 .shg-product-price {
  color: rgba(153, 52, 150, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-37049bd9-580b-481d-aceb-08be8e279015 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}@media (max-width: 767px){#s-37049bd9-580b-481d-aceb-08be8e279015 .shg-product-sold-out {
  display: none;
  color: rgba(21, 44, 78, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-37049bd9-580b-481d-aceb-08be8e279015 .shg-product-price {
  color: rgba(21, 44, 78, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-37049bd9-580b-481d-aceb-08be8e279015 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}
#s-6b919e65-4f16-4344-8ca1-20dee4168aae {
  margin-top: 7px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(127, 14, 125, 1);
text-align: center;
text-decoration: none;
letter-spacing: 0px;
line-height: 1.5em;
hover-type: color;
}
#s-6b919e65-4f16-4344-8ca1-20dee4168aae:hover {background-color: rgba(127, 14, 125, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-6b919e65-4f16-4344-8ca1-20dee4168aae:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-6b919e65-4f16-4344-8ca1-20dee4168aae {
  margin-bottom: 30px;
background-image: none;
background-color: rgba(21, 44, 78, 1);
hover-type: color;
}
#s-6b919e65-4f16-4344-8ca1-20dee4168aae:hover {background-color: rgba(21, 44, 78, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}}

  #s-6b919e65-4f16-4344-8ca1-20dee4168aae-root {
    text-align: center;
  }


#s-6b919e65-4f16-4344-8ca1-20dee4168aae.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6b919e65-4f16-4344-8ca1-20dee4168aae-root {
    text-align: center;
  }


#s-6b919e65-4f16-4344-8ca1-20dee4168aae.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6b919e65-4f16-4344-8ca1-20dee4168aae-root {
    text-align: center;
  }


#s-6b919e65-4f16-4344-8ca1-20dee4168aae.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6b919e65-4f16-4344-8ca1-20dee4168aae-root {
    text-align: center;
  }


#s-6b919e65-4f16-4344-8ca1-20dee4168aae.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6b919e65-4f16-4344-8ca1-20dee4168aae-root {
    text-align: center;
  }


#s-6b919e65-4f16-4344-8ca1-20dee4168aae.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-245f6add-613f-422e-a3a0-589e10684939 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-245f6add-613f-422e-a3a0-589e10684939 {
  display: none;
}
#s-245f6add-613f-422e-a3a0-589e10684939, #wrap-s-245f6add-613f-422e-a3a0-589e10684939 { display: none !important; }}







#s-245f6add-613f-422e-a3a0-589e10684939 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-245f6add-613f-422e-a3a0-589e10684939.shg-box.shg-c {
  justify-content: center;
}

#s-e1948da3-ce24-4fa6-b9b4-2b38004d8d3d {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e1948da3-ce24-4fa6-b9b4-2b38004d8d3d .shogun-heading-component h1 {
  color: rgba(21, 44, 78, 1);
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-e1948da3-ce24-4fa6-b9b4-2b38004d8d3d .shogun-heading-component h1 {
  color: rgba(21, 44, 78, 1);
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}


}
#s-acc38355-0b6d-4253-a3e5-08a1513ca7a7 {
  margin-top: 10px;
margin-left: 7%;
margin-bottom: 10px;
margin-right: 7%;
}
@media (min-width: 992px) and (max-width: 1199px){#s-acc38355-0b6d-4253-a3e5-08a1513ca7a7 {
  margin-left: 2%;
margin-right: 2%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-acc38355-0b6d-4253-a3e5-08a1513ca7a7 {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-acc38355-0b6d-4253-a3e5-08a1513ca7a7 {
  margin-left: 1%;
margin-right: 1%;
}
}
@media (min-width: 0px) {
[id="s-acc38355-0b6d-4253-a3e5-08a1513ca7a7"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-acc38355-0b6d-4253-a3e5-08a1513ca7a7"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-acc38355-0b6d-4253-a3e5-08a1513ca7a7"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-acc38355-0b6d-4253-a3e5-08a1513ca7a7"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 7.5px);
}

}

#s-3e1b1465-2c73-4568-bbee-67056813e77d {
  margin-left: auto;
margin-right: auto;
}

#s-585ff75b-4d15-4df2-afa9-14703429c34f {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-585ff75b-4d15-4df2-afa9-14703429c34f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-585ff75b-4d15-4df2-afa9-14703429c34f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-585ff75b-4d15-4df2-afa9-14703429c34f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-585ff75b-4d15-4df2-afa9-14703429c34f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-585ff75b-4d15-4df2-afa9-14703429c34f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-585ff75b-4d15-4df2-afa9-14703429c34f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-585ff75b-4d15-4df2-afa9-14703429c34f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-585ff75b-4d15-4df2-afa9-14703429c34f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-585ff75b-4d15-4df2-afa9-14703429c34f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-585ff75b-4d15-4df2-afa9-14703429c34f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-d22b9f09-2516-442c-8e52-0e249b11ab12 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-d22b9f09-2516-442c-8e52-0e249b11ab12 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 17px;
  
  
  
}
@media (min-width: 992px) and (max-width: 1199px){#s-d22b9f09-2516-442c-8e52-0e249b11ab12 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-d22b9f09-2516-442c-8e52-0e249b11ab12 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (max-width: 767px){#s-d22b9f09-2516-442c-8e52-0e249b11ab12 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 14px;
  
  
  
}
}
#s-5b25d3ee-8e6b-4722-9def-1ad47746d236 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-5b25d3ee-8e6b-4722-9def-1ad47746d236 .shg-product-sold-out {
  display: none;
  color: rgba(21, 44, 78, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-5b25d3ee-8e6b-4722-9def-1ad47746d236 .shg-product-price {
  color: rgba(21, 44, 78, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-5b25d3ee-8e6b-4722-9def-1ad47746d236 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-5b25d3ee-8e6b-4722-9def-1ad47746d236 .shg-product-sold-out {
  display: none;
  color: rgba(21, 44, 78, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-5b25d3ee-8e6b-4722-9def-1ad47746d236 .shg-product-price {
  color: rgba(21, 44, 78, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-5b25d3ee-8e6b-4722-9def-1ad47746d236 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}
#s-7e98b5f8-5c65-49fe-b2f4-9b4dea1c1bd5 {
  margin-top: -20px;
margin-left: auto;
margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px){#s-7e98b5f8-5c65-49fe-b2f4-9b4dea1c1bd5 {
  margin-top: -20px;
}
}
#s-276e9809-3402-42ac-998a-1a1a4f46a612 {
  margin-left: auto;
margin-right: auto;
}

#s-7d5d6927-ea15-4bef-a028-decaee01d162 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-7d5d6927-ea15-4bef-a028-decaee01d162 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7d5d6927-ea15-4bef-a028-decaee01d162 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-7d5d6927-ea15-4bef-a028-decaee01d162 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7d5d6927-ea15-4bef-a028-decaee01d162 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-7d5d6927-ea15-4bef-a028-decaee01d162 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7d5d6927-ea15-4bef-a028-decaee01d162 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-7d5d6927-ea15-4bef-a028-decaee01d162 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7d5d6927-ea15-4bef-a028-decaee01d162 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-7d5d6927-ea15-4bef-a028-decaee01d162 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7d5d6927-ea15-4bef-a028-decaee01d162 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-39526c7c-ffc1-4b82-8b81-25e72735fa88 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-39526c7c-ffc1-4b82-8b81-25e72735fa88 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 17px;
  
  
  
}
@media (min-width: 992px) and (max-width: 1199px){#s-39526c7c-ffc1-4b82-8b81-25e72735fa88 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-39526c7c-ffc1-4b82-8b81-25e72735fa88 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (max-width: 767px){#s-39526c7c-ffc1-4b82-8b81-25e72735fa88 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 14px;
  
  
  
}
}
#s-ece880c2-d176-4c3a-bd97-231e7cb22fcc {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-ece880c2-d176-4c3a-bd97-231e7cb22fcc .shg-product-sold-out {
  display: none;
  color: rgba(21, 44, 78, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-ece880c2-d176-4c3a-bd97-231e7cb22fcc .shg-product-price {
  color: rgba(21, 44, 78, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-ece880c2-d176-4c3a-bd97-231e7cb22fcc .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-ece880c2-d176-4c3a-bd97-231e7cb22fcc .shg-product-sold-out {
  display: none;
  color: rgba(21, 44, 78, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-ece880c2-d176-4c3a-bd97-231e7cb22fcc .shg-product-price {
  color: rgba(21, 44, 78, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-ece880c2-d176-4c3a-bd97-231e7cb22fcc .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}
#s-95d50aae-2ac5-4f21-a832-16afd06b32de {
  margin-top: -20px;
margin-left: auto;
margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px){#s-95d50aae-2ac5-4f21-a832-16afd06b32de {
  margin-top: -20px;
}
}
#s-6e594bd8-c247-40cd-a98c-2d44a5abaf38 {
  margin-left: auto;
margin-right: auto;
}

#s-c86ffffc-2398-4232-b21c-d3d5cf9a8f1e {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-c86ffffc-2398-4232-b21c-d3d5cf9a8f1e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c86ffffc-2398-4232-b21c-d3d5cf9a8f1e img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-c86ffffc-2398-4232-b21c-d3d5cf9a8f1e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c86ffffc-2398-4232-b21c-d3d5cf9a8f1e img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-c86ffffc-2398-4232-b21c-d3d5cf9a8f1e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c86ffffc-2398-4232-b21c-d3d5cf9a8f1e img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-c86ffffc-2398-4232-b21c-d3d5cf9a8f1e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c86ffffc-2398-4232-b21c-d3d5cf9a8f1e img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-c86ffffc-2398-4232-b21c-d3d5cf9a8f1e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c86ffffc-2398-4232-b21c-d3d5cf9a8f1e img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-7a221834-ad5c-47de-a6ca-c290a6719fd5 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-7a221834-ad5c-47de-a6ca-c290a6719fd5 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 17px;
  
  
  
}
@media (min-width: 992px) and (max-width: 1199px){#s-7a221834-ad5c-47de-a6ca-c290a6719fd5 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-7a221834-ad5c-47de-a6ca-c290a6719fd5 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (max-width: 767px){#s-7a221834-ad5c-47de-a6ca-c290a6719fd5 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 14px;
  
  
  
}
}
#s-de6910f0-c942-4448-b1bf-d508df19212e {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-de6910f0-c942-4448-b1bf-d508df19212e .shg-product-sold-out {
  display: none;
  color: rgba(21, 44, 78, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-de6910f0-c942-4448-b1bf-d508df19212e .shg-product-price {
  color: rgba(21, 44, 78, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-de6910f0-c942-4448-b1bf-d508df19212e .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-de6910f0-c942-4448-b1bf-d508df19212e .shg-product-sold-out {
  display: none;
  color: rgba(21, 44, 78, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-de6910f0-c942-4448-b1bf-d508df19212e .shg-product-price {
  color: rgba(21, 44, 78, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-de6910f0-c942-4448-b1bf-d508df19212e .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}
#s-86094f9d-195f-4ad1-bc5c-7534244daa99 {
  margin-top: -20px;
margin-left: auto;
margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px){#s-86094f9d-195f-4ad1-bc5c-7534244daa99 {
  margin-top: -20px;
}
}
#s-8fbe0903-5c0c-471b-b3f8-ae08d28b87bb {
  margin-left: auto;
margin-right: auto;
}

#s-18b7e3ba-dc20-4be0-8d70-d81b40966ae2 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-18b7e3ba-dc20-4be0-8d70-d81b40966ae2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-18b7e3ba-dc20-4be0-8d70-d81b40966ae2 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-18b7e3ba-dc20-4be0-8d70-d81b40966ae2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-18b7e3ba-dc20-4be0-8d70-d81b40966ae2 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-18b7e3ba-dc20-4be0-8d70-d81b40966ae2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-18b7e3ba-dc20-4be0-8d70-d81b40966ae2 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-18b7e3ba-dc20-4be0-8d70-d81b40966ae2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-18b7e3ba-dc20-4be0-8d70-d81b40966ae2 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-18b7e3ba-dc20-4be0-8d70-d81b40966ae2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-18b7e3ba-dc20-4be0-8d70-d81b40966ae2 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-eb436d1b-566c-4470-989e-ad685ed56e58 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-eb436d1b-566c-4470-989e-ad685ed56e58 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 17px;
  
  
  
}
@media (min-width: 992px) and (max-width: 1199px){#s-eb436d1b-566c-4470-989e-ad685ed56e58 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-eb436d1b-566c-4470-989e-ad685ed56e58 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 15px;
  
  
  
}
}@media (max-width: 767px){#s-eb436d1b-566c-4470-989e-ad685ed56e58 .shg-product-title-component h1 {
  
  
  font-family: Poppins;
  
  font-size: 14px;
  
  
  
}
}
#s-ad88985b-d999-4623-908c-2bc8ada2156c {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-ad88985b-d999-4623-908c-2bc8ada2156c .shg-product-sold-out {
  display: none;
  color: rgba(21, 44, 78, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-ad88985b-d999-4623-908c-2bc8ada2156c .shg-product-price {
  color: rgba(21, 44, 78, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-ad88985b-d999-4623-908c-2bc8ada2156c .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-ad88985b-d999-4623-908c-2bc8ada2156c .shg-product-sold-out {
  display: none;
  color: rgba(21, 44, 78, 1);
  font-size: 28px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-ad88985b-d999-4623-908c-2bc8ada2156c .shg-product-price {
  color: rgba(21, 44, 78, 1);
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 28px;
}

#s-ad88985b-d999-4623-908c-2bc8ada2156c .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}
#s-e4b3f507-fdba-4cb1-8591-4fa94ffca5e1 {
  margin-top: -20px;
margin-left: auto;
margin-right: auto;
}
@media (min-width: 992px) and (max-width: 1199px){#s-e4b3f507-fdba-4cb1-8591-4fa94ffca5e1 {
  margin-top: -20px;
}
}
#s-c7ca564b-6094-410f-ae92-2f4798b4e3cb {
  margin-top: 7px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(21, 44, 78, 1);
text-align: center;
text-decoration: none;
letter-spacing: 0px;
line-height: 1.5em;
background-image: none;
hover-type: color;
}
#s-c7ca564b-6094-410f-ae92-2f4798b4e3cb:hover {background-color: rgba(21, 44, 78, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-c7ca564b-6094-410f-ae92-2f4798b4e3cb:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-c7ca564b-6094-410f-ae92-2f4798b4e3cb {
  margin-bottom: 30px;
}
}

  #s-c7ca564b-6094-410f-ae92-2f4798b4e3cb-root {
    text-align: center;
  }


#s-c7ca564b-6094-410f-ae92-2f4798b4e3cb.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c7ca564b-6094-410f-ae92-2f4798b4e3cb-root {
    text-align: center;
  }


#s-c7ca564b-6094-410f-ae92-2f4798b4e3cb.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c7ca564b-6094-410f-ae92-2f4798b4e3cb-root {
    text-align: center;
  }


#s-c7ca564b-6094-410f-ae92-2f4798b4e3cb.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c7ca564b-6094-410f-ae92-2f4798b4e3cb-root {
    text-align: center;
  }


#s-c7ca564b-6094-410f-ae92-2f4798b4e3cb.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c7ca564b-6094-410f-ae92-2f4798b4e3cb-root {
    text-align: center;
  }


#s-c7ca564b-6094-410f-ae92-2f4798b4e3cb.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-a6613918-34ad-43f2-ab5c-7b1c830964b4 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-a6613918-34ad-43f2-ab5c-7b1c830964b4 {
  margin-top: 10px;
margin-bottom: 10px;
}
}







#s-a6613918-34ad-43f2-ab5c-7b1c830964b4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a6613918-34ad-43f2-ab5c-7b1c830964b4.shg-box.shg-c {
  justify-content: center;
}

#s-b19937cd-e390-4e70-b348-8cfbab63ce26 {
  margin-top: 0px;
margin-bottom: 10px;
}
@media (max-width: 767px){#s-b19937cd-e390-4e70-b348-8cfbab63ce26 {
  display: none;
}
#s-b19937cd-e390-4e70-b348-8cfbab63ce26, #wrap-s-b19937cd-e390-4e70-b348-8cfbab63ce26 { display: none !important; }}
#s-82e94675-8480-48d5-9536-c2fb34520d4a {
  padding-bottom: 30px;
}
@media (max-width: 767px){#s-82e94675-8480-48d5-9536-c2fb34520d4a {
  margin-left: 2%;
margin-right: 2%;
}
}
@media (min-width: 0px) {
[id="s-82e94675-8480-48d5-9536-c2fb34520d4a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 7.0px);
}

}

@media (min-width: 768px) {
[id="s-82e94675-8480-48d5-9536-c2fb34520d4a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 10.5px);
}

}

@media (min-width: 992px) {
[id="s-82e94675-8480-48d5-9536-c2fb34520d4a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 10.5px);
}

}

@media (min-width: 1200px) {
[id="s-82e94675-8480-48d5-9536-c2fb34520d4a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 10.5px);
}

}

#s-cbf12376-cbf4-460a-b865-b4ce02af1980 {
  min-height: 50px;
}








#s-cbf12376-cbf4-460a-b865-b4ce02af1980 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cbf12376-cbf4-460a-b865-b4ce02af1980 {
  cursor: pointer;
}#s-cbf12376-cbf4-460a-b865-b4ce02af1980.shg-box.shg-c {
  justify-content: center;
}

#s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb {
  margin-top: 6px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 500px;
max-width: 1426px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb {
  
  
  margin-top: 6px;
  margin-bottom: 0px;
}

#s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb .shogun-image-content {
  
    align-items: center;
  
}

.s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container {
      position: relative;
    }

    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb {
  
  
  
  
}

#s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb .shogun-image-content {
  
    align-items: center;
  
}

.s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container {
      position: relative;
    }

    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb {
  
  
  
  
}

#s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb .shogun-image-content {
  
    align-items: center;
  
}

.s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container {
      position: relative;
    }

    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb {
  
  
  
  
}

#s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb .shogun-image-content {
  
    align-items: center;
  
}

.s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container {
      position: relative;
    }

    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb {
  
  
  
  
}

#s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb .shogun-image-content {
  
    align-items: center;
  
}

.s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container {
      position: relative;
    }

    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19ef3cfc-806f-4d8d-8f46-a5901a3a30eb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

}
#s-8e441083-a8ee-4462-ac29-927f95c50490 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 10px;
}

#s-c9a1f06f-9592-42ad-8f23-e90d4bbe0576 {
  min-height: 50px;
}








#s-c9a1f06f-9592-42ad-8f23-e90d4bbe0576 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c9a1f06f-9592-42ad-8f23-e90d4bbe0576 {
  cursor: pointer;
}#s-c9a1f06f-9592-42ad-8f23-e90d4bbe0576.shg-box.shg-c {
  justify-content: center;
}

#s-28e32a11-1597-4fc5-ad1d-93375e10decc {
  margin-top: 6px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 500px;
max-width: 1426px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-28e32a11-1597-4fc5-ad1d-93375e10decc {
  
  
  margin-top: 6px;
  margin-bottom: 0px;
}

#s-28e32a11-1597-4fc5-ad1d-93375e10decc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-28e32a11-1597-4fc5-ad1d-93375e10decc .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-28e32a11-1597-4fc5-ad1d-93375e10decc .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-28e32a11-1597-4fc5-ad1d-93375e10decc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-28e32a11-1597-4fc5-ad1d-93375e10decc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-28e32a11-1597-4fc5-ad1d-93375e10decc .shogun-image-content {
  
    align-items: center;
  
}

.s-28e32a11-1597-4fc5-ad1d-93375e10decc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-28e32a11-1597-4fc5-ad1d-93375e10decc {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container {
      position: relative;
    }

    .s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-28e32a11-1597-4fc5-ad1d-93375e10decc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-28e32a11-1597-4fc5-ad1d-93375e10decc {
  
  
  
  
}

#s-28e32a11-1597-4fc5-ad1d-93375e10decc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-28e32a11-1597-4fc5-ad1d-93375e10decc .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-28e32a11-1597-4fc5-ad1d-93375e10decc .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-28e32a11-1597-4fc5-ad1d-93375e10decc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-28e32a11-1597-4fc5-ad1d-93375e10decc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-28e32a11-1597-4fc5-ad1d-93375e10decc .shogun-image-content {
  
    align-items: center;
  
}

.s-28e32a11-1597-4fc5-ad1d-93375e10decc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-28e32a11-1597-4fc5-ad1d-93375e10decc {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container {
      position: relative;
    }

    .s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-28e32a11-1597-4fc5-ad1d-93375e10decc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-28e32a11-1597-4fc5-ad1d-93375e10decc {
  
  
  
  
}

#s-28e32a11-1597-4fc5-ad1d-93375e10decc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-28e32a11-1597-4fc5-ad1d-93375e10decc .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-28e32a11-1597-4fc5-ad1d-93375e10decc .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-28e32a11-1597-4fc5-ad1d-93375e10decc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-28e32a11-1597-4fc5-ad1d-93375e10decc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-28e32a11-1597-4fc5-ad1d-93375e10decc .shogun-image-content {
  
    align-items: center;
  
}

.s-28e32a11-1597-4fc5-ad1d-93375e10decc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-28e32a11-1597-4fc5-ad1d-93375e10decc {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container {
      position: relative;
    }

    .s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-28e32a11-1597-4fc5-ad1d-93375e10decc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-28e32a11-1597-4fc5-ad1d-93375e10decc {
  
  
  
  
}

#s-28e32a11-1597-4fc5-ad1d-93375e10decc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-28e32a11-1597-4fc5-ad1d-93375e10decc .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-28e32a11-1597-4fc5-ad1d-93375e10decc .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-28e32a11-1597-4fc5-ad1d-93375e10decc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-28e32a11-1597-4fc5-ad1d-93375e10decc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-28e32a11-1597-4fc5-ad1d-93375e10decc .shogun-image-content {
  
    align-items: center;
  
}

.s-28e32a11-1597-4fc5-ad1d-93375e10decc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-28e32a11-1597-4fc5-ad1d-93375e10decc {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container {
      position: relative;
    }

    .s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-28e32a11-1597-4fc5-ad1d-93375e10decc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-28e32a11-1597-4fc5-ad1d-93375e10decc {
  
  
  
  
}

#s-28e32a11-1597-4fc5-ad1d-93375e10decc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-28e32a11-1597-4fc5-ad1d-93375e10decc .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-28e32a11-1597-4fc5-ad1d-93375e10decc .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-28e32a11-1597-4fc5-ad1d-93375e10decc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-28e32a11-1597-4fc5-ad1d-93375e10decc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-28e32a11-1597-4fc5-ad1d-93375e10decc .shogun-image-content {
  
    align-items: center;
  
}

.s-28e32a11-1597-4fc5-ad1d-93375e10decc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-28e32a11-1597-4fc5-ad1d-93375e10decc {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container {
      position: relative;
    }

    .s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-28e32a11-1597-4fc5-ad1d-93375e10decc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-28e32a11-1597-4fc5-ad1d-93375e10decc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

}
#s-766f7ae8-9979-4857-b1e9-2f5455888b6e {
  padding-top: 0px;
padding-bottom: 10px;
min-height: 0px;
background-color: rgba(255, 255, 255, 1);
}

#s-de752938-a20c-43c5-bf77-b9caef807c14 {
  min-height: 50px;
}








#s-de752938-a20c-43c5-bf77-b9caef807c14 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-de752938-a20c-43c5-bf77-b9caef807c14 {
  cursor: pointer;
}#s-de752938-a20c-43c5-bf77-b9caef807c14.shg-box.shg-c {
  justify-content: center;
}

#s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 {
  margin-top: 6px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 500px;
max-width: 1426px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 {
  
  
  margin-top: 6px;
  margin-bottom: 0px;
}

#s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 .shogun-image-content {
  
    align-items: center;
  
}

.s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container {
      position: relative;
    }

    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 {
  
  
  
  
}

#s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 .shogun-image-content {
  
    align-items: center;
  
}

.s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container {
      position: relative;
    }

    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 {
  
  
  
  
}

#s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 .shogun-image-content {
  
    align-items: center;
  
}

.s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container {
      position: relative;
    }

    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 {
  
  
  
  
}

#s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 .shogun-image-content {
  
    align-items: center;
  
}

.s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container {
      position: relative;
    }

    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 {
  
  
  
  
}

#s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 .shogun-image-content {
  
    align-items: center;
  
}

.s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container {
      position: relative;
    }

    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e858825c-5a0a-4fa5-8a19-fd5b85b8bef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

}
#s-65d24a6c-b957-4a0a-88df-e4741a9ac2a5 {
  padding-top: 0px;
padding-bottom: 10px;
min-height: 0px;
background-color: rgba(255, 255, 255, 1);
}

#s-4d85f002-6345-4d04-b314-7c0c0b111294 {
  min-height: 50px;
}








#s-4d85f002-6345-4d04-b314-7c0c0b111294 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4d85f002-6345-4d04-b314-7c0c0b111294 {
  cursor: pointer;
}#s-4d85f002-6345-4d04-b314-7c0c0b111294.shg-box.shg-c {
  justify-content: center;
}

#s-661588a0-185b-487b-8835-5dde4923dc27 {
  margin-top: 6px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 0px;
max-width: 1471px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-661588a0-185b-487b-8835-5dde4923dc27 {
  
  
  margin-top: 6px;
  margin-bottom: 0px;
}

#s-661588a0-185b-487b-8835-5dde4923dc27 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-661588a0-185b-487b-8835-5dde4923dc27 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-661588a0-185b-487b-8835-5dde4923dc27 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-661588a0-185b-487b-8835-5dde4923dc27 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-661588a0-185b-487b-8835-5dde4923dc27 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1471px;
  }



  img.s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image {
    
    
    
    max-height: 1471px;
  }


.s-661588a0-185b-487b-8835-5dde4923dc27 .shogun-image-content {
  
    align-items: center;
  
}

.s-661588a0-185b-487b-8835-5dde4923dc27.shg-align-container {
  display: flex;
  justify-content: center
}

.s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-661588a0-185b-487b-8835-5dde4923dc27 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container {
      position: relative;
    }

    .s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-661588a0-185b-487b-8835-5dde4923dc27 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1471px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-661588a0-185b-487b-8835-5dde4923dc27 {
  
  
  
  
}

#s-661588a0-185b-487b-8835-5dde4923dc27 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-661588a0-185b-487b-8835-5dde4923dc27 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-661588a0-185b-487b-8835-5dde4923dc27 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-661588a0-185b-487b-8835-5dde4923dc27 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-661588a0-185b-487b-8835-5dde4923dc27 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1471px;
  }



  img.s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image {
    
    
    
    max-height: 1471px;
  }


.s-661588a0-185b-487b-8835-5dde4923dc27 .shogun-image-content {
  
    align-items: center;
  
}

.s-661588a0-185b-487b-8835-5dde4923dc27.shg-align-container {
  display: flex;
  justify-content: center
}

.s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-661588a0-185b-487b-8835-5dde4923dc27 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container {
      position: relative;
    }

    .s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-661588a0-185b-487b-8835-5dde4923dc27 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1471px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-661588a0-185b-487b-8835-5dde4923dc27 {
  
  
  
  
}

#s-661588a0-185b-487b-8835-5dde4923dc27 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-661588a0-185b-487b-8835-5dde4923dc27 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-661588a0-185b-487b-8835-5dde4923dc27 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-661588a0-185b-487b-8835-5dde4923dc27 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-661588a0-185b-487b-8835-5dde4923dc27 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1471px;
  }



  img.s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image {
    
    
    
    max-height: 1471px;
  }


.s-661588a0-185b-487b-8835-5dde4923dc27 .shogun-image-content {
  
    align-items: center;
  
}

.s-661588a0-185b-487b-8835-5dde4923dc27.shg-align-container {
  display: flex;
  justify-content: center
}

.s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-661588a0-185b-487b-8835-5dde4923dc27 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container {
      position: relative;
    }

    .s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-661588a0-185b-487b-8835-5dde4923dc27 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1471px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-661588a0-185b-487b-8835-5dde4923dc27 {
  
  
  
  
}

#s-661588a0-185b-487b-8835-5dde4923dc27 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-661588a0-185b-487b-8835-5dde4923dc27 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-661588a0-185b-487b-8835-5dde4923dc27 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-661588a0-185b-487b-8835-5dde4923dc27 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-661588a0-185b-487b-8835-5dde4923dc27 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1471px;
  }



  img.s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image {
    
    
    
    max-height: 1471px;
  }


.s-661588a0-185b-487b-8835-5dde4923dc27 .shogun-image-content {
  
    align-items: center;
  
}

.s-661588a0-185b-487b-8835-5dde4923dc27.shg-align-container {
  display: flex;
  justify-content: center
}

.s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-661588a0-185b-487b-8835-5dde4923dc27 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container {
      position: relative;
    }

    .s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-661588a0-185b-487b-8835-5dde4923dc27 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1471px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-661588a0-185b-487b-8835-5dde4923dc27 {
  
  
  
  
}

#s-661588a0-185b-487b-8835-5dde4923dc27 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-661588a0-185b-487b-8835-5dde4923dc27 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-661588a0-185b-487b-8835-5dde4923dc27 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-661588a0-185b-487b-8835-5dde4923dc27 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-661588a0-185b-487b-8835-5dde4923dc27 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1471px;
  }



  img.s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image {
    
    
    
    max-height: 1471px;
  }


.s-661588a0-185b-487b-8835-5dde4923dc27 .shogun-image-content {
  
    align-items: center;
  
}

.s-661588a0-185b-487b-8835-5dde4923dc27.shg-align-container {
  display: flex;
  justify-content: center
}

.s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-661588a0-185b-487b-8835-5dde4923dc27 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container {
      position: relative;
    }

    .s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-661588a0-185b-487b-8835-5dde4923dc27.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-661588a0-185b-487b-8835-5dde4923dc27 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1471px;
    }
  }

}
#s-9a9660a1-71be-4108-baed-5d4c1b4a268f {
  margin-left: auto;
margin-right: auto;
padding-bottom: 10px;
}

@media (max-width: 767px){#s-7119bc28-8b51-4fb2-ad71-22e432765049 {
  margin-left: 2%;
margin-right: 2%;
}
}
@media (min-width: 0px) {
[id="s-7119bc28-8b51-4fb2-ad71-22e432765049"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 7.0px);
}

}

@media (min-width: 768px) {
[id="s-7119bc28-8b51-4fb2-ad71-22e432765049"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 10.5px);
}

}

@media (min-width: 992px) {
[id="s-7119bc28-8b51-4fb2-ad71-22e432765049"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 10.5px);
}

}

@media (min-width: 1200px) {
[id="s-7119bc28-8b51-4fb2-ad71-22e432765049"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 10.5px);
}

}

#s-2952e8d5-81b2-4b70-9a8b-83bdf5adb66f {
  min-height: 50px;
}








#s-2952e8d5-81b2-4b70-9a8b-83bdf5adb66f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2952e8d5-81b2-4b70-9a8b-83bdf5adb66f {
  cursor: pointer;
}#s-2952e8d5-81b2-4b70-9a8b-83bdf5adb66f.shg-box.shg-c {
  justify-content: center;
}

#s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd {
  margin-top: 6px;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 500px;
max-width: 1426px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd {
  
  
  margin-top: 6px;
  
}

#s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd .shogun-image-content {
  
    align-items: center;
  
}

.s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container {
      position: relative;
    }

    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd {
  
  
  
  
}

#s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd .shogun-image-content {
  
    align-items: center;
  
}

.s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container {
      position: relative;
    }

    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd {
  
  
  
  
}

#s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd .shogun-image-content {
  
    align-items: center;
  
}

.s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container {
      position: relative;
    }

    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd {
  
  
  
  
}

#s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd .shogun-image-content {
  
    align-items: center;
  
}

.s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container {
      position: relative;
    }

    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd {
  
  
  
  
}

#s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd .shogun-image-content {
  
    align-items: center;
  
}

.s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container {
      position: relative;
    }

    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c6eaf013-5952-44a2-af27-0d6a51a9bbbd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

}
#s-8a8bae2d-5a9a-4afe-bed4-c2fa5fa54552 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 10px;
}

#s-0806e668-742f-4b57-a8b9-71e485ed9da6 {
  min-height: 50px;
}








#s-0806e668-742f-4b57-a8b9-71e485ed9da6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0806e668-742f-4b57-a8b9-71e485ed9da6 {
  cursor: pointer;
}#s-0806e668-742f-4b57-a8b9-71e485ed9da6.shg-box.shg-c {
  justify-content: center;
}

#s-a1ba4897-1c37-4c5d-a0d0-16ca576412be {
  margin-top: 6px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 0px;
max-width: 1471px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-a1ba4897-1c37-4c5d-a0d0-16ca576412be {
  
  
  margin-top: 6px;
  margin-bottom: 0px;
}

#s-a1ba4897-1c37-4c5d-a0d0-16ca576412be {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a1ba4897-1c37-4c5d-a0d0-16ca576412be .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a1ba4897-1c37-4c5d-a0d0-16ca576412be .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a1ba4897-1c37-4c5d-a0d0-16ca576412be .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a1ba4897-1c37-4c5d-a0d0-16ca576412be img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1471px;
  }



  img.s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image {
    
    
    
    max-height: 1471px;
  }


.s-a1ba4897-1c37-4c5d-a0d0-16ca576412be .shogun-image-content {
  
    align-items: center;
  
}

.s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container {
      position: relative;
    }

    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1471px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-a1ba4897-1c37-4c5d-a0d0-16ca576412be {
  
  
  
  
}

#s-a1ba4897-1c37-4c5d-a0d0-16ca576412be {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a1ba4897-1c37-4c5d-a0d0-16ca576412be .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a1ba4897-1c37-4c5d-a0d0-16ca576412be .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a1ba4897-1c37-4c5d-a0d0-16ca576412be .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a1ba4897-1c37-4c5d-a0d0-16ca576412be img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1471px;
  }



  img.s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image {
    
    
    
    max-height: 1471px;
  }


.s-a1ba4897-1c37-4c5d-a0d0-16ca576412be .shogun-image-content {
  
    align-items: center;
  
}

.s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container {
      position: relative;
    }

    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1471px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-a1ba4897-1c37-4c5d-a0d0-16ca576412be {
  
  
  
  
}

#s-a1ba4897-1c37-4c5d-a0d0-16ca576412be {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a1ba4897-1c37-4c5d-a0d0-16ca576412be .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a1ba4897-1c37-4c5d-a0d0-16ca576412be .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a1ba4897-1c37-4c5d-a0d0-16ca576412be .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a1ba4897-1c37-4c5d-a0d0-16ca576412be img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1471px;
  }



  img.s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image {
    
    
    
    max-height: 1471px;
  }


.s-a1ba4897-1c37-4c5d-a0d0-16ca576412be .shogun-image-content {
  
    align-items: center;
  
}

.s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container {
      position: relative;
    }

    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1471px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-a1ba4897-1c37-4c5d-a0d0-16ca576412be {
  
  
  
  
}

#s-a1ba4897-1c37-4c5d-a0d0-16ca576412be {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a1ba4897-1c37-4c5d-a0d0-16ca576412be .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a1ba4897-1c37-4c5d-a0d0-16ca576412be .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a1ba4897-1c37-4c5d-a0d0-16ca576412be .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a1ba4897-1c37-4c5d-a0d0-16ca576412be img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1471px;
  }



  img.s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image {
    
    
    
    max-height: 1471px;
  }


.s-a1ba4897-1c37-4c5d-a0d0-16ca576412be .shogun-image-content {
  
    align-items: center;
  
}

.s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container {
      position: relative;
    }

    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1471px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-a1ba4897-1c37-4c5d-a0d0-16ca576412be {
  
  
  
  
}

#s-a1ba4897-1c37-4c5d-a0d0-16ca576412be {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a1ba4897-1c37-4c5d-a0d0-16ca576412be .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a1ba4897-1c37-4c5d-a0d0-16ca576412be .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a1ba4897-1c37-4c5d-a0d0-16ca576412be .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a1ba4897-1c37-4c5d-a0d0-16ca576412be img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1471px;
  }



  img.s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image {
    
    
    
    max-height: 1471px;
  }


.s-a1ba4897-1c37-4c5d-a0d0-16ca576412be .shogun-image-content {
  
    align-items: center;
  
}

.s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container {
      position: relative;
    }

    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1ba4897-1c37-4c5d-a0d0-16ca576412be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1471px;
    }
  }

}
#s-e1c56bed-dd12-4a85-bf6e-17c725e07c0b {
  padding-top: 0px;
padding-bottom: 10px;
min-height: 0px;
background-color: rgba(255, 255, 255, 1);
}

#s-3403a5b2-ef7f-4023-adf2-6beedc83b0a0 {
  min-height: 50px;
}








#s-3403a5b2-ef7f-4023-adf2-6beedc83b0a0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3403a5b2-ef7f-4023-adf2-6beedc83b0a0 {
  cursor: pointer;
}#s-3403a5b2-ef7f-4023-adf2-6beedc83b0a0.shg-box.shg-c {
  justify-content: center;
}

#s-4b849a42-638a-4311-b0c4-4019a4156769 {
  margin-top: 6px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 0px;
max-width: 1471px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-4b849a42-638a-4311-b0c4-4019a4156769 {
  
  
  margin-top: 6px;
  margin-bottom: 0px;
}

#s-4b849a42-638a-4311-b0c4-4019a4156769 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4b849a42-638a-4311-b0c4-4019a4156769 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4b849a42-638a-4311-b0c4-4019a4156769 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4b849a42-638a-4311-b0c4-4019a4156769 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4b849a42-638a-4311-b0c4-4019a4156769 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1471px;
  }



  img.s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image {
    
    
    
    max-height: 1471px;
  }


.s-4b849a42-638a-4311-b0c4-4019a4156769 .shogun-image-content {
  
    align-items: center;
  
}

.s-4b849a42-638a-4311-b0c4-4019a4156769.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4b849a42-638a-4311-b0c4-4019a4156769 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container {
      position: relative;
    }

    .s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4b849a42-638a-4311-b0c4-4019a4156769 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1471px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-4b849a42-638a-4311-b0c4-4019a4156769 {
  
  
  
  
}

#s-4b849a42-638a-4311-b0c4-4019a4156769 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4b849a42-638a-4311-b0c4-4019a4156769 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4b849a42-638a-4311-b0c4-4019a4156769 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4b849a42-638a-4311-b0c4-4019a4156769 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4b849a42-638a-4311-b0c4-4019a4156769 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1471px;
  }



  img.s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image {
    
    
    
    max-height: 1471px;
  }


.s-4b849a42-638a-4311-b0c4-4019a4156769 .shogun-image-content {
  
    align-items: center;
  
}

.s-4b849a42-638a-4311-b0c4-4019a4156769.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4b849a42-638a-4311-b0c4-4019a4156769 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container {
      position: relative;
    }

    .s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4b849a42-638a-4311-b0c4-4019a4156769 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1471px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-4b849a42-638a-4311-b0c4-4019a4156769 {
  
  
  
  
}

#s-4b849a42-638a-4311-b0c4-4019a4156769 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4b849a42-638a-4311-b0c4-4019a4156769 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4b849a42-638a-4311-b0c4-4019a4156769 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4b849a42-638a-4311-b0c4-4019a4156769 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4b849a42-638a-4311-b0c4-4019a4156769 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1471px;
  }



  img.s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image {
    
    
    
    max-height: 1471px;
  }


.s-4b849a42-638a-4311-b0c4-4019a4156769 .shogun-image-content {
  
    align-items: center;
  
}

.s-4b849a42-638a-4311-b0c4-4019a4156769.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4b849a42-638a-4311-b0c4-4019a4156769 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container {
      position: relative;
    }

    .s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4b849a42-638a-4311-b0c4-4019a4156769 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1471px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-4b849a42-638a-4311-b0c4-4019a4156769 {
  
  
  
  
}

#s-4b849a42-638a-4311-b0c4-4019a4156769 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4b849a42-638a-4311-b0c4-4019a4156769 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4b849a42-638a-4311-b0c4-4019a4156769 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4b849a42-638a-4311-b0c4-4019a4156769 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4b849a42-638a-4311-b0c4-4019a4156769 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1471px;
  }



  img.s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image {
    
    
    
    max-height: 1471px;
  }


.s-4b849a42-638a-4311-b0c4-4019a4156769 .shogun-image-content {
  
    align-items: center;
  
}

.s-4b849a42-638a-4311-b0c4-4019a4156769.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4b849a42-638a-4311-b0c4-4019a4156769 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container {
      position: relative;
    }

    .s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4b849a42-638a-4311-b0c4-4019a4156769 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1471px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-4b849a42-638a-4311-b0c4-4019a4156769 {
  
  
  
  
}

#s-4b849a42-638a-4311-b0c4-4019a4156769 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4b849a42-638a-4311-b0c4-4019a4156769 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-4b849a42-638a-4311-b0c4-4019a4156769 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4b849a42-638a-4311-b0c4-4019a4156769 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4b849a42-638a-4311-b0c4-4019a4156769 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1471px;
  }



  img.s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image {
    
    
    
    max-height: 1471px;
  }


.s-4b849a42-638a-4311-b0c4-4019a4156769 .shogun-image-content {
  
    align-items: center;
  
}

.s-4b849a42-638a-4311-b0c4-4019a4156769.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4b849a42-638a-4311-b0c4-4019a4156769 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container {
      position: relative;
    }

    .s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4b849a42-638a-4311-b0c4-4019a4156769.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4b849a42-638a-4311-b0c4-4019a4156769 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1471px;
    }
  }

}
#s-57795e6c-4a81-42b6-a714-073daa2317af {
  margin-left: auto;
margin-right: auto;
padding-bottom: 10px;
}

#s-8d60a7da-4ec8-4076-9c38-f25a9fbea15f {
  min-height: 50px;
}








#s-8d60a7da-4ec8-4076-9c38-f25a9fbea15f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8d60a7da-4ec8-4076-9c38-f25a9fbea15f {
  cursor: pointer;
}#s-8d60a7da-4ec8-4076-9c38-f25a9fbea15f.shg-box.shg-c {
  justify-content: center;
}

#s-382a5daf-a633-4d1c-964a-1ac6ca138863 {
  margin-top: 6px;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 500px;
max-width: 1426px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-382a5daf-a633-4d1c-964a-1ac6ca138863 {
  
  
  margin-top: 6px;
  
}

#s-382a5daf-a633-4d1c-964a-1ac6ca138863 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-382a5daf-a633-4d1c-964a-1ac6ca138863 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-382a5daf-a633-4d1c-964a-1ac6ca138863 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-382a5daf-a633-4d1c-964a-1ac6ca138863 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-382a5daf-a633-4d1c-964a-1ac6ca138863 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-382a5daf-a633-4d1c-964a-1ac6ca138863 .shogun-image-content {
  
    align-items: center;
  
}

.s-382a5daf-a633-4d1c-964a-1ac6ca138863.shg-align-container {
  display: flex;
  justify-content: center
}

.s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-382a5daf-a633-4d1c-964a-1ac6ca138863 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container {
      position: relative;
    }

    .s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-382a5daf-a633-4d1c-964a-1ac6ca138863 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-382a5daf-a633-4d1c-964a-1ac6ca138863 {
  
  
  
  
}

#s-382a5daf-a633-4d1c-964a-1ac6ca138863 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-382a5daf-a633-4d1c-964a-1ac6ca138863 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-382a5daf-a633-4d1c-964a-1ac6ca138863 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-382a5daf-a633-4d1c-964a-1ac6ca138863 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-382a5daf-a633-4d1c-964a-1ac6ca138863 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-382a5daf-a633-4d1c-964a-1ac6ca138863 .shogun-image-content {
  
    align-items: center;
  
}

.s-382a5daf-a633-4d1c-964a-1ac6ca138863.shg-align-container {
  display: flex;
  justify-content: center
}

.s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-382a5daf-a633-4d1c-964a-1ac6ca138863 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container {
      position: relative;
    }

    .s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-382a5daf-a633-4d1c-964a-1ac6ca138863 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-382a5daf-a633-4d1c-964a-1ac6ca138863 {
  
  
  
  
}

#s-382a5daf-a633-4d1c-964a-1ac6ca138863 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-382a5daf-a633-4d1c-964a-1ac6ca138863 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-382a5daf-a633-4d1c-964a-1ac6ca138863 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-382a5daf-a633-4d1c-964a-1ac6ca138863 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-382a5daf-a633-4d1c-964a-1ac6ca138863 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-382a5daf-a633-4d1c-964a-1ac6ca138863 .shogun-image-content {
  
    align-items: center;
  
}

.s-382a5daf-a633-4d1c-964a-1ac6ca138863.shg-align-container {
  display: flex;
  justify-content: center
}

.s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-382a5daf-a633-4d1c-964a-1ac6ca138863 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container {
      position: relative;
    }

    .s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-382a5daf-a633-4d1c-964a-1ac6ca138863 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-382a5daf-a633-4d1c-964a-1ac6ca138863 {
  
  
  
  
}

#s-382a5daf-a633-4d1c-964a-1ac6ca138863 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-382a5daf-a633-4d1c-964a-1ac6ca138863 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-382a5daf-a633-4d1c-964a-1ac6ca138863 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-382a5daf-a633-4d1c-964a-1ac6ca138863 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-382a5daf-a633-4d1c-964a-1ac6ca138863 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-382a5daf-a633-4d1c-964a-1ac6ca138863 .shogun-image-content {
  
    align-items: center;
  
}

.s-382a5daf-a633-4d1c-964a-1ac6ca138863.shg-align-container {
  display: flex;
  justify-content: center
}

.s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-382a5daf-a633-4d1c-964a-1ac6ca138863 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container {
      position: relative;
    }

    .s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-382a5daf-a633-4d1c-964a-1ac6ca138863 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-382a5daf-a633-4d1c-964a-1ac6ca138863 {
  
  
  
  
}

#s-382a5daf-a633-4d1c-964a-1ac6ca138863 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-382a5daf-a633-4d1c-964a-1ac6ca138863 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-382a5daf-a633-4d1c-964a-1ac6ca138863 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-382a5daf-a633-4d1c-964a-1ac6ca138863 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-382a5daf-a633-4d1c-964a-1ac6ca138863 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1426px;
  }



  img.s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image {
    
    
    
    max-height: 1426px;
  }


.s-382a5daf-a633-4d1c-964a-1ac6ca138863 .shogun-image-content {
  
    align-items: center;
  
}

.s-382a5daf-a633-4d1c-964a-1ac6ca138863.shg-align-container {
  display: flex;
  justify-content: center
}

.s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-382a5daf-a633-4d1c-964a-1ac6ca138863 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container {
      position: relative;
    }

    .s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-382a5daf-a633-4d1c-964a-1ac6ca138863.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-382a5daf-a633-4d1c-964a-1ac6ca138863 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1426px;
    }
  }

}
#s-d34aef60-74db-4f49-9128-37f805e41062 {
  padding-top: 0px;
padding-bottom: 10px;
min-height: 0px;
background-color: rgba(255, 255, 255, 1);
}

#s-f57a9fcb-27e2-49ae-8607-0f25c47b13e1 {
  min-height: 50px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-f57a9fcb-27e2-49ae-8607-0f25c47b13e1 {
  margin-top: 23px;
margin-bottom: 23px;
}
}@media (max-width: 767px){#s-f57a9fcb-27e2-49ae-8607-0f25c47b13e1 {
  margin-top: 20px;
margin-bottom: 20px;
}
}







#s-f57a9fcb-27e2-49ae-8607-0f25c47b13e1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f57a9fcb-27e2-49ae-8607-0f25c47b13e1.shg-box.shg-c {
  justify-content: center;
}

#s-b507c2a1-ca2d-4fa1-8bc8-c219a3975302 {
  margin-top: 20px;
margin-bottom: 10px;
}
@media (max-width: 767px){#s-b507c2a1-ca2d-4fa1-8bc8-c219a3975302 {
  margin-top: 30px;
}
}
#s-8d79279e-5c4e-4717-b968-bb071360cafe {
  min-height: 50px;
}
@media (max-width: 767px){#s-8d79279e-5c4e-4717-b968-bb071360cafe {
  display: none;
}
#s-8d79279e-5c4e-4717-b968-bb071360cafe, #wrap-s-8d79279e-5c4e-4717-b968-bb071360cafe { display: none !important; }}







#s-8d79279e-5c4e-4717-b968-bb071360cafe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8d79279e-5c4e-4717-b968-bb071360cafe.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-f51e330b-74db-4904-9c07-ec3e567e64fa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f51e330b-74db-4904-9c07-ec3e567e64fa"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 7.333333333333333px);
}

}

@media (min-width: 992px) {
[id="s-f51e330b-74db-4904-9c07-ec3e567e64fa"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 7.333333333333333px);
}

}

@media (min-width: 1200px) {
[id="s-f51e330b-74db-4904-9c07-ec3e567e64fa"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 7.333333333333333px);
}

}

#s-0cae8397-9128-4a44-a769-a65ea6b9face {
  margin-top: 10px;
margin-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}

#s-0cae8397-9128-4a44-a769-a65ea6b9face {
  background-image: url();
}








#s-0cae8397-9128-4a44-a769-a65ea6b9face > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0cae8397-9128-4a44-a769-a65ea6b9face {
  cursor: pointer;
}#s-0cae8397-9128-4a44-a769-a65ea6b9face.shg-box.shg-c {
  justify-content: flex-start;
}

#s-7515c350-5afc-41ed-a40b-09485e3b655e {
  margin-left: 3%;
margin-right: 3%;
text-align: center;
}



.shg-image-margin-container-s-7515c350-5afc-41ed-a40b-09485e3b655e {
  margin-left: 3%;
  margin-right: 3%;
  
  
}

#s-7515c350-5afc-41ed-a40b-09485e3b655e {
  margin: 0 !important;
}





  img.s-7515c350-5afc-41ed-a40b-09485e3b655e.shogun-image {
    
    
    
    
  }


.s-7515c350-5afc-41ed-a40b-09485e3b655e .shogun-image-content {
  
    align-items: center;
  
}

.s-7515c350-5afc-41ed-a40b-09485e3b655e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7515c350-5afc-41ed-a40b-09485e3b655e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7515c350-5afc-41ed-a40b-09485e3b655e.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-7515c350-5afc-41ed-a40b-09485e3b655e {
  
  
  
  
}

#s-7515c350-5afc-41ed-a40b-09485e3b655e {
  margin: 0 !important;
}





  img.s-7515c350-5afc-41ed-a40b-09485e3b655e.shogun-image {
    
    
    
    
  }


.s-7515c350-5afc-41ed-a40b-09485e3b655e .shogun-image-content {
  
    align-items: center;
  
}

.s-7515c350-5afc-41ed-a40b-09485e3b655e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7515c350-5afc-41ed-a40b-09485e3b655e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7515c350-5afc-41ed-a40b-09485e3b655e.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-7515c350-5afc-41ed-a40b-09485e3b655e {
  
  
  
  
}

#s-7515c350-5afc-41ed-a40b-09485e3b655e {
  margin: 0 !important;
}





  img.s-7515c350-5afc-41ed-a40b-09485e3b655e.shogun-image {
    
    
    
    
  }


.s-7515c350-5afc-41ed-a40b-09485e3b655e .shogun-image-content {
  
    align-items: center;
  
}

.s-7515c350-5afc-41ed-a40b-09485e3b655e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7515c350-5afc-41ed-a40b-09485e3b655e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7515c350-5afc-41ed-a40b-09485e3b655e.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-7515c350-5afc-41ed-a40b-09485e3b655e {
  
  
  
  
}

#s-7515c350-5afc-41ed-a40b-09485e3b655e {
  margin: 0 !important;
}





  img.s-7515c350-5afc-41ed-a40b-09485e3b655e.shogun-image {
    
    
    
    
  }


.s-7515c350-5afc-41ed-a40b-09485e3b655e .shogun-image-content {
  
    align-items: center;
  
}

.s-7515c350-5afc-41ed-a40b-09485e3b655e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7515c350-5afc-41ed-a40b-09485e3b655e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7515c350-5afc-41ed-a40b-09485e3b655e.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){

.shg-image-margin-container-s-7515c350-5afc-41ed-a40b-09485e3b655e {
  
  
  
  
}

#s-7515c350-5afc-41ed-a40b-09485e3b655e {
  margin: 0 !important;
}





  img.s-7515c350-5afc-41ed-a40b-09485e3b655e.shogun-image {
    
    
    
    
  }


.s-7515c350-5afc-41ed-a40b-09485e3b655e .shogun-image-content {
  
    align-items: center;
  
}

.s-7515c350-5afc-41ed-a40b-09485e3b655e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7515c350-5afc-41ed-a40b-09485e3b655e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7515c350-5afc-41ed-a40b-09485e3b655e.shogun-image {
  box-sizing: border-box;
}




}
#s-9c0046e7-fbd4-40cb-84c1-99098581bed9 {
  margin-top: 8px;
margin-left: 0%;
margin-right: 0%;
}
@media (min-width: 768px) and (max-width: 991px){#s-9c0046e7-fbd4-40cb-84c1-99098581bed9 {
  display: none;
}
#s-9c0046e7-fbd4-40cb-84c1-99098581bed9, #wrap-s-9c0046e7-fbd4-40cb-84c1-99098581bed9 { display: none !important; }}
#s-4edb465b-6dd6-4341-af77-723859ecf996 {
  margin-left: 8%;
margin-right: 8%;
}
@media (min-width: 1200px){#s-4edb465b-6dd6-4341-af77-723859ecf996 {
  display: none;
}
#s-4edb465b-6dd6-4341-af77-723859ecf996, #wrap-s-4edb465b-6dd6-4341-af77-723859ecf996 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4edb465b-6dd6-4341-af77-723859ecf996 {
  display: none;
}
#s-4edb465b-6dd6-4341-af77-723859ecf996, #wrap-s-4edb465b-6dd6-4341-af77-723859ecf996 { display: none !important; }}@media (max-width: 767px){#s-4edb465b-6dd6-4341-af77-723859ecf996 {
  display: none;
}
#s-4edb465b-6dd6-4341-af77-723859ecf996, #wrap-s-4edb465b-6dd6-4341-af77-723859ecf996 { display: none !important; }}
#s-09f078e4-b83e-454f-9ce0-470914602c66 {
  margin-top: 10px;
margin-left: 21%;
margin-bottom: 0px;
margin-right: 21%;
max-width: 150px;
aspect-ratio: 400/68;
text-align: center;
}
@media (min-width: 1200px){#s-09f078e4-b83e-454f-9ce0-470914602c66 {
  margin-left: 23%;
margin-right: 23%;
}
}


.shg-image-margin-container-s-09f078e4-b83e-454f-9ce0-470914602c66 {
  margin-left: 21%;
  margin-right: 21%;
  margin-top: 10px;
  margin-bottom: 0px;
}

#s-09f078e4-b83e-454f-9ce0-470914602c66 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-09f078e4-b83e-454f-9ce0-470914602c66 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-09f078e4-b83e-454f-9ce0-470914602c66 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-09f078e4-b83e-454f-9ce0-470914602c66 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-09f078e4-b83e-454f-9ce0-470914602c66 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 150px;
  }



  img.s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-09f078e4-b83e-454f-9ce0-470914602c66 .shogun-image-content {
  
    align-items: center;
  
}

.s-09f078e4-b83e-454f-9ce0-470914602c66.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-09f078e4-b83e-454f-9ce0-470914602c66 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container {
      position: relative;
    }

    .s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-09f078e4-b83e-454f-9ce0-470914602c66 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-09f078e4-b83e-454f-9ce0-470914602c66 {
  margin-left: 23%;
  margin-right: 23%;
  
  
}

#s-09f078e4-b83e-454f-9ce0-470914602c66 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-09f078e4-b83e-454f-9ce0-470914602c66 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-09f078e4-b83e-454f-9ce0-470914602c66 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-09f078e4-b83e-454f-9ce0-470914602c66 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-09f078e4-b83e-454f-9ce0-470914602c66 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 150px;
  }



  img.s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-09f078e4-b83e-454f-9ce0-470914602c66 .shogun-image-content {
  
    align-items: center;
  
}

.s-09f078e4-b83e-454f-9ce0-470914602c66.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-09f078e4-b83e-454f-9ce0-470914602c66 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container {
      position: relative;
    }

    .s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-09f078e4-b83e-454f-9ce0-470914602c66 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-09f078e4-b83e-454f-9ce0-470914602c66 {
  
  
  
  
}

#s-09f078e4-b83e-454f-9ce0-470914602c66 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-09f078e4-b83e-454f-9ce0-470914602c66 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-09f078e4-b83e-454f-9ce0-470914602c66 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-09f078e4-b83e-454f-9ce0-470914602c66 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-09f078e4-b83e-454f-9ce0-470914602c66 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 150px;
  }



  img.s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-09f078e4-b83e-454f-9ce0-470914602c66 .shogun-image-content {
  
    align-items: center;
  
}

.s-09f078e4-b83e-454f-9ce0-470914602c66.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-09f078e4-b83e-454f-9ce0-470914602c66 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container {
      position: relative;
    }

    .s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-09f078e4-b83e-454f-9ce0-470914602c66 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-09f078e4-b83e-454f-9ce0-470914602c66 {
  
  
  
  
}

#s-09f078e4-b83e-454f-9ce0-470914602c66 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-09f078e4-b83e-454f-9ce0-470914602c66 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-09f078e4-b83e-454f-9ce0-470914602c66 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-09f078e4-b83e-454f-9ce0-470914602c66 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-09f078e4-b83e-454f-9ce0-470914602c66 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 150px;
  }



  img.s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-09f078e4-b83e-454f-9ce0-470914602c66 .shogun-image-content {
  
    align-items: center;
  
}

.s-09f078e4-b83e-454f-9ce0-470914602c66.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-09f078e4-b83e-454f-9ce0-470914602c66 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container {
      position: relative;
    }

    .s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-09f078e4-b83e-454f-9ce0-470914602c66 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-09f078e4-b83e-454f-9ce0-470914602c66 {
  
  
  
  
}

#s-09f078e4-b83e-454f-9ce0-470914602c66 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-09f078e4-b83e-454f-9ce0-470914602c66 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-09f078e4-b83e-454f-9ce0-470914602c66 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-09f078e4-b83e-454f-9ce0-470914602c66 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-09f078e4-b83e-454f-9ce0-470914602c66 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 150px;
  }



  img.s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-09f078e4-b83e-454f-9ce0-470914602c66 .shogun-image-content {
  
    align-items: center;
  
}

.s-09f078e4-b83e-454f-9ce0-470914602c66.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-09f078e4-b83e-454f-9ce0-470914602c66 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container {
      position: relative;
    }

    .s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-09f078e4-b83e-454f-9ce0-470914602c66.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-09f078e4-b83e-454f-9ce0-470914602c66 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}
#s-04707fb3-7103-428c-9274-e0a7927251c2 {
  margin-left: 5%;
margin-right: 5%;
}

#s-1280c911-244a-4ed9-8018-f8deac9d9ed7 {
  margin-top: 10px;
margin-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}

#s-1280c911-244a-4ed9-8018-f8deac9d9ed7 {
  background-image: url();
}








#s-1280c911-244a-4ed9-8018-f8deac9d9ed7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1280c911-244a-4ed9-8018-f8deac9d9ed7 {
  cursor: pointer;
}#s-1280c911-244a-4ed9-8018-f8deac9d9ed7.shg-box.shg-c {
  justify-content: flex-start;
}

#s-0574a605-b426-4d11-b9b4-52a78a2452eb {
  margin-left: 3%;
margin-right: 3%;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-0574a605-b426-4d11-b9b4-52a78a2452eb {
  margin-left: 3%;
  margin-right: 3%;
  
  
}

#s-0574a605-b426-4d11-b9b4-52a78a2452eb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0574a605-b426-4d11-b9b4-52a78a2452eb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0574a605-b426-4d11-b9b4-52a78a2452eb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0574a605-b426-4d11-b9b4-52a78a2452eb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0574a605-b426-4d11-b9b4-52a78a2452eb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    
  }



  img.s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image {
    
    
    
    
  }


.s-0574a605-b426-4d11-b9b4-52a78a2452eb .shogun-image-content {
  
    align-items: center;
  
}

.s-0574a605-b426-4d11-b9b4-52a78a2452eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0574a605-b426-4d11-b9b4-52a78a2452eb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container {
      position: relative;
    }

    .s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0574a605-b426-4d11-b9b4-52a78a2452eb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-0574a605-b426-4d11-b9b4-52a78a2452eb {
  
  
  
  
}

#s-0574a605-b426-4d11-b9b4-52a78a2452eb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0574a605-b426-4d11-b9b4-52a78a2452eb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0574a605-b426-4d11-b9b4-52a78a2452eb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0574a605-b426-4d11-b9b4-52a78a2452eb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0574a605-b426-4d11-b9b4-52a78a2452eb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    
  }



  img.s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image {
    
    
    
    
  }


.s-0574a605-b426-4d11-b9b4-52a78a2452eb .shogun-image-content {
  
    align-items: center;
  
}

.s-0574a605-b426-4d11-b9b4-52a78a2452eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0574a605-b426-4d11-b9b4-52a78a2452eb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container {
      position: relative;
    }

    .s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0574a605-b426-4d11-b9b4-52a78a2452eb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-0574a605-b426-4d11-b9b4-52a78a2452eb {
  
  
  
  
}

#s-0574a605-b426-4d11-b9b4-52a78a2452eb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0574a605-b426-4d11-b9b4-52a78a2452eb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0574a605-b426-4d11-b9b4-52a78a2452eb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0574a605-b426-4d11-b9b4-52a78a2452eb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0574a605-b426-4d11-b9b4-52a78a2452eb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    
  }



  img.s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image {
    
    
    
    
  }


.s-0574a605-b426-4d11-b9b4-52a78a2452eb .shogun-image-content {
  
    align-items: center;
  
}

.s-0574a605-b426-4d11-b9b4-52a78a2452eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0574a605-b426-4d11-b9b4-52a78a2452eb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container {
      position: relative;
    }

    .s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0574a605-b426-4d11-b9b4-52a78a2452eb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-0574a605-b426-4d11-b9b4-52a78a2452eb {
  
  
  
  
}

#s-0574a605-b426-4d11-b9b4-52a78a2452eb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0574a605-b426-4d11-b9b4-52a78a2452eb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0574a605-b426-4d11-b9b4-52a78a2452eb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0574a605-b426-4d11-b9b4-52a78a2452eb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0574a605-b426-4d11-b9b4-52a78a2452eb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    
  }



  img.s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image {
    
    
    
    
  }


.s-0574a605-b426-4d11-b9b4-52a78a2452eb .shogun-image-content {
  
    align-items: center;
  
}

.s-0574a605-b426-4d11-b9b4-52a78a2452eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0574a605-b426-4d11-b9b4-52a78a2452eb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container {
      position: relative;
    }

    .s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0574a605-b426-4d11-b9b4-52a78a2452eb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-0574a605-b426-4d11-b9b4-52a78a2452eb {
  
  
  
  
}

#s-0574a605-b426-4d11-b9b4-52a78a2452eb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0574a605-b426-4d11-b9b4-52a78a2452eb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0574a605-b426-4d11-b9b4-52a78a2452eb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0574a605-b426-4d11-b9b4-52a78a2452eb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0574a605-b426-4d11-b9b4-52a78a2452eb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    
  }



  img.s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image {
    
    
    
    
  }


.s-0574a605-b426-4d11-b9b4-52a78a2452eb .shogun-image-content {
  
    align-items: center;
  
}

.s-0574a605-b426-4d11-b9b4-52a78a2452eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0574a605-b426-4d11-b9b4-52a78a2452eb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container {
      position: relative;
    }

    .s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0574a605-b426-4d11-b9b4-52a78a2452eb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0574a605-b426-4d11-b9b4-52a78a2452eb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      
    }
  }

}
#s-7fe0dae0-e6e6-485b-aa7d-5507b22e78f4 {
  margin-top: 8px;
margin-left: 8%;
margin-right: 8%;
}
@media (min-width: 768px) and (max-width: 991px){#s-7fe0dae0-e6e6-485b-aa7d-5507b22e78f4 {
  display: none;
}
#s-7fe0dae0-e6e6-485b-aa7d-5507b22e78f4, #wrap-s-7fe0dae0-e6e6-485b-aa7d-5507b22e78f4 { display: none !important; }}
#s-baf325c6-8dcb-4bd1-8f5b-2c1aa445f2f3 {
  margin-left: 8%;
margin-right: 8%;
}
@media (min-width: 1200px){#s-baf325c6-8dcb-4bd1-8f5b-2c1aa445f2f3 {
  display: none;
}
#s-baf325c6-8dcb-4bd1-8f5b-2c1aa445f2f3, #wrap-s-baf325c6-8dcb-4bd1-8f5b-2c1aa445f2f3 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-baf325c6-8dcb-4bd1-8f5b-2c1aa445f2f3 {
  display: none;
}
#s-baf325c6-8dcb-4bd1-8f5b-2c1aa445f2f3, #wrap-s-baf325c6-8dcb-4bd1-8f5b-2c1aa445f2f3 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-baf325c6-8dcb-4bd1-8f5b-2c1aa445f2f3 {
  margin-left: 4%;
margin-right: 4%;
}
}@media (max-width: 767px){#s-baf325c6-8dcb-4bd1-8f5b-2c1aa445f2f3 {
  display: none;
}
#s-baf325c6-8dcb-4bd1-8f5b-2c1aa445f2f3, #wrap-s-baf325c6-8dcb-4bd1-8f5b-2c1aa445f2f3 { display: none !important; }}
#s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 {
  margin-top: 10px;
margin-left: 21%;
margin-bottom: 0px;
margin-right: 21%;
max-width: 150px;
aspect-ratio: 400/68;
text-align: center;
}
@media (min-width: 1200px){#s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 {
  margin-left: 23%;
margin-right: 23%;
}
}


.shg-image-margin-container-s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 {
  margin-left: 21%;
  margin-right: 21%;
  margin-top: 10px;
  margin-bottom: 0px;
}

#s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 150px;
  }



  img.s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 .shogun-image-content {
  
    align-items: center;
  
}

.s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shg-align-container {
  display: flex;
  justify-content: center
}

.s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container {
      position: relative;
    }

    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 {
  margin-left: 23%;
  margin-right: 23%;
  
  
}

#s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 150px;
  }



  img.s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 .shogun-image-content {
  
    align-items: center;
  
}

.s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shg-align-container {
  display: flex;
  justify-content: center
}

.s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container {
      position: relative;
    }

    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 {
  
  
  
  
}

#s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 150px;
  }



  img.s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 .shogun-image-content {
  
    align-items: center;
  
}

.s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shg-align-container {
  display: flex;
  justify-content: center
}

.s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container {
      position: relative;
    }

    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 {
  
  
  
  
}

#s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 150px;
  }



  img.s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 .shogun-image-content {
  
    align-items: center;
  
}

.s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shg-align-container {
  display: flex;
  justify-content: center
}

.s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container {
      position: relative;
    }

    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 {
  
  
  
  
}

#s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 150px;
  }



  img.s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 .shogun-image-content {
  
    align-items: center;
  
}

.s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shg-align-container {
  display: flex;
  justify-content: center
}

.s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container {
      position: relative;
    }

    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-885386bc-1e67-4bfd-9ddf-cba64ca8a559 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}
#s-737fd43a-f33b-46af-afe3-b73d74215119 {
  margin-left: 5%;
margin-right: 5%;
}

#s-4817a34c-1fd7-4076-8155-40cdc3c345f9 {
  margin-top: 10px;
margin-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}

#s-4817a34c-1fd7-4076-8155-40cdc3c345f9 {
  background-image: url();
}








#s-4817a34c-1fd7-4076-8155-40cdc3c345f9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4817a34c-1fd7-4076-8155-40cdc3c345f9 {
  cursor: pointer;
}#s-4817a34c-1fd7-4076-8155-40cdc3c345f9.shg-box.shg-c {
  justify-content: flex-start;
}

#s-34fad2e6-7227-4df2-85e1-cd3bbd15f482 {
  margin-left: 3%;
margin-right: 3%;
text-align: center;
}



.shg-image-margin-container-s-34fad2e6-7227-4df2-85e1-cd3bbd15f482 {
  margin-left: 3%;
  margin-right: 3%;
  
  
}

#s-34fad2e6-7227-4df2-85e1-cd3bbd15f482 {
  margin: 0 !important;
}





  img.s-34fad2e6-7227-4df2-85e1-cd3bbd15f482.shogun-image {
    
    
    
    
  }


.s-34fad2e6-7227-4df2-85e1-cd3bbd15f482 .shogun-image-content {
  
    align-items: center;
  
}

.s-34fad2e6-7227-4df2-85e1-cd3bbd15f482.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34fad2e6-7227-4df2-85e1-cd3bbd15f482.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34fad2e6-7227-4df2-85e1-cd3bbd15f482.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-34fad2e6-7227-4df2-85e1-cd3bbd15f482 {
  
  
  
  
}

#s-34fad2e6-7227-4df2-85e1-cd3bbd15f482 {
  margin: 0 !important;
}





  img.s-34fad2e6-7227-4df2-85e1-cd3bbd15f482.shogun-image {
    
    
    
    
  }


.s-34fad2e6-7227-4df2-85e1-cd3bbd15f482 .shogun-image-content {
  
    align-items: center;
  
}

.s-34fad2e6-7227-4df2-85e1-cd3bbd15f482.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34fad2e6-7227-4df2-85e1-cd3bbd15f482.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34fad2e6-7227-4df2-85e1-cd3bbd15f482.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-34fad2e6-7227-4df2-85e1-cd3bbd15f482 {
  
  
  
  
}

#s-34fad2e6-7227-4df2-85e1-cd3bbd15f482 {
  margin: 0 !important;
}





  img.s-34fad2e6-7227-4df2-85e1-cd3bbd15f482.shogun-image {
    
    
    
    
  }


.s-34fad2e6-7227-4df2-85e1-cd3bbd15f482 .shogun-image-content {
  
    align-items: center;
  
}

.s-34fad2e6-7227-4df2-85e1-cd3bbd15f482.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34fad2e6-7227-4df2-85e1-cd3bbd15f482.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34fad2e6-7227-4df2-85e1-cd3bbd15f482.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-34fad2e6-7227-4df2-85e1-cd3bbd15f482 {
  
  
  
  
}

#s-34fad2e6-7227-4df2-85e1-cd3bbd15f482 {
  margin: 0 !important;
}





  img.s-34fad2e6-7227-4df2-85e1-cd3bbd15f482.shogun-image {
    
    
    
    
  }


.s-34fad2e6-7227-4df2-85e1-cd3bbd15f482 .shogun-image-content {
  
    align-items: center;
  
}

.s-34fad2e6-7227-4df2-85e1-cd3bbd15f482.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34fad2e6-7227-4df2-85e1-cd3bbd15f482.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34fad2e6-7227-4df2-85e1-cd3bbd15f482.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){

.shg-image-margin-container-s-34fad2e6-7227-4df2-85e1-cd3bbd15f482 {
  
  
  
  
}

#s-34fad2e6-7227-4df2-85e1-cd3bbd15f482 {
  margin: 0 !important;
}





  img.s-34fad2e6-7227-4df2-85e1-cd3bbd15f482.shogun-image {
    
    
    
    
  }


.s-34fad2e6-7227-4df2-85e1-cd3bbd15f482 .shogun-image-content {
  
    align-items: center;
  
}

.s-34fad2e6-7227-4df2-85e1-cd3bbd15f482.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34fad2e6-7227-4df2-85e1-cd3bbd15f482.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34fad2e6-7227-4df2-85e1-cd3bbd15f482.shogun-image {
  box-sizing: border-box;
}




}
#s-5bb7e1e3-c661-4dc4-815f-15690fc5166d {
  margin-top: 8px;
margin-left: 8%;
margin-right: 8%;
}
@media (min-width: 992px) and (max-width: 1199px){#s-5bb7e1e3-c661-4dc4-815f-15690fc5166d {
  margin-left: 0%;
margin-right: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-5bb7e1e3-c661-4dc4-815f-15690fc5166d {
  display: none;
}
#s-5bb7e1e3-c661-4dc4-815f-15690fc5166d, #wrap-s-5bb7e1e3-c661-4dc4-815f-15690fc5166d { display: none !important; }}
#s-fd81b991-9a54-4563-b98a-a3db5989c8dc {
  margin-left: 8%;
margin-right: 8%;
}
@media (min-width: 1200px){#s-fd81b991-9a54-4563-b98a-a3db5989c8dc {
  display: none;
}
#s-fd81b991-9a54-4563-b98a-a3db5989c8dc, #wrap-s-fd81b991-9a54-4563-b98a-a3db5989c8dc { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fd81b991-9a54-4563-b98a-a3db5989c8dc {
  display: none;
}
#s-fd81b991-9a54-4563-b98a-a3db5989c8dc, #wrap-s-fd81b991-9a54-4563-b98a-a3db5989c8dc { display: none !important; }}@media (max-width: 767px){#s-fd81b991-9a54-4563-b98a-a3db5989c8dc {
  display: none;
}
#s-fd81b991-9a54-4563-b98a-a3db5989c8dc, #wrap-s-fd81b991-9a54-4563-b98a-a3db5989c8dc { display: none !important; }}
#s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 {
  margin-top: 10px;
margin-left: 21%;
margin-bottom: 0px;
margin-right: 21%;
max-width: 150px;
aspect-ratio: 400/68;
text-align: center;
}
@media (min-width: 1200px){#s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 {
  margin-left: 23%;
margin-right: 23%;
}
}


.shg-image-margin-container-s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 {
  margin-left: 21%;
  margin-right: 21%;
  margin-top: 10px;
  margin-bottom: 0px;
}

#s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 150px;
  }



  img.s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 .shogun-image-content {
  
    align-items: center;
  
}

.s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container {
      position: relative;
    }

    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 {
  margin-left: 23%;
  margin-right: 23%;
  
  
}

#s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 150px;
  }



  img.s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 .shogun-image-content {
  
    align-items: center;
  
}

.s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container {
      position: relative;
    }

    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 {
  
  
  
  
}

#s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 150px;
  }



  img.s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 .shogun-image-content {
  
    align-items: center;
  
}

.s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container {
      position: relative;
    }

    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 {
  
  
  
  
}

#s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 150px;
  }



  img.s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 .shogun-image-content {
  
    align-items: center;
  
}

.s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container {
      position: relative;
    }

    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 {
  
  
  
  
}

#s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 150px;
  }



  img.s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image {
    
    
    
    max-height: 150px;
  }


.s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 .shogun-image-content {
  
    align-items: center;
  
}

.s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container {
      position: relative;
    }

    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd1feaa8-3a3e-4bb1-a19a-302b65ce1a56 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 150px;
    }
  }

}
#s-fe2ee6aa-bda1-42ab-a82e-b25c41a4e1a4 {
  margin-left: 5%;
margin-right: 5%;
}

.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.shg-sld-slides {
  word-break: break-word;
  position: relative;
  overflow-x: hidden;
}

.shg-sld-slides-padded {
  padding: 0 35px;
}

.shg-sld-nav-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  min-height: 35px;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shg-sld-nav-button > svg {
  height: 100%;
  width: 100%;
}

.shg-sld-nav-button.shg-sld-left {
  left: 0;
}

.shg-sld-nav-button.shg-sld-left-over-content {
  left: 2%;
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
}

.shg-sld-nav-button.shg-sld-right-over-content {
  right: 2%;
}

.shg-sld-nav-button.shg-sld-disabled {
  cursor: default;
  opacity: 0.2;
}

.shg-sld-item {
  display: none;
}

.shg-sld-item.shg-sld-active {
  display: block;
}

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.shg-sld-dots-on-top {
  margin-top: -30px !important;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block !important;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  opacity: 0.5;
}

.shg-sld-dot:first-child {
  margin-left: 0px;
}

.shg-sld-dot.shg-sld-active {
  opacity: 1;
}

@keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#s-e5957f34-3d59-430f-9477-8d8ace2cc24b {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-e5957f34-3d59-430f-9477-8d8ace2cc24b {
  display: none;
}
#s-e5957f34-3d59-430f-9477-8d8ace2cc24b, #wrap-s-e5957f34-3d59-430f-9477-8d8ace2cc24b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e5957f34-3d59-430f-9477-8d8ace2cc24b {
  display: none;
}
#s-e5957f34-3d59-430f-9477-8d8ace2cc24b, #wrap-s-e5957f34-3d59-430f-9477-8d8ace2cc24b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e5957f34-3d59-430f-9477-8d8ace2cc24b {
  display: none;
}
#s-e5957f34-3d59-430f-9477-8d8ace2cc24b, #wrap-s-e5957f34-3d59-430f-9477-8d8ace2cc24b { display: none !important; }}
#s-e5957f34-3d59-430f-9477-8d8ace2cc24b .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-e5957f34-3d59-430f-9477-8d8ace2cc24b .shg-sld-nav-button.shg-sld-left,
#s-e5957f34-3d59-430f-9477-8d8ace2cc24b .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-1966f154-9dcf-4f25-b23d-569ec439bd0e {
  margin-top: 10px;
margin-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}

#s-1966f154-9dcf-4f25-b23d-569ec439bd0e {
  background-image: url();
}








#s-1966f154-9dcf-4f25-b23d-569ec439bd0e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1966f154-9dcf-4f25-b23d-569ec439bd0e {
  cursor: pointer;
}#s-1966f154-9dcf-4f25-b23d-569ec439bd0e.shg-box.shg-c {
  justify-content: flex-start;
}

#s-df5308a2-ba15-451f-92d0-b582c9bb8070 {
  margin-left: 3%;
margin-right: 3%;
max-width: 1946px;
text-align: center;
}



.shg-image-margin-container-s-df5308a2-ba15-451f-92d0-b582c9bb8070 {
  margin-left: 3%;
  margin-right: 3%;
  
  
}

#s-df5308a2-ba15-451f-92d0-b582c9bb8070 {
  margin: 0 !important;
}





  img.s-df5308a2-ba15-451f-92d0-b582c9bb8070.shogun-image {
    
    
    
    max-height: 1946px;
  }


.s-df5308a2-ba15-451f-92d0-b582c9bb8070 .shogun-image-content {
  
    align-items: center;
  
}

.s-df5308a2-ba15-451f-92d0-b582c9bb8070.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df5308a2-ba15-451f-92d0-b582c9bb8070.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df5308a2-ba15-451f-92d0-b582c9bb8070.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-df5308a2-ba15-451f-92d0-b582c9bb8070 {
  
  
  
  
}

#s-df5308a2-ba15-451f-92d0-b582c9bb8070 {
  margin: 0 !important;
}





  img.s-df5308a2-ba15-451f-92d0-b582c9bb8070.shogun-image {
    
    
    
    max-height: 1946px;
  }


.s-df5308a2-ba15-451f-92d0-b582c9bb8070 .shogun-image-content {
  
    align-items: center;
  
}

.s-df5308a2-ba15-451f-92d0-b582c9bb8070.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df5308a2-ba15-451f-92d0-b582c9bb8070.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df5308a2-ba15-451f-92d0-b582c9bb8070.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-df5308a2-ba15-451f-92d0-b582c9bb8070 {
  
  
  
  
}

#s-df5308a2-ba15-451f-92d0-b582c9bb8070 {
  margin: 0 !important;
}





  img.s-df5308a2-ba15-451f-92d0-b582c9bb8070.shogun-image {
    
    
    
    max-height: 1946px;
  }


.s-df5308a2-ba15-451f-92d0-b582c9bb8070 .shogun-image-content {
  
    align-items: center;
  
}

.s-df5308a2-ba15-451f-92d0-b582c9bb8070.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df5308a2-ba15-451f-92d0-b582c9bb8070.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df5308a2-ba15-451f-92d0-b582c9bb8070.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-df5308a2-ba15-451f-92d0-b582c9bb8070 {
  
  
  
  
}

#s-df5308a2-ba15-451f-92d0-b582c9bb8070 {
  margin: 0 !important;
}





  img.s-df5308a2-ba15-451f-92d0-b582c9bb8070.shogun-image {
    
    
    
    max-height: 1946px;
  }


.s-df5308a2-ba15-451f-92d0-b582c9bb8070 .shogun-image-content {
  
    align-items: center;
  
}

.s-df5308a2-ba15-451f-92d0-b582c9bb8070.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df5308a2-ba15-451f-92d0-b582c9bb8070.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df5308a2-ba15-451f-92d0-b582c9bb8070.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){

.shg-image-margin-container-s-df5308a2-ba15-451f-92d0-b582c9bb8070 {
  
  
  
  
}

#s-df5308a2-ba15-451f-92d0-b582c9bb8070 {
  margin: 0 !important;
}





  img.s-df5308a2-ba15-451f-92d0-b582c9bb8070.shogun-image {
    
    
    
    max-height: 1946px;
  }


.s-df5308a2-ba15-451f-92d0-b582c9bb8070 .shogun-image-content {
  
    align-items: center;
  
}

.s-df5308a2-ba15-451f-92d0-b582c9bb8070.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df5308a2-ba15-451f-92d0-b582c9bb8070.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df5308a2-ba15-451f-92d0-b582c9bb8070.shogun-image {
  box-sizing: border-box;
}




}
#s-fd1546a9-5940-4974-83fd-9ed80bea96db {
  margin-left: 8%;
margin-right: 8%;
}
@media (min-width: 768px) and (max-width: 991px){#s-fd1546a9-5940-4974-83fd-9ed80bea96db {
  display: none;
}
#s-fd1546a9-5940-4974-83fd-9ed80bea96db, #wrap-s-fd1546a9-5940-4974-83fd-9ed80bea96db { display: none !important; }}@media (max-width: 767px){#s-fd1546a9-5940-4974-83fd-9ed80bea96db {
  margin-top: 6px;
}
}
#s-9710b9e2-285a-4fa4-a5d6-f709fbaafb01 {
  margin-left: 8%;
margin-right: 8%;
}
@media (min-width: 1200px){#s-9710b9e2-285a-4fa4-a5d6-f709fbaafb01 {
  display: none;
}
#s-9710b9e2-285a-4fa4-a5d6-f709fbaafb01, #wrap-s-9710b9e2-285a-4fa4-a5d6-f709fbaafb01 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9710b9e2-285a-4fa4-a5d6-f709fbaafb01 {
  display: none;
}
#s-9710b9e2-285a-4fa4-a5d6-f709fbaafb01, #wrap-s-9710b9e2-285a-4fa4-a5d6-f709fbaafb01 { display: none !important; }}@media (max-width: 767px){#s-9710b9e2-285a-4fa4-a5d6-f709fbaafb01 {
  display: none;
}
#s-9710b9e2-285a-4fa4-a5d6-f709fbaafb01, #wrap-s-9710b9e2-285a-4fa4-a5d6-f709fbaafb01 { display: none !important; }}
#s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 {
  margin-left: 21%;
margin-bottom: 0px;
margin-right: 21%;
max-width: 400px;
aspect-ratio: 400/68;
text-align: center;
}
@media (max-width: 767px){#s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 {
  margin-top: 10px;
max-width: 150px;
}
}


.shg-image-margin-container-s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 {
  margin-left: 21%;
  margin-right: 21%;
  
  margin-bottom: 0px;
}

#s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container {
      position: relative;
    }

    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 {
  
  
  
  
}

#s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container {
      position: relative;
    }

    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 {
  
  
  
  
}

#s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container {
      position: relative;
    }

    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 {
  
  
  
  
}

#s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container {
      position: relative;
    }

    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 {
  
  
  margin-top: 10px;
  
}

#s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container {
      position: relative;
    }

    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bd91ed43-6ecc-4641-b2e8-ca6c1d41abb4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-85362bdd-7888-4b8d-b174-6865769028cd {
  margin-left: 5%;
margin-right: 5%;
}

#s-018ae9e9-fd59-485d-8853-23a4a43d2fb3 {
  margin-top: 10px;
margin-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}

#s-018ae9e9-fd59-485d-8853-23a4a43d2fb3 {
  background-image: url();
}








#s-018ae9e9-fd59-485d-8853-23a4a43d2fb3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-018ae9e9-fd59-485d-8853-23a4a43d2fb3 {
  cursor: pointer;
}#s-018ae9e9-fd59-485d-8853-23a4a43d2fb3.shg-box.shg-c {
  justify-content: flex-start;
}

#s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 {
  margin-left: 3%;
margin-right: 3%;
max-width: 1346px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 {
  margin-left: 3%;
  margin-right: 3%;
  
  
}

#s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1346px;
  }



  img.s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image {
    
    
    
    max-height: 1346px;
  }


.s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 .shogun-image-content {
  
    align-items: center;
  
}

.s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container {
      position: relative;
    }

    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1346px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 {
  
  
  
  
}

#s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1346px;
  }



  img.s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image {
    
    
    
    max-height: 1346px;
  }


.s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 .shogun-image-content {
  
    align-items: center;
  
}

.s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container {
      position: relative;
    }

    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1346px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 {
  
  
  
  
}

#s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1346px;
  }



  img.s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image {
    
    
    
    max-height: 1346px;
  }


.s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 .shogun-image-content {
  
    align-items: center;
  
}

.s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container {
      position: relative;
    }

    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1346px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 {
  
  
  
  
}

#s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1346px;
  }



  img.s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image {
    
    
    
    max-height: 1346px;
  }


.s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 .shogun-image-content {
  
    align-items: center;
  
}

.s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container {
      position: relative;
    }

    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1346px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 {
  
  
  
  
}

#s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1346px;
  }



  img.s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image {
    
    
    
    max-height: 1346px;
  }


.s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 .shogun-image-content {
  
    align-items: center;
  
}

.s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container {
      position: relative;
    }

    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ddc799be-4a95-4c7f-8bd8-b9073ea32072 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1346px;
    }
  }

}
#s-ff39faca-06d9-402c-adea-1bab695eea7d {
  margin-top: 6px;
margin-left: 8%;
margin-right: 8%;
}
@media (min-width: 768px) and (max-width: 991px){#s-ff39faca-06d9-402c-adea-1bab695eea7d {
  display: none;
}
#s-ff39faca-06d9-402c-adea-1bab695eea7d, #wrap-s-ff39faca-06d9-402c-adea-1bab695eea7d { display: none !important; }}
#s-050017ff-47e8-49ca-a494-7e949592170a {
  margin-left: 8%;
margin-right: 8%;
}
@media (min-width: 1200px){#s-050017ff-47e8-49ca-a494-7e949592170a {
  display: none;
}
#s-050017ff-47e8-49ca-a494-7e949592170a, #wrap-s-050017ff-47e8-49ca-a494-7e949592170a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-050017ff-47e8-49ca-a494-7e949592170a {
  display: none;
}
#s-050017ff-47e8-49ca-a494-7e949592170a, #wrap-s-050017ff-47e8-49ca-a494-7e949592170a { display: none !important; }}@media (max-width: 767px){#s-050017ff-47e8-49ca-a494-7e949592170a {
  display: none;
}
#s-050017ff-47e8-49ca-a494-7e949592170a, #wrap-s-050017ff-47e8-49ca-a494-7e949592170a { display: none !important; }}
#s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 {
  margin-left: 21%;
margin-bottom: 0px;
margin-right: 21%;
max-width: 400px;
aspect-ratio: 400/68;
text-align: center;
}
@media (max-width: 767px){#s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 {
  margin-top: 10px;
max-width: 150px;
}
}


.shg-image-margin-container-s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 {
  margin-left: 21%;
  margin-right: 21%;
  
  margin-bottom: 0px;
}

#s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 .shogun-image-content {
  
    align-items: center;
  
}

.s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container {
      position: relative;
    }

    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 {
  
  
  
  
}

#s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 .shogun-image-content {
  
    align-items: center;
  
}

.s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container {
      position: relative;
    }

    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 {
  
  
  
  
}

#s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 .shogun-image-content {
  
    align-items: center;
  
}

.s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container {
      position: relative;
    }

    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 {
  
  
  
  
}

#s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 .shogun-image-content {
  
    align-items: center;
  
}

.s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container {
      position: relative;
    }

    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 {
  
  
  margin-top: 10px;
  
}

#s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 .shogun-image-content {
  
    align-items: center;
  
}

.s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container {
      position: relative;
    }

    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7864ff94-b60e-4e9f-ae34-19d548a9bb85 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-62871afa-a6d1-4f48-8929-4ba4dd31494a {
  margin-left: 5%;
margin-right: 5%;
}

#s-08eb71d7-b3cf-4fd0-bf2c-bdd4d7e78bbb {
  margin-top: 10px;
margin-bottom: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}

#s-08eb71d7-b3cf-4fd0-bf2c-bdd4d7e78bbb {
  background-image: url();
}








#s-08eb71d7-b3cf-4fd0-bf2c-bdd4d7e78bbb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-08eb71d7-b3cf-4fd0-bf2c-bdd4d7e78bbb {
  cursor: pointer;
}#s-08eb71d7-b3cf-4fd0-bf2c-bdd4d7e78bbb.shg-box.shg-c {
  justify-content: flex-start;
}

#s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4 {
  margin-left: 3%;
margin-right: 3%;
max-width: 550px;
text-align: center;
}
@media (max-width: 767px){#s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4 {
  max-width: 550px;
}
}


.shg-image-margin-container-s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4 {
  margin-left: 3%;
  margin-right: 3%;
  
  
}

#s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4 {
  margin: 0 !important;
}





  img.s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4.shogun-image {
    
    
    
    max-height: 550px;
  }


.s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4 {
  
  
  
  
}

#s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4 {
  margin: 0 !important;
}





  img.s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4.shogun-image {
    
    
    
    max-height: 550px;
  }


.s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4 {
  
  
  
  
}

#s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4 {
  margin: 0 !important;
}





  img.s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4.shogun-image {
    
    
    
    max-height: 550px;
  }


.s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4 {
  
  
  
  
}

#s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4 {
  margin: 0 !important;
}





  img.s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4.shogun-image {
    
    
    
    max-height: 550px;
  }


.s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){

.shg-image-margin-container-s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4 {
  
  
  
  
}

#s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4 {
  margin: 0 !important;
}





  img.s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4.shogun-image {
    
    
    
    max-height: 550px;
  }


.s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4 .shogun-image-content {
  
    align-items: center;
  
}

.s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cee9ed1c-ebdb-46fd-9bf2-6ed814a78fb4.shogun-image {
  box-sizing: border-box;
}




}
#s-bcb35c15-c01a-4481-acf8-a6a52bf35961 {
  margin-top: 6px;
margin-left: 8%;
margin-right: 8%;
}
@media (min-width: 768px) and (max-width: 991px){#s-bcb35c15-c01a-4481-acf8-a6a52bf35961 {
  display: none;
}
#s-bcb35c15-c01a-4481-acf8-a6a52bf35961, #wrap-s-bcb35c15-c01a-4481-acf8-a6a52bf35961 { display: none !important; }}@media (max-width: 767px){#s-bcb35c15-c01a-4481-acf8-a6a52bf35961 {
  margin-left: 15%;
margin-right: 15%;
}
}
#s-a180443b-a3e7-4212-8423-a4d4bf1e069e {
  margin-left: 8%;
margin-right: 8%;
}
@media (min-width: 1200px){#s-a180443b-a3e7-4212-8423-a4d4bf1e069e {
  display: none;
}
#s-a180443b-a3e7-4212-8423-a4d4bf1e069e, #wrap-s-a180443b-a3e7-4212-8423-a4d4bf1e069e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a180443b-a3e7-4212-8423-a4d4bf1e069e {
  display: none;
}
#s-a180443b-a3e7-4212-8423-a4d4bf1e069e, #wrap-s-a180443b-a3e7-4212-8423-a4d4bf1e069e { display: none !important; }}@media (max-width: 767px){#s-a180443b-a3e7-4212-8423-a4d4bf1e069e {
  display: none;
}
#s-a180443b-a3e7-4212-8423-a4d4bf1e069e, #wrap-s-a180443b-a3e7-4212-8423-a4d4bf1e069e { display: none !important; }}
#s-a8e1faeb-33b2-4b21-aef3-feceeadc41db {
  margin-left: 21%;
margin-bottom: 0px;
margin-right: 21%;
max-width: 400px;
aspect-ratio: 400/68;
text-align: center;
}
@media (max-width: 767px){#s-a8e1faeb-33b2-4b21-aef3-feceeadc41db {
  margin-top: 10px;
max-width: 150px;
}
}


.shg-image-margin-container-s-a8e1faeb-33b2-4b21-aef3-feceeadc41db {
  margin-left: 21%;
  margin-right: 21%;
  
  margin-bottom: 0px;
}

#s-a8e1faeb-33b2-4b21-aef3-feceeadc41db {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a8e1faeb-33b2-4b21-aef3-feceeadc41db .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-a8e1faeb-33b2-4b21-aef3-feceeadc41db .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a8e1faeb-33b2-4b21-aef3-feceeadc41db .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a8e1faeb-33b2-4b21-aef3-feceeadc41db img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-a8e1faeb-33b2-4b21-aef3-feceeadc41db .shogun-image-content {
  
    align-items: center;
  
}

.s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container {
      position: relative;
    }

    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-a8e1faeb-33b2-4b21-aef3-feceeadc41db {
  
  
  
  
}

#s-a8e1faeb-33b2-4b21-aef3-feceeadc41db {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a8e1faeb-33b2-4b21-aef3-feceeadc41db .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-a8e1faeb-33b2-4b21-aef3-feceeadc41db .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a8e1faeb-33b2-4b21-aef3-feceeadc41db .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a8e1faeb-33b2-4b21-aef3-feceeadc41db img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-a8e1faeb-33b2-4b21-aef3-feceeadc41db .shogun-image-content {
  
    align-items: center;
  
}

.s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container {
      position: relative;
    }

    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-a8e1faeb-33b2-4b21-aef3-feceeadc41db {
  
  
  
  
}

#s-a8e1faeb-33b2-4b21-aef3-feceeadc41db {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a8e1faeb-33b2-4b21-aef3-feceeadc41db .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-a8e1faeb-33b2-4b21-aef3-feceeadc41db .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a8e1faeb-33b2-4b21-aef3-feceeadc41db .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a8e1faeb-33b2-4b21-aef3-feceeadc41db img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-a8e1faeb-33b2-4b21-aef3-feceeadc41db .shogun-image-content {
  
    align-items: center;
  
}

.s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container {
      position: relative;
    }

    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-a8e1faeb-33b2-4b21-aef3-feceeadc41db {
  
  
  
  
}

#s-a8e1faeb-33b2-4b21-aef3-feceeadc41db {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a8e1faeb-33b2-4b21-aef3-feceeadc41db .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-a8e1faeb-33b2-4b21-aef3-feceeadc41db .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a8e1faeb-33b2-4b21-aef3-feceeadc41db .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a8e1faeb-33b2-4b21-aef3-feceeadc41db img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-a8e1faeb-33b2-4b21-aef3-feceeadc41db .shogun-image-content {
  
    align-items: center;
  
}

.s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container {
      position: relative;
    }

    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-a8e1faeb-33b2-4b21-aef3-feceeadc41db {
  
  
  margin-top: 10px;
  
}

#s-a8e1faeb-33b2-4b21-aef3-feceeadc41db {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a8e1faeb-33b2-4b21-aef3-feceeadc41db .shg-image-content-wrapper {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }

    #s-a8e1faeb-33b2-4b21-aef3-feceeadc41db .shogun-image-link {
      aspect-ratio: 400/68;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a8e1faeb-33b2-4b21-aef3-feceeadc41db .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a8e1faeb-33b2-4b21-aef3-feceeadc41db img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-a8e1faeb-33b2-4b21-aef3-feceeadc41db .shogun-image-content {
  
    align-items: center;
  
}

.s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db {
      --shg-aspect-ratio: calc(400/68); 
    }

    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container {
      position: relative;
    }

    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a8e1faeb-33b2-4b21-aef3-feceeadc41db img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-0209ca17-d975-4784-b955-2e8911faf9ba {
  margin-left: 5%;
margin-right: 5%;
}

#s-f97aa4d0-7dcc-4d4c-bd65-ebfbe8c04c27 {
  margin-top: 30px;
margin-bottom: 30px;
min-height: 50px;
background-color: rgba(244, 244, 244, 1);
}








#s-f97aa4d0-7dcc-4d4c-bd65-ebfbe8c04c27 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f97aa4d0-7dcc-4d4c-bd65-ebfbe8c04c27 {
  cursor: pointer;
}#s-f97aa4d0-7dcc-4d4c-bd65-ebfbe8c04c27.shg-box.shg-c {
  justify-content: center;
}

#s-ecc73c33-f8fb-4a94-9730-fc2c1665e37e {
  margin-top: 20px;
margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
background-color: rgba(244, 244, 244, 1);
}
@media (min-width: 1200px){#s-ecc73c33-f8fb-4a94-9730-fc2c1665e37e {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ecc73c33-f8fb-4a94-9730-fc2c1665e37e {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-ecc73c33-f8fb-4a94-9730-fc2c1665e37e {
  
}
}@media (max-width: 767px){#s-ecc73c33-f8fb-4a94-9730-fc2c1665e37e {
  
}
}
@media (min-width: 0px) {
[id="s-ecc73c33-f8fb-4a94-9730-fc2c1665e37e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ecc73c33-f8fb-4a94-9730-fc2c1665e37e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-ecc73c33-f8fb-4a94-9730-fc2c1665e37e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-ecc73c33-f8fb-4a94-9730-fc2c1665e37e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-ecc73c33-f8fb-4a94-9730-fc2c1665e37e"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-dd51aaa2-f339-4753-b58a-b688c261537c {
  padding-left: 7%;
padding-right: 7%;
}
@media (min-width: 1200px){#s-dd51aaa2-f339-4753-b58a-b688c261537c {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-dd51aaa2-f339-4753-b58a-b688c261537c {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-dd51aaa2-f339-4753-b58a-b688c261537c {
  padding-left: 4%;
padding-right: 0%;
}
}@media (max-width: 767px){#s-dd51aaa2-f339-4753-b58a-b688c261537c {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
}
}







#s-dd51aaa2-f339-4753-b58a-b688c261537c > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
  display: block;
}#s-dd51aaa2-f339-4753-b58a-b688c261537c {
  cursor: pointer;
}#s-dd51aaa2-f339-4753-b58a-b688c261537c.shg-box.shg-c {
  justify-content: center;
}

#s-d2875d4e-bef0-4bd2-8a99-edc30a87c768 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d2875d4e-bef0-4bd2-8a99-edc30a87c768 .shogun-heading-component h1 {
  color: rgba(30, 100, 158, 1);
  font-weight:  normal ;
  font-family: "Zilla Slab";
  font-style:  normal ;
  font-size: 22px;
  
  letter-spacing: 0px;
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-d2875d4e-bef0-4bd2-8a99-edc30a87c768 .shogun-heading-component h1 {
  color: rgba(30, 100, 158, 1);
  font-weight:  normal ;
  font-family: "Zilla Slab";
  font-style:  normal ;
  font-size: 17px;
  
  letter-spacing: 0px;
  text-align: left;
}


}
#s-fcbc7453-95e4-435c-a624-bfd2c41bafbe {
  margin-top: 0px;
margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-fcbc7453-95e4-435c-a624-bfd2c41bafbe {
  margin-bottom: 10px;
}
}
#s-fcbc7453-95e4-435c-a624-bfd2c41bafbe .shogun-heading-component h1 {
  color: rgba(21, 44, 78, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 27px;
  
  letter-spacing: 0px;
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-fcbc7453-95e4-435c-a624-bfd2c41bafbe .shogun-heading-component h1 {
  color: rgba(21, 44, 78, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 19px;
  
  letter-spacing: 0px;
  text-align: left;
}


}
#s-0573da05-1152-4a60-bb38-94b8193279b2 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-0573da05-1152-4a60-bb38-94b8193279b2 {
  text-align: center;
}
}
#s-0573da05-1152-4a60-bb38-94b8193279b2 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-0573da05-1152-4a60-bb38-94b8193279b2 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}


}@media (max-width: 767px){#s-0573da05-1152-4a60-bb38-94b8193279b2 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 15px;
  
  
  text-align: left;
}


}
#s-498abb01-2d3f-42f6-8e95-394f43f8eaf7 {
  margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-498abb01-2d3f-42f6-8e95-394f43f8eaf7 {
  text-align: center;
}
}
#s-498abb01-2d3f-42f6-8e95-394f43f8eaf7 .shogun-heading-component h1 {
  color: rgba(30, 100, 158, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  letter-spacing: 0px;
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-498abb01-2d3f-42f6-8e95-394f43f8eaf7 .shogun-heading-component h1 {
  color: rgba(30, 100, 158, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  
  letter-spacing: 0px;
  text-align: left;
}


}@media (max-width: 767px){#s-498abb01-2d3f-42f6-8e95-394f43f8eaf7 .shogun-heading-component h1 {
  color: rgba(30, 100, 158, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 0px;
  text-align: left;
}


}
#s-6f1bc348-5f5e-4fdc-9c0a-d80913e94275 {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 4px;
background-color: rgba(21, 44, 78, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-6f1bc348-5f5e-4fdc-9c0a-d80913e94275:hover {background-color: rgba(30, 100, 158, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-6f1bc348-5f5e-4fdc-9c0a-d80913e94275:active {background-color: rgba(17, 17, 17, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (max-width: 767px){#s-6f1bc348-5f5e-4fdc-9c0a-d80913e94275 {
  text-align: center;
}
}

  #s-6f1bc348-5f5e-4fdc-9c0a-d80913e94275-root {
    text-align: left;
  }


#s-6f1bc348-5f5e-4fdc-9c0a-d80913e94275.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: normal;
  font-style: normal;
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6f1bc348-5f5e-4fdc-9c0a-d80913e94275-root {
    text-align: left;
  }


#s-6f1bc348-5f5e-4fdc-9c0a-d80913e94275.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: normal;
  font-style: normal;
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6f1bc348-5f5e-4fdc-9c0a-d80913e94275-root {
    text-align: left;
  }


#s-6f1bc348-5f5e-4fdc-9c0a-d80913e94275.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: normal;
  font-style: normal;
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6f1bc348-5f5e-4fdc-9c0a-d80913e94275-root {
    text-align: left;
  }


#s-6f1bc348-5f5e-4fdc-9c0a-d80913e94275.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  font-style: normal;
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6f1bc348-5f5e-4fdc-9c0a-d80913e94275-root {
    text-align: center;
  }


#s-6f1bc348-5f5e-4fdc-9c0a-d80913e94275.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: normal;
  font-style: normal;
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-d90f7b35-5e9c-4f8d-927b-828b51237e62 {
  margin-left: auto;
margin-right: auto;
max-width: 1500px;
aspect-ratio: 1500/898;
text-align: center;
}



.shg-image-margin-container-s-d90f7b35-5e9c-4f8d-927b-828b51237e62 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-d90f7b35-5e9c-4f8d-927b-828b51237e62 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d90f7b35-5e9c-4f8d-927b-828b51237e62 .shg-image-content-wrapper {
      aspect-ratio: 1500/898;
      min-width: 100%;
      height: auto;
    }

    #s-d90f7b35-5e9c-4f8d-927b-828b51237e62 .shogun-image-link {
      aspect-ratio: 1500/898;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d90f7b35-5e9c-4f8d-927b-828b51237e62 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d90f7b35-5e9c-4f8d-927b-828b51237e62 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1500px;
  }



  img.s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d90f7b35-5e9c-4f8d-927b-828b51237e62 .shogun-image-content {
  
    align-items: center;
  
}

.s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62 {
      --shg-aspect-ratio: calc(1500/898); 
    }

    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container {
      position: relative;
    }

    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-d90f7b35-5e9c-4f8d-927b-828b51237e62 {
  
  
  
  
}

#s-d90f7b35-5e9c-4f8d-927b-828b51237e62 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d90f7b35-5e9c-4f8d-927b-828b51237e62 .shg-image-content-wrapper {
      aspect-ratio: 1500/898;
      min-width: 100%;
      height: auto;
    }

    #s-d90f7b35-5e9c-4f8d-927b-828b51237e62 .shogun-image-link {
      aspect-ratio: 1500/898;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d90f7b35-5e9c-4f8d-927b-828b51237e62 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d90f7b35-5e9c-4f8d-927b-828b51237e62 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1500px;
  }



  img.s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d90f7b35-5e9c-4f8d-927b-828b51237e62 .shogun-image-content {
  
    align-items: center;
  
}

.s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62 {
      --shg-aspect-ratio: calc(1500/898); 
    }

    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container {
      position: relative;
    }

    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-d90f7b35-5e9c-4f8d-927b-828b51237e62 {
  
  
  
  
}

#s-d90f7b35-5e9c-4f8d-927b-828b51237e62 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d90f7b35-5e9c-4f8d-927b-828b51237e62 .shg-image-content-wrapper {
      aspect-ratio: 1500/898;
      min-width: 100%;
      height: auto;
    }

    #s-d90f7b35-5e9c-4f8d-927b-828b51237e62 .shogun-image-link {
      aspect-ratio: 1500/898;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d90f7b35-5e9c-4f8d-927b-828b51237e62 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d90f7b35-5e9c-4f8d-927b-828b51237e62 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1500px;
  }



  img.s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d90f7b35-5e9c-4f8d-927b-828b51237e62 .shogun-image-content {
  
    align-items: center;
  
}

.s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62 {
      --shg-aspect-ratio: calc(1500/898); 
    }

    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container {
      position: relative;
    }

    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-d90f7b35-5e9c-4f8d-927b-828b51237e62 {
  
  
  
  
}

#s-d90f7b35-5e9c-4f8d-927b-828b51237e62 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d90f7b35-5e9c-4f8d-927b-828b51237e62 .shg-image-content-wrapper {
      aspect-ratio: 1500/898;
      min-width: 100%;
      height: auto;
    }

    #s-d90f7b35-5e9c-4f8d-927b-828b51237e62 .shogun-image-link {
      aspect-ratio: 1500/898;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d90f7b35-5e9c-4f8d-927b-828b51237e62 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d90f7b35-5e9c-4f8d-927b-828b51237e62 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1500px;
  }



  img.s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d90f7b35-5e9c-4f8d-927b-828b51237e62 .shogun-image-content {
  
    align-items: center;
  
}

.s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62 {
      --shg-aspect-ratio: calc(1500/898); 
    }

    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container {
      position: relative;
    }

    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-d90f7b35-5e9c-4f8d-927b-828b51237e62 {
  
  
  
  
}

#s-d90f7b35-5e9c-4f8d-927b-828b51237e62 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d90f7b35-5e9c-4f8d-927b-828b51237e62 .shg-image-content-wrapper {
      aspect-ratio: 1500/898;
      min-width: 100%;
      height: auto;
    }

    #s-d90f7b35-5e9c-4f8d-927b-828b51237e62 .shogun-image-link {
      aspect-ratio: 1500/898;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d90f7b35-5e9c-4f8d-927b-828b51237e62 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d90f7b35-5e9c-4f8d-927b-828b51237e62 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1500px;
  }



  img.s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d90f7b35-5e9c-4f8d-927b-828b51237e62 .shogun-image-content {
  
    align-items: center;
  
}

.s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62 {
      --shg-aspect-ratio: calc(1500/898); 
    }

    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container {
      position: relative;
    }

    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d90f7b35-5e9c-4f8d-927b-828b51237e62 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-22ab7fbb-cd2e-4a3f-9215-d813006b0c39 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 20px;
padding-bottom: 20px;
min-height: 50px;
background-color: rgba(244, 244, 244, 1);
}








#s-22ab7fbb-cd2e-4a3f-9215-d813006b0c39 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-22ab7fbb-cd2e-4a3f-9215-d813006b0c39.shg-box.shg-c {
  justify-content: center;
}

#s-19beacde-add8-4e55-974d-5f9e49f603ae {
  margin-left: 5%;
margin-right: 5%;
}
@media (max-width: 767px){#s-19beacde-add8-4e55-974d-5f9e49f603ae {
  margin-left: 0%;
margin-right: 0%;
}
}
@media (min-width: 0px) {
[id="s-19beacde-add8-4e55-974d-5f9e49f603ae"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-19beacde-add8-4e55-974d-5f9e49f603ae"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-19beacde-add8-4e55-974d-5f9e49f603ae"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-19beacde-add8-4e55-974d-5f9e49f603ae"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-c7331cc4-eca0-4d9f-90c0-ad2285fd60aa {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}

#s-c7331cc4-eca0-4d9f-90c0-ad2285fd60aa {
  background-image: url();
}








#s-c7331cc4-eca0-4d9f-90c0-ad2285fd60aa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c7331cc4-eca0-4d9f-90c0-ad2285fd60aa {
  cursor: pointer;
}#s-c7331cc4-eca0-4d9f-90c0-ad2285fd60aa.shg-box.shg-c {
  justify-content: center;
}

#s-418996ac-37d6-4fc4-8d19-778f79087217 {
  margin-left: 40%;
margin-right: 40%;
max-width: 930px;
aspect-ratio: 1/1;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-418996ac-37d6-4fc4-8d19-778f79087217 {
  margin-left: 35%;
margin-right: 35%;
max-width: 990px;
}
}


.shg-image-margin-container-s-418996ac-37d6-4fc4-8d19-778f79087217 {
  margin-left: 40%;
  margin-right: 40%;
  
  
}

#s-418996ac-37d6-4fc4-8d19-778f79087217 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-418996ac-37d6-4fc4-8d19-778f79087217 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-418996ac-37d6-4fc4-8d19-778f79087217 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-418996ac-37d6-4fc4-8d19-778f79087217 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-418996ac-37d6-4fc4-8d19-778f79087217 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 930px;
  }



  img.s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image {
    
    
    
    max-height: 930px;
  }


.s-418996ac-37d6-4fc4-8d19-778f79087217 .shogun-image-content {
  
    align-items: center;
  
}

.s-418996ac-37d6-4fc4-8d19-778f79087217.shg-align-container {
  display: flex;
  justify-content: center
}

.s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-418996ac-37d6-4fc4-8d19-778f79087217 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container {
      position: relative;
    }

    .s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-418996ac-37d6-4fc4-8d19-778f79087217 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 930px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-418996ac-37d6-4fc4-8d19-778f79087217 {
  
  
  
  
}

#s-418996ac-37d6-4fc4-8d19-778f79087217 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-418996ac-37d6-4fc4-8d19-778f79087217 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-418996ac-37d6-4fc4-8d19-778f79087217 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-418996ac-37d6-4fc4-8d19-778f79087217 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-418996ac-37d6-4fc4-8d19-778f79087217 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 930px;
  }



  img.s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image {
    
    
    
    max-height: 930px;
  }


.s-418996ac-37d6-4fc4-8d19-778f79087217 .shogun-image-content {
  
    align-items: center;
  
}

.s-418996ac-37d6-4fc4-8d19-778f79087217.shg-align-container {
  display: flex;
  justify-content: center
}

.s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-418996ac-37d6-4fc4-8d19-778f79087217 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container {
      position: relative;
    }

    .s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-418996ac-37d6-4fc4-8d19-778f79087217 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 930px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-418996ac-37d6-4fc4-8d19-778f79087217 {
  
  
  
  
}

#s-418996ac-37d6-4fc4-8d19-778f79087217 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-418996ac-37d6-4fc4-8d19-778f79087217 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-418996ac-37d6-4fc4-8d19-778f79087217 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-418996ac-37d6-4fc4-8d19-778f79087217 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-418996ac-37d6-4fc4-8d19-778f79087217 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 930px;
  }



  img.s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image {
    
    
    
    max-height: 930px;
  }


.s-418996ac-37d6-4fc4-8d19-778f79087217 .shogun-image-content {
  
    align-items: center;
  
}

.s-418996ac-37d6-4fc4-8d19-778f79087217.shg-align-container {
  display: flex;
  justify-content: center
}

.s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-418996ac-37d6-4fc4-8d19-778f79087217 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container {
      position: relative;
    }

    .s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-418996ac-37d6-4fc4-8d19-778f79087217 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 930px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-418996ac-37d6-4fc4-8d19-778f79087217 {
  margin-left: 35%;
  margin-right: 35%;
  
  
}

#s-418996ac-37d6-4fc4-8d19-778f79087217 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-418996ac-37d6-4fc4-8d19-778f79087217 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-418996ac-37d6-4fc4-8d19-778f79087217 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-418996ac-37d6-4fc4-8d19-778f79087217 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-418996ac-37d6-4fc4-8d19-778f79087217 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 930px;
  }



  img.s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image {
    
    
    
    max-height: 930px;
  }


.s-418996ac-37d6-4fc4-8d19-778f79087217 .shogun-image-content {
  
    align-items: center;
  
}

.s-418996ac-37d6-4fc4-8d19-778f79087217.shg-align-container {
  display: flex;
  justify-content: center
}

.s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-418996ac-37d6-4fc4-8d19-778f79087217 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container {
      position: relative;
    }

    .s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-418996ac-37d6-4fc4-8d19-778f79087217 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 930px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-418996ac-37d6-4fc4-8d19-778f79087217 {
  
  
  
  
}

#s-418996ac-37d6-4fc4-8d19-778f79087217 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-418996ac-37d6-4fc4-8d19-778f79087217 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-418996ac-37d6-4fc4-8d19-778f79087217 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-418996ac-37d6-4fc4-8d19-778f79087217 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-418996ac-37d6-4fc4-8d19-778f79087217 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 930px;
  }



  img.s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image {
    
    
    
    max-height: 930px;
  }


.s-418996ac-37d6-4fc4-8d19-778f79087217 .shogun-image-content {
  
    align-items: center;
  
}

.s-418996ac-37d6-4fc4-8d19-778f79087217.shg-align-container {
  display: flex;
  justify-content: center
}

.s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-418996ac-37d6-4fc4-8d19-778f79087217 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container {
      position: relative;
    }

    .s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-418996ac-37d6-4fc4-8d19-778f79087217.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-418996ac-37d6-4fc4-8d19-778f79087217 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 930px;
    }
  }

}
#s-81c2a60c-010e-491f-bce0-d15a5bcfaf0d {
  margin-top: 10px;
}
@media (min-width: 1200px){#s-81c2a60c-010e-491f-bce0-d15a5bcfaf0d {
  display: none;
}
#s-81c2a60c-010e-491f-bce0-d15a5bcfaf0d, #wrap-s-81c2a60c-010e-491f-bce0-d15a5bcfaf0d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-81c2a60c-010e-491f-bce0-d15a5bcfaf0d {
  display: none;
}
#s-81c2a60c-010e-491f-bce0-d15a5bcfaf0d, #wrap-s-81c2a60c-010e-491f-bce0-d15a5bcfaf0d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-81c2a60c-010e-491f-bce0-d15a5bcfaf0d {
  display: none;
}
#s-81c2a60c-010e-491f-bce0-d15a5bcfaf0d, #wrap-s-81c2a60c-010e-491f-bce0-d15a5bcfaf0d { display: none !important; }}
#s-d7724901-f284-42a5-9806-a161e783193b {
  margin-top: 10px;
}
@media (min-width: 1200px){#s-d7724901-f284-42a5-9806-a161e783193b {
  display: none;
}
#s-d7724901-f284-42a5-9806-a161e783193b, #wrap-s-d7724901-f284-42a5-9806-a161e783193b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d7724901-f284-42a5-9806-a161e783193b {
  display: none;
}
#s-d7724901-f284-42a5-9806-a161e783193b, #wrap-s-d7724901-f284-42a5-9806-a161e783193b { display: none !important; }}@media (max-width: 767px){#s-d7724901-f284-42a5-9806-a161e783193b {
  display: none;
}
#s-d7724901-f284-42a5-9806-a161e783193b, #wrap-s-d7724901-f284-42a5-9806-a161e783193b { display: none !important; }}
#s-d7883026-dd3f-43f2-aab5-bc47ab0fd70b {
  margin-top: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-d7883026-dd3f-43f2-aab5-bc47ab0fd70b {
  display: none;
}
#s-d7883026-dd3f-43f2-aab5-bc47ab0fd70b, #wrap-s-d7883026-dd3f-43f2-aab5-bc47ab0fd70b { display: none !important; }}@media (max-width: 767px){#s-d7883026-dd3f-43f2-aab5-bc47ab0fd70b {
  display: none;
}
#s-d7883026-dd3f-43f2-aab5-bc47ab0fd70b, #wrap-s-d7883026-dd3f-43f2-aab5-bc47ab0fd70b { display: none !important; }}
#s-b4c8deb5-633f-4172-a31e-15d33f49d994 {
  margin-top: 2px;
margin-left: 7%;
margin-bottom: 0px;
margin-right: 7%;
}
@media (min-width: 1200px){#s-b4c8deb5-633f-4172-a31e-15d33f49d994 {
  display: none;
}
#s-b4c8deb5-633f-4172-a31e-15d33f49d994, #wrap-s-b4c8deb5-633f-4172-a31e-15d33f49d994 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b4c8deb5-633f-4172-a31e-15d33f49d994 {
  display: none;
}
#s-b4c8deb5-633f-4172-a31e-15d33f49d994, #wrap-s-b4c8deb5-633f-4172-a31e-15d33f49d994 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b4c8deb5-633f-4172-a31e-15d33f49d994 {
  margin-left: 0%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-b4c8deb5-633f-4172-a31e-15d33f49d994 {
  margin-left: 0%;
margin-right: 0%;
display: none;
}
#s-b4c8deb5-633f-4172-a31e-15d33f49d994, #wrap-s-b4c8deb5-633f-4172-a31e-15d33f49d994 { display: none !important; }}
#s-055a3fb9-8b34-4b15-87b4-c275bfb80466 {
  margin-top: 9px;
margin-left: 0%;
margin-bottom: 5px;
margin-right: 0%;
}
@media (min-width: 768px) and (max-width: 991px){#s-055a3fb9-8b34-4b15-87b4-c275bfb80466 {
  display: none;
}
#s-055a3fb9-8b34-4b15-87b4-c275bfb80466, #wrap-s-055a3fb9-8b34-4b15-87b4-c275bfb80466 { display: none !important; }}
#s-66c9cd8f-105a-44b4-b867-50bd04a9ac0a {
  margin-top: 10px;
margin-left: 0%;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(21, 44, 78, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-66c9cd8f-105a-44b4-b867-50bd04a9ac0a:hover {background-color: rgba(21, 44, 78, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-66c9cd8f-105a-44b4-b867-50bd04a9ac0a:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-66c9cd8f-105a-44b4-b867-50bd04a9ac0a-root {
    text-align: center;
  }


#s-66c9cd8f-105a-44b4-b867-50bd04a9ac0a.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-66c9cd8f-105a-44b4-b867-50bd04a9ac0a-root {
    text-align: center;
  }


#s-66c9cd8f-105a-44b4-b867-50bd04a9ac0a.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-66c9cd8f-105a-44b4-b867-50bd04a9ac0a-root {
    text-align: center;
  }


#s-66c9cd8f-105a-44b4-b867-50bd04a9ac0a.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-66c9cd8f-105a-44b4-b867-50bd04a9ac0a-root {
    text-align: center;
  }


#s-66c9cd8f-105a-44b4-b867-50bd04a9ac0a.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-66c9cd8f-105a-44b4-b867-50bd04a9ac0a-root {
    text-align: center;
  }


#s-66c9cd8f-105a-44b4-b867-50bd04a9ac0a.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
.shg-hr-wrapper {
  padding: 30px 0;
}

.shg-hr-wrapper hr {
  margin: 0;
  border: 0;
  width: 100%;
}

#s-fc5f1601-7ddc-4c20-88e5-7d0a449b05be {
  margin-left: auto;
margin-bottom: 7px;
margin-right: auto;
}
@media (min-width: 1200px){#s-fc5f1601-7ddc-4c20-88e5-7d0a449b05be {
  display: none;
}
#s-fc5f1601-7ddc-4c20-88e5-7d0a449b05be, #wrap-s-fc5f1601-7ddc-4c20-88e5-7d0a449b05be { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fc5f1601-7ddc-4c20-88e5-7d0a449b05be {
  display: none;
}
#s-fc5f1601-7ddc-4c20-88e5-7d0a449b05be, #wrap-s-fc5f1601-7ddc-4c20-88e5-7d0a449b05be { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-fc5f1601-7ddc-4c20-88e5-7d0a449b05be {
  display: none;
}
#s-fc5f1601-7ddc-4c20-88e5-7d0a449b05be, #wrap-s-fc5f1601-7ddc-4c20-88e5-7d0a449b05be { display: none !important; }}
#s-fc5f1601-7ddc-4c20-88e5-7d0a449b05be hr {
  border-top: 2px solid #ddd;
}

#s-6d494b7f-c2b3-4161-9f1f-a5cdcd493f2d {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}

#s-6d494b7f-c2b3-4161-9f1f-a5cdcd493f2d {
  background-image: url();
}








#s-6d494b7f-c2b3-4161-9f1f-a5cdcd493f2d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6d494b7f-c2b3-4161-9f1f-a5cdcd493f2d {
  cursor: pointer;
}#s-6d494b7f-c2b3-4161-9f1f-a5cdcd493f2d.shg-box.shg-c {
  justify-content: center;
}

#s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 {
  margin-left: 40%;
margin-right: 40%;
max-width: 900px;
aspect-ratio: 1/1;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 {
  margin-left: 35%;
margin-right: 35%;
}
}@media (max-width: 767px){#s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 {
  margin-left: 35%;
margin-right: 35%;
}
}


.shg-image-margin-container-s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 {
  margin-left: 40%;
  margin-right: 40%;
  
  
}

#s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 900px;
  }



  img.s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image {
    
    
    
    max-height: 900px;
  }


.s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 .shogun-image-content {
  
    align-items: center;
  
}

.s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container {
      position: relative;
    }

    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 900px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 {
  
  
  
  
}

#s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 900px;
  }



  img.s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image {
    
    
    
    max-height: 900px;
  }


.s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 .shogun-image-content {
  
    align-items: center;
  
}

.s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container {
      position: relative;
    }

    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 900px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 {
  
  
  
  
}

#s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 900px;
  }



  img.s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image {
    
    
    
    max-height: 900px;
  }


.s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 .shogun-image-content {
  
    align-items: center;
  
}

.s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container {
      position: relative;
    }

    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 900px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 {
  margin-left: 35%;
  margin-right: 35%;
  
  
}

#s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 900px;
  }



  img.s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image {
    
    
    
    max-height: 900px;
  }


.s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 .shogun-image-content {
  
    align-items: center;
  
}

.s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container {
      position: relative;
    }

    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 900px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 {
  margin-left: 35%;
  margin-right: 35%;
  
  
}

#s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 900px;
  }



  img.s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image {
    
    
    
    max-height: 900px;
  }


.s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 .shogun-image-content {
  
    align-items: center;
  
}

.s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container {
      position: relative;
    }

    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0b20ce48-6f6a-41c0-b5c1-f1f9e8d08b25 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 900px;
    }
  }

}
#s-e655d858-7ff1-46df-be86-791933fffaa8 {
  margin-top: 10px;
}
@media (min-width: 1200px){#s-e655d858-7ff1-46df-be86-791933fffaa8 {
  display: none;
}
#s-e655d858-7ff1-46df-be86-791933fffaa8, #wrap-s-e655d858-7ff1-46df-be86-791933fffaa8 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e655d858-7ff1-46df-be86-791933fffaa8 {
  display: none;
}
#s-e655d858-7ff1-46df-be86-791933fffaa8, #wrap-s-e655d858-7ff1-46df-be86-791933fffaa8 { display: none !important; }}@media (max-width: 767px){#s-e655d858-7ff1-46df-be86-791933fffaa8 {
  display: none;
}
#s-e655d858-7ff1-46df-be86-791933fffaa8, #wrap-s-e655d858-7ff1-46df-be86-791933fffaa8 { display: none !important; }}
#s-d9511553-96ca-49ea-a73d-970323b44905 {
  margin-top: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-d9511553-96ca-49ea-a73d-970323b44905 {
  display: none;
}
#s-d9511553-96ca-49ea-a73d-970323b44905, #wrap-s-d9511553-96ca-49ea-a73d-970323b44905 { display: none !important; }}@media (max-width: 767px){#s-d9511553-96ca-49ea-a73d-970323b44905 {
  display: none;
}
#s-d9511553-96ca-49ea-a73d-970323b44905, #wrap-s-d9511553-96ca-49ea-a73d-970323b44905 { display: none !important; }}
#s-c6536806-7ff1-4ad0-946c-47e6923548f1 {
  margin-top: 10px;
}
@media (min-width: 1200px){#s-c6536806-7ff1-4ad0-946c-47e6923548f1 {
  display: none;
}
#s-c6536806-7ff1-4ad0-946c-47e6923548f1, #wrap-s-c6536806-7ff1-4ad0-946c-47e6923548f1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c6536806-7ff1-4ad0-946c-47e6923548f1 {
  display: none;
}
#s-c6536806-7ff1-4ad0-946c-47e6923548f1, #wrap-s-c6536806-7ff1-4ad0-946c-47e6923548f1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c6536806-7ff1-4ad0-946c-47e6923548f1 {
  display: none;
}
#s-c6536806-7ff1-4ad0-946c-47e6923548f1, #wrap-s-c6536806-7ff1-4ad0-946c-47e6923548f1 { display: none !important; }}
#s-37ab47fa-e09b-4b98-b5c9-6da68c9caa16 {
  margin-left: auto;
margin-right: auto;
padding-top: 6px;
padding-bottom: 6px;
}

#s-6f31be5c-4fa2-4ef3-953c-9a7b11b9a540 {
  margin-top: 10px;
margin-left: 0%;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(21, 44, 78, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-6f31be5c-4fa2-4ef3-953c-9a7b11b9a540:hover {background-color: rgba(21, 44, 78, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-6f31be5c-4fa2-4ef3-953c-9a7b11b9a540:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-6f31be5c-4fa2-4ef3-953c-9a7b11b9a540-root {
    text-align: center;
  }


#s-6f31be5c-4fa2-4ef3-953c-9a7b11b9a540.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6f31be5c-4fa2-4ef3-953c-9a7b11b9a540-root {
    text-align: center;
  }


#s-6f31be5c-4fa2-4ef3-953c-9a7b11b9a540.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6f31be5c-4fa2-4ef3-953c-9a7b11b9a540-root {
    text-align: center;
  }


#s-6f31be5c-4fa2-4ef3-953c-9a7b11b9a540.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6f31be5c-4fa2-4ef3-953c-9a7b11b9a540-root {
    text-align: center;
  }


#s-6f31be5c-4fa2-4ef3-953c-9a7b11b9a540.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6f31be5c-4fa2-4ef3-953c-9a7b11b9a540-root {
    text-align: center;
  }


#s-6f31be5c-4fa2-4ef3-953c-9a7b11b9a540.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-79d8921b-d211-41e4-a12e-5e831db2a8dd {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-79d8921b-d211-41e4-a12e-5e831db2a8dd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-79d8921b-d211-41e4-a12e-5e831db2a8dd {
  cursor: pointer;
}#s-79d8921b-d211-41e4-a12e-5e831db2a8dd.shg-box.shg-c {
  justify-content: center;
}

#s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e {
  margin-left: 26%;
margin-right: 26%;
max-width: 2048px;
aspect-ratio: 2000/635;
text-align: center;
}
@media (max-width: 767px){#s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e {
  margin-left: 16%;
margin-right: 16%;
}
}


.shg-image-margin-container-s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e {
  margin-left: 26%;
  margin-right: 26%;
  
  
}

#s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e .shg-image-content-wrapper {
      aspect-ratio: 2000/635;
      min-width: 100%;
      height: auto;
    }

    #s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e .shogun-image-link {
      aspect-ratio: 2000/635;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e .shogun-image-content {
  
    align-items: center;
  
}

.s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e {
      --shg-aspect-ratio: calc(2000/635); 
    }

    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container {
      position: relative;
    }

    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2048px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e {
  
  
  
  
}

#s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e .shg-image-content-wrapper {
      aspect-ratio: 2000/635;
      min-width: 100%;
      height: auto;
    }

    #s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e .shogun-image-link {
      aspect-ratio: 2000/635;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e .shogun-image-content {
  
    align-items: center;
  
}

.s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e {
      --shg-aspect-ratio: calc(2000/635); 
    }

    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container {
      position: relative;
    }

    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2048px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e {
  
  
  
  
}

#s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e .shg-image-content-wrapper {
      aspect-ratio: 2000/635;
      min-width: 100%;
      height: auto;
    }

    #s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e .shogun-image-link {
      aspect-ratio: 2000/635;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e .shogun-image-content {
  
    align-items: center;
  
}

.s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e {
      --shg-aspect-ratio: calc(2000/635); 
    }

    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container {
      position: relative;
    }

    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2048px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e {
  
  
  
  
}

#s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e .shg-image-content-wrapper {
      aspect-ratio: 2000/635;
      min-width: 100%;
      height: auto;
    }

    #s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e .shogun-image-link {
      aspect-ratio: 2000/635;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e .shogun-image-content {
  
    align-items: center;
  
}

.s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e {
      --shg-aspect-ratio: calc(2000/635); 
    }

    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container {
      position: relative;
    }

    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2048px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e {
  margin-left: 16%;
  margin-right: 16%;
  
  
}

#s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e .shg-image-content-wrapper {
      aspect-ratio: 2000/635;
      min-width: 100%;
      height: auto;
    }

    #s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e .shogun-image-link {
      aspect-ratio: 2000/635;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e .shogun-image-content {
  
    align-items: center;
  
}

.s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e {
      --shg-aspect-ratio: calc(2000/635); 
    }

    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container {
      position: relative;
    }

    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7cc8baaf-b3e9-48a4-839c-3a136ba63f3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2048px;
    }
  }

}
#s-4177d560-5dc4-4cf5-8809-c6cc7a2612dc {
  margin-top: 0px;
margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-4177d560-5dc4-4cf5-8809-c6cc7a2612dc {
  margin-left: 17%;
margin-right: 17%;
}
}
#s-7b0eafff-79a4-4eec-825a-ba4d4be0ac82 {
  margin-bottom: -20px;
}

#s-26cad876-bfdc-469a-9a57-2f60040aa145 {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-3e8aa374-3e39-4b3d-a269-7f8d5e240b4f {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
min-height: 50px;
}








#s-3e8aa374-3e39-4b3d-a269-7f8d5e240b4f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3e8aa374-3e39-4b3d-a269-7f8d5e240b4f.shg-box.shg-c {
  justify-content: center;
}

#s-6e359039-bc83-473a-a18c-8456d026c78d {
  margin-left: auto;
margin-right: auto;
max-width: 1920px;
aspect-ratio: 1920/71;
text-align: center;
}



.shg-image-margin-container-s-6e359039-bc83-473a-a18c-8456d026c78d {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-6e359039-bc83-473a-a18c-8456d026c78d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6e359039-bc83-473a-a18c-8456d026c78d .shg-image-content-wrapper {
      aspect-ratio: 1920/71;
      min-width: 100%;
      height: auto;
    }

    #s-6e359039-bc83-473a-a18c-8456d026c78d .shogun-image-link {
      aspect-ratio: 1920/71;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6e359039-bc83-473a-a18c-8456d026c78d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6e359039-bc83-473a-a18c-8456d026c78d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1920px;
  }



  img.s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-6e359039-bc83-473a-a18c-8456d026c78d .shogun-image-content {
  
    align-items: center;
  
}

.s-6e359039-bc83-473a-a18c-8456d026c78d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6e359039-bc83-473a-a18c-8456d026c78d {
      --shg-aspect-ratio: calc(1920/71); 
    }

    .s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container {
      position: relative;
    }

    .s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6e359039-bc83-473a-a18c-8456d026c78d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-6e359039-bc83-473a-a18c-8456d026c78d {
  
  
  
  
}

#s-6e359039-bc83-473a-a18c-8456d026c78d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6e359039-bc83-473a-a18c-8456d026c78d .shg-image-content-wrapper {
      aspect-ratio: 1920/71;
      min-width: 100%;
      height: auto;
    }

    #s-6e359039-bc83-473a-a18c-8456d026c78d .shogun-image-link {
      aspect-ratio: 1920/71;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6e359039-bc83-473a-a18c-8456d026c78d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6e359039-bc83-473a-a18c-8456d026c78d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1920px;
  }



  img.s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-6e359039-bc83-473a-a18c-8456d026c78d .shogun-image-content {
  
    align-items: center;
  
}

.s-6e359039-bc83-473a-a18c-8456d026c78d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6e359039-bc83-473a-a18c-8456d026c78d {
      --shg-aspect-ratio: calc(1920/71); 
    }

    .s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container {
      position: relative;
    }

    .s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6e359039-bc83-473a-a18c-8456d026c78d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-6e359039-bc83-473a-a18c-8456d026c78d {
  
  
  
  
}

#s-6e359039-bc83-473a-a18c-8456d026c78d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6e359039-bc83-473a-a18c-8456d026c78d .shg-image-content-wrapper {
      aspect-ratio: 1920/71;
      min-width: 100%;
      height: auto;
    }

    #s-6e359039-bc83-473a-a18c-8456d026c78d .shogun-image-link {
      aspect-ratio: 1920/71;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6e359039-bc83-473a-a18c-8456d026c78d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6e359039-bc83-473a-a18c-8456d026c78d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1920px;
  }



  img.s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-6e359039-bc83-473a-a18c-8456d026c78d .shogun-image-content {
  
    align-items: center;
  
}

.s-6e359039-bc83-473a-a18c-8456d026c78d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6e359039-bc83-473a-a18c-8456d026c78d {
      --shg-aspect-ratio: calc(1920/71); 
    }

    .s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container {
      position: relative;
    }

    .s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6e359039-bc83-473a-a18c-8456d026c78d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-6e359039-bc83-473a-a18c-8456d026c78d {
  
  
  
  
}

#s-6e359039-bc83-473a-a18c-8456d026c78d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6e359039-bc83-473a-a18c-8456d026c78d .shg-image-content-wrapper {
      aspect-ratio: 1920/71;
      min-width: 100%;
      height: auto;
    }

    #s-6e359039-bc83-473a-a18c-8456d026c78d .shogun-image-link {
      aspect-ratio: 1920/71;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6e359039-bc83-473a-a18c-8456d026c78d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6e359039-bc83-473a-a18c-8456d026c78d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1920px;
  }



  img.s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-6e359039-bc83-473a-a18c-8456d026c78d .shogun-image-content {
  
    align-items: center;
  
}

.s-6e359039-bc83-473a-a18c-8456d026c78d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6e359039-bc83-473a-a18c-8456d026c78d {
      --shg-aspect-ratio: calc(1920/71); 
    }

    .s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container {
      position: relative;
    }

    .s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6e359039-bc83-473a-a18c-8456d026c78d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-6e359039-bc83-473a-a18c-8456d026c78d {
  
  
  
  
}

#s-6e359039-bc83-473a-a18c-8456d026c78d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6e359039-bc83-473a-a18c-8456d026c78d .shg-image-content-wrapper {
      aspect-ratio: 1920/71;
      min-width: 100%;
      height: auto;
    }

    #s-6e359039-bc83-473a-a18c-8456d026c78d .shogun-image-link {
      aspect-ratio: 1920/71;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6e359039-bc83-473a-a18c-8456d026c78d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6e359039-bc83-473a-a18c-8456d026c78d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1920px;
  }



  img.s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-6e359039-bc83-473a-a18c-8456d026c78d .shogun-image-content {
  
    align-items: center;
  
}

.s-6e359039-bc83-473a-a18c-8456d026c78d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6e359039-bc83-473a-a18c-8456d026c78d {
      --shg-aspect-ratio: calc(1920/71); 
    }

    .s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container {
      position: relative;
    }

    .s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6e359039-bc83-473a-a18c-8456d026c78d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6e359039-bc83-473a-a18c-8456d026c78d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
#s-4e2c74b4-e0af-4c7f-8238-391c04ced2ab {
  background-size: cover;
margin-top: 0px;
margin-bottom: 0px;
min-height: 50px;
background-color: rgba(30, 100, 158, 1);
background-position: center center;
}








#s-4e2c74b4-e0af-4c7f-8238-391c04ced2ab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4e2c74b4-e0af-4c7f-8238-391c04ced2ab.shg-box.shg-c {
  justify-content: center;
}

#s-067a9334-7a7c-4105-bdd9-b1eeecc44963 {
  margin-top: 40px;
margin-bottom: 10px;
}
@media (max-width: 767px){#s-067a9334-7a7c-4105-bdd9-b1eeecc44963 {
  margin-bottom: 1px;
}
}
#s-3062f027-bba7-41df-9aee-35c1525b85aa {
  margin-top: 0px;
margin-bottom: 20px;
}
@media (max-width: 767px){#s-3062f027-bba7-41df-9aee-35c1525b85aa {
  margin-top: 11px;
margin-left: 9%;
margin-right: 9%;
}
}
#s-85ee1d31-b614-4085-870b-2a9825f14728 {
  box-shadow:1px 1px 1px 1px rgba(127, 14, 125, 0);
margin-bottom: 49px;
min-height: 50px;
}

#s-85ee1d31-b614-4085-870b-2a9825f14728 {
  background-image: url();
}








#s-85ee1d31-b614-4085-870b-2a9825f14728 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-85ee1d31-b614-4085-870b-2a9825f14728.shg-box.shg-c {
  justify-content: center;
}

#s-9bfc29c1-af9b-4ca1-b009-e59776323d86 {
  margin-left: 8%;
margin-right: 8%;
}
@media (min-width: 768px) and (max-width: 991px){#s-9bfc29c1-af9b-4ca1-b009-e59776323d86 {
  margin-left: 3%;
margin-right: 3%;
}
}
@media (min-width: 0px) {
[id="s-9bfc29c1-af9b-4ca1-b009-e59776323d86"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9bfc29c1-af9b-4ca1-b009-e59776323d86"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 12.0px);
}

}

@media (min-width: 992px) {
[id="s-9bfc29c1-af9b-4ca1-b009-e59776323d86"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 12.0px);
}

}

@media (min-width: 1200px) {
[id="s-9bfc29c1-af9b-4ca1-b009-e59776323d86"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 12.0px);
}

}

#s-83cc5aa5-4822-4ec7-89b8-f257c1c12c48 {
  box-shadow:0px 1px 2px 0px ;
margin-top: 4px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-left: 2%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 11px;
min-height: 50px;
background-color: rgba(244, 244, 244, 1);
}








#s-83cc5aa5-4822-4ec7-89b8-f257c1c12c48 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-83cc5aa5-4822-4ec7-89b8-f257c1c12c48 {
  cursor: pointer;
}#s-83cc5aa5-4822-4ec7-89b8-f257c1c12c48.shg-box.shg-c {
  justify-content: center;
}

#s-e7231b07-212a-4037-b1ad-255a4030686e {
  margin-top: 7px;
margin-left: 8%;
margin-bottom: 3px;
margin-right: 8%;
max-width: 600px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-e7231b07-212a-4037-b1ad-255a4030686e {
  margin-left: 8%;
  margin-right: 8%;
  margin-top: 7px;
  margin-bottom: 3px;
}

#s-e7231b07-212a-4037-b1ad-255a4030686e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e7231b07-212a-4037-b1ad-255a4030686e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e7231b07-212a-4037-b1ad-255a4030686e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e7231b07-212a-4037-b1ad-255a4030686e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e7231b07-212a-4037-b1ad-255a4030686e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 600px;
  }



  img.s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image {
    
    
    
    max-height: 600px;
  }


.s-e7231b07-212a-4037-b1ad-255a4030686e .shogun-image-content {
  
    align-items: center;
  
}

.s-e7231b07-212a-4037-b1ad-255a4030686e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e7231b07-212a-4037-b1ad-255a4030686e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container {
      position: relative;
    }

    .s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7231b07-212a-4037-b1ad-255a4030686e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 600px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-e7231b07-212a-4037-b1ad-255a4030686e {
  
  
  
  
}

#s-e7231b07-212a-4037-b1ad-255a4030686e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e7231b07-212a-4037-b1ad-255a4030686e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e7231b07-212a-4037-b1ad-255a4030686e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e7231b07-212a-4037-b1ad-255a4030686e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e7231b07-212a-4037-b1ad-255a4030686e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 600px;
  }



  img.s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image {
    
    
    
    max-height: 600px;
  }


.s-e7231b07-212a-4037-b1ad-255a4030686e .shogun-image-content {
  
    align-items: center;
  
}

.s-e7231b07-212a-4037-b1ad-255a4030686e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e7231b07-212a-4037-b1ad-255a4030686e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container {
      position: relative;
    }

    .s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7231b07-212a-4037-b1ad-255a4030686e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 600px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-e7231b07-212a-4037-b1ad-255a4030686e {
  
  
  
  
}

#s-e7231b07-212a-4037-b1ad-255a4030686e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e7231b07-212a-4037-b1ad-255a4030686e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e7231b07-212a-4037-b1ad-255a4030686e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e7231b07-212a-4037-b1ad-255a4030686e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e7231b07-212a-4037-b1ad-255a4030686e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 600px;
  }



  img.s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image {
    
    
    
    max-height: 600px;
  }


.s-e7231b07-212a-4037-b1ad-255a4030686e .shogun-image-content {
  
    align-items: center;
  
}

.s-e7231b07-212a-4037-b1ad-255a4030686e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e7231b07-212a-4037-b1ad-255a4030686e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container {
      position: relative;
    }

    .s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7231b07-212a-4037-b1ad-255a4030686e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 600px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-e7231b07-212a-4037-b1ad-255a4030686e {
  
  
  
  
}

#s-e7231b07-212a-4037-b1ad-255a4030686e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e7231b07-212a-4037-b1ad-255a4030686e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e7231b07-212a-4037-b1ad-255a4030686e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e7231b07-212a-4037-b1ad-255a4030686e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e7231b07-212a-4037-b1ad-255a4030686e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 600px;
  }



  img.s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image {
    
    
    
    max-height: 600px;
  }


.s-e7231b07-212a-4037-b1ad-255a4030686e .shogun-image-content {
  
    align-items: center;
  
}

.s-e7231b07-212a-4037-b1ad-255a4030686e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e7231b07-212a-4037-b1ad-255a4030686e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container {
      position: relative;
    }

    .s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7231b07-212a-4037-b1ad-255a4030686e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 600px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-e7231b07-212a-4037-b1ad-255a4030686e {
  
  
  
  
}

#s-e7231b07-212a-4037-b1ad-255a4030686e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e7231b07-212a-4037-b1ad-255a4030686e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-e7231b07-212a-4037-b1ad-255a4030686e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e7231b07-212a-4037-b1ad-255a4030686e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e7231b07-212a-4037-b1ad-255a4030686e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 600px;
  }



  img.s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image {
    
    
    
    max-height: 600px;
  }


.s-e7231b07-212a-4037-b1ad-255a4030686e .shogun-image-content {
  
    align-items: center;
  
}

.s-e7231b07-212a-4037-b1ad-255a4030686e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e7231b07-212a-4037-b1ad-255a4030686e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container {
      position: relative;
    }

    .s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e7231b07-212a-4037-b1ad-255a4030686e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e7231b07-212a-4037-b1ad-255a4030686e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 600px;
    }
  }

}
#s-33d5cc7a-90aa-4fc7-830f-dc957282ead1 {
  margin-top: 15px;
margin-bottom: 0px;
min-height: 0px;
}

#s-428c0198-4ab8-49d8-8007-b70dc36b0de3 {
  margin-top: 10px;
margin-left: 6%;
margin-bottom: 9px;
margin-right: 6%;
min-height: 0px;
}
@media (min-width: 1200px){#s-428c0198-4ab8-49d8-8007-b70dc36b0de3 {
  margin-left: 6%;
margin-right: 6%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-428c0198-4ab8-49d8-8007-b70dc36b0de3 {
  margin-left: 2%;
margin-right: 2%;
}
}
#s-305f0f01-c648-4d3f-bf2f-64b6f91384ad {
  margin-top: 10px;
margin-left: 5%;
margin-bottom: 15px;
margin-right: 5%;
padding-top: 6px;
padding-left: 13px;
padding-bottom: 6px;
padding-right: 13px;
border-radius: 2px;
background-color: rgba(21, 44, 78, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
letter-spacing: 0px;
}
#s-305f0f01-c648-4d3f-bf2f-64b6f91384ad:hover {background-color: rgba(30, 100, 158, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-305f0f01-c648-4d3f-bf2f-64b6f91384ad:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-305f0f01-c648-4d3f-bf2f-64b6f91384ad {
  margin-left: 12%;
margin-right: 12%;
}
}

  #s-305f0f01-c648-4d3f-bf2f-64b6f91384ad-root {
    text-align: center;
  }


#s-305f0f01-c648-4d3f-bf2f-64b6f91384ad.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Lato;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-305f0f01-c648-4d3f-bf2f-64b6f91384ad-root {
    text-align: center;
  }


#s-305f0f01-c648-4d3f-bf2f-64b6f91384ad.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Lato;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-305f0f01-c648-4d3f-bf2f-64b6f91384ad-root {
    text-align: center;
  }


#s-305f0f01-c648-4d3f-bf2f-64b6f91384ad.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Lato;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-305f0f01-c648-4d3f-bf2f-64b6f91384ad-root {
    text-align: center;
  }


#s-305f0f01-c648-4d3f-bf2f-64b6f91384ad.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Lato;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-305f0f01-c648-4d3f-bf2f-64b6f91384ad-root {
    text-align: center;
  }


#s-305f0f01-c648-4d3f-bf2f-64b6f91384ad.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Lato;
  display:  inline-block ;
}
}
#s-e5fb7d07-8b08-447f-9e39-8d088c21ec25 {
  box-shadow:0px 1px 2px 0px ;
margin-top: 4px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-left: 2%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 11px;
min-height: 50px;
background-color: rgba(244, 244, 244, 1);
}








#s-e5fb7d07-8b08-447f-9e39-8d088c21ec25 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e5fb7d07-8b08-447f-9e39-8d088c21ec25 {
  cursor: pointer;
}#s-e5fb7d07-8b08-447f-9e39-8d088c21ec25.shg-box.shg-c {
  justify-content: center;
}

#s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff {
  margin-top: 7px;
margin-left: 8%;
margin-bottom: 3px;
margin-right: 8%;
max-width: 600px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff {
  margin-left: 8%;
  margin-right: 8%;
  margin-top: 7px;
  margin-bottom: 3px;
}

#s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 600px;
  }



  img.s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image {
    
    
    
    max-height: 600px;
  }


.s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff .shogun-image-content {
  
    align-items: center;
  
}

.s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container {
      position: relative;
    }

    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 600px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff {
  
  
  
  
}

#s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 600px;
  }



  img.s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image {
    
    
    
    max-height: 600px;
  }


.s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff .shogun-image-content {
  
    align-items: center;
  
}

.s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container {
      position: relative;
    }

    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 600px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff {
  
  
  
  
}

#s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 600px;
  }



  img.s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image {
    
    
    
    max-height: 600px;
  }


.s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff .shogun-image-content {
  
    align-items: center;
  
}

.s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container {
      position: relative;
    }

    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 600px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff {
  
  
  
  
}

#s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 600px;
  }



  img.s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image {
    
    
    
    max-height: 600px;
  }


.s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff .shogun-image-content {
  
    align-items: center;
  
}

.s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container {
      position: relative;
    }

    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 600px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff {
  
  
  
  
}

#s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 600px;
  }



  img.s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image {
    
    
    
    max-height: 600px;
  }


.s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff .shogun-image-content {
  
    align-items: center;
  
}

.s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container {
      position: relative;
    }

    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70cf9663-aeb5-4e49-a2aa-575e4aba7bff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 600px;
    }
  }

}
#s-7afcf635-3d97-4af9-8253-29d2a5cc7510 {
  margin-top: 15px;
margin-bottom: 0px;
min-height: 0px;
}

#s-7b934657-2f76-4361-8f63-93e1ddcaf0a5 {
  margin-top: 10px;
margin-left: 1%;
margin-bottom: 9px;
margin-right: 1%;
min-height: 0px;
}

#s-5c794a13-148d-414e-92c1-5e1d24fff80b {
  margin-top: 10px;
margin-left: 5%;
margin-bottom: 15px;
margin-right: 5%;
padding-top: 6px;
padding-left: 13px;
padding-bottom: 6px;
padding-right: 13px;
border-radius: 2px;
background-color: rgba(21, 44, 78, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
letter-spacing: 0px;
}
#s-5c794a13-148d-414e-92c1-5e1d24fff80b:hover {background-color: rgba(30, 100, 158, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-5c794a13-148d-414e-92c1-5e1d24fff80b:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-5c794a13-148d-414e-92c1-5e1d24fff80b {
  margin-left: 12%;
margin-right: 12%;
}
}

  #s-5c794a13-148d-414e-92c1-5e1d24fff80b-root {
    text-align: center;
  }


#s-5c794a13-148d-414e-92c1-5e1d24fff80b.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Lato;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5c794a13-148d-414e-92c1-5e1d24fff80b-root {
    text-align: center;
  }


#s-5c794a13-148d-414e-92c1-5e1d24fff80b.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Lato;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5c794a13-148d-414e-92c1-5e1d24fff80b-root {
    text-align: center;
  }


#s-5c794a13-148d-414e-92c1-5e1d24fff80b.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Lato;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5c794a13-148d-414e-92c1-5e1d24fff80b-root {
    text-align: center;
  }


#s-5c794a13-148d-414e-92c1-5e1d24fff80b.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Lato;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5c794a13-148d-414e-92c1-5e1d24fff80b-root {
    text-align: center;
  }


#s-5c794a13-148d-414e-92c1-5e1d24fff80b.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Lato;
  display:  inline-block ;
}
}
#s-730502a7-24cf-494d-b5ca-024b82b7b6eb {
  box-shadow:0px 1px 2px 0px ;
margin-top: 4px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-left: 2%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 11px;
min-height: 50px;
background-color: rgba(244, 244, 244, 1);
}








#s-730502a7-24cf-494d-b5ca-024b82b7b6eb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-730502a7-24cf-494d-b5ca-024b82b7b6eb {
  cursor: pointer;
}#s-730502a7-24cf-494d-b5ca-024b82b7b6eb.shg-box.shg-c {
  justify-content: center;
}

#s-ab3cccc3-382a-4d2f-93c3-9485044593ec {
  margin-top: 7px;
margin-left: 8%;
margin-bottom: 3px;
margin-right: 8%;
max-width: 600px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-ab3cccc3-382a-4d2f-93c3-9485044593ec {
  margin-left: 8%;
  margin-right: 8%;
  margin-top: 7px;
  margin-bottom: 3px;
}

#s-ab3cccc3-382a-4d2f-93c3-9485044593ec {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ab3cccc3-382a-4d2f-93c3-9485044593ec .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ab3cccc3-382a-4d2f-93c3-9485044593ec .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ab3cccc3-382a-4d2f-93c3-9485044593ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ab3cccc3-382a-4d2f-93c3-9485044593ec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 600px;
  }



  img.s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image {
    
    
    
    max-height: 600px;
  }


.s-ab3cccc3-382a-4d2f-93c3-9485044593ec .shogun-image-content {
  
    align-items: center;
  
}

.s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container {
      position: relative;
    }

    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 600px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-ab3cccc3-382a-4d2f-93c3-9485044593ec {
  
  
  
  
}

#s-ab3cccc3-382a-4d2f-93c3-9485044593ec {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ab3cccc3-382a-4d2f-93c3-9485044593ec .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ab3cccc3-382a-4d2f-93c3-9485044593ec .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ab3cccc3-382a-4d2f-93c3-9485044593ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ab3cccc3-382a-4d2f-93c3-9485044593ec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 600px;
  }



  img.s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image {
    
    
    
    max-height: 600px;
  }


.s-ab3cccc3-382a-4d2f-93c3-9485044593ec .shogun-image-content {
  
    align-items: center;
  
}

.s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container {
      position: relative;
    }

    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 600px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){

.shg-image-margin-container-s-ab3cccc3-382a-4d2f-93c3-9485044593ec {
  
  
  
  
}

#s-ab3cccc3-382a-4d2f-93c3-9485044593ec {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ab3cccc3-382a-4d2f-93c3-9485044593ec .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ab3cccc3-382a-4d2f-93c3-9485044593ec .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ab3cccc3-382a-4d2f-93c3-9485044593ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ab3cccc3-382a-4d2f-93c3-9485044593ec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 600px;
  }



  img.s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image {
    
    
    
    max-height: 600px;
  }


.s-ab3cccc3-382a-4d2f-93c3-9485044593ec .shogun-image-content {
  
    align-items: center;
  
}

.s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container {
      position: relative;
    }

    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 600px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){

.shg-image-margin-container-s-ab3cccc3-382a-4d2f-93c3-9485044593ec {
  
  
  
  
}

#s-ab3cccc3-382a-4d2f-93c3-9485044593ec {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ab3cccc3-382a-4d2f-93c3-9485044593ec .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ab3cccc3-382a-4d2f-93c3-9485044593ec .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ab3cccc3-382a-4d2f-93c3-9485044593ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ab3cccc3-382a-4d2f-93c3-9485044593ec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 600px;
  }



  img.s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image {
    
    
    
    max-height: 600px;
  }


.s-ab3cccc3-382a-4d2f-93c3-9485044593ec .shogun-image-content {
  
    align-items: center;
  
}

.s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container {
      position: relative;
    }

    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 600px;
    }
  }

}@media (max-width: 767px){

.shg-image-margin-container-s-ab3cccc3-382a-4d2f-93c3-9485044593ec {
  
  
  
  
}

#s-ab3cccc3-382a-4d2f-93c3-9485044593ec {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ab3cccc3-382a-4d2f-93c3-9485044593ec .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ab3cccc3-382a-4d2f-93c3-9485044593ec .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ab3cccc3-382a-4d2f-93c3-9485044593ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ab3cccc3-382a-4d2f-93c3-9485044593ec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 600px;
  }



  img.s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image {
    
    
    
    max-height: 600px;
  }


.s-ab3cccc3-382a-4d2f-93c3-9485044593ec .shogun-image-content {
  
    align-items: center;
  
}

.s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container {
      position: relative;
    }

    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ab3cccc3-382a-4d2f-93c3-9485044593ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 600px;
    }
  }

}
#s-fdd5e6c8-d207-40f8-9801-b3faded1cf74 {
  margin-top: 15px;
margin-bottom: 0px;
min-height: 0px;
}

#s-f700125c-7140-4fc3-95a1-be723beb640d {
  margin-top: 10px;
margin-left: 1%;
margin-bottom: 9px;
margin-right: 1%;
min-height: 0px;
}

#s-d37e2ae9-d43c-40a8-a91e-26fd65ca4f4f {
  margin-top: 10px;
margin-left: 5%;
margin-bottom: 15px;
margin-right: 5%;
padding-top: 6px;
padding-left: 13px;
padding-bottom: 6px;
padding-right: 13px;
border-radius: 2px;
background-color: rgba(21, 44, 78, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
letter-spacing: 0px;
}
#s-d37e2ae9-d43c-40a8-a91e-26fd65ca4f4f:hover {background-color: rgba(30, 100, 158, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-d37e2ae9-d43c-40a8-a91e-26fd65ca4f4f:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-d37e2ae9-d43c-40a8-a91e-26fd65ca4f4f {
  margin-left: 13%;
margin-right: 13%;
}
}

  #s-d37e2ae9-d43c-40a8-a91e-26fd65ca4f4f-root {
    text-align: center;
  }


#s-d37e2ae9-d43c-40a8-a91e-26fd65ca4f4f.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Lato;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d37e2ae9-d43c-40a8-a91e-26fd65ca4f4f-root {
    text-align: center;
  }


#s-d37e2ae9-d43c-40a8-a91e-26fd65ca4f4f.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Lato;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d37e2ae9-d43c-40a8-a91e-26fd65ca4f4f-root {
    text-align: center;
  }


#s-d37e2ae9-d43c-40a8-a91e-26fd65ca4f4f.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Lato;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d37e2ae9-d43c-40a8-a91e-26fd65ca4f4f-root {
    text-align: center;
  }


#s-d37e2ae9-d43c-40a8-a91e-26fd65ca4f4f.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Lato;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d37e2ae9-d43c-40a8-a91e-26fd65ca4f4f-root {
    text-align: center;
  }


#s-d37e2ae9-d43c-40a8-a91e-26fd65ca4f4f.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: Lato;
  display:  inline-block ;
}
}
#s-f5a9d9c8-0a68-443c-a790-650aaf097e23 {
  margin-top: 30px;
margin-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-f5a9d9c8-0a68-443c-a790-650aaf097e23"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f5a9d9c8-0a68-443c-a790-650aaf097e23"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f5a9d9c8-0a68-443c-a790-650aaf097e23"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f5a9d9c8-0a68-443c-a790-650aaf097e23"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-7693f157-2e3e-4f5c-bb04-d85c5fc65a2f {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 10px;
border-left-width: 10px;
border-bottom-width: 10px;
border-right-width: 10px;
border-color: rgba(255, 255, 255, 1);
border-radius: 1px;
min-height: 10px;
max-width: 900px;
background-color: rgba(21, 44, 78, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-7693f157-2e3e-4f5c-bb04-d85c5fc65a2f:hover {background-color: rgba(30, 100, 158, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-7693f157-2e3e-4f5c-bb04-d85c5fc65a2f:active {background-color: rgba(21, 44, 78, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-7693f157-2e3e-4f5c-bb04-d85c5fc65a2f-root {
    text-align: center;
  }


#s-7693f157-2e3e-4f5c-bb04-d85c5fc65a2f.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
@media (min-width: 1200px){
  #s-7693f157-2e3e-4f5c-bb04-d85c5fc65a2f-root {
    text-align: center;
  }


#s-7693f157-2e3e-4f5c-bb04-d85c5fc65a2f.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7693f157-2e3e-4f5c-bb04-d85c5fc65a2f-root {
    text-align: center;
  }


#s-7693f157-2e3e-4f5c-bb04-d85c5fc65a2f.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7693f157-2e3e-4f5c-bb04-d85c5fc65a2f-root {
    text-align: center;
  }


#s-7693f157-2e3e-4f5c-bb04-d85c5fc65a2f.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}@media (max-width: 767px){
  #s-7693f157-2e3e-4f5c-bb04-d85c5fc65a2f-root {
    text-align: center;
  }


#s-7693f157-2e3e-4f5c-bb04-d85c5fc65a2f.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Lato;
  display:  block ;
}
}
#s-68486903-2136-444a-a3bd-ae3582f12ff4 {
  border-style: solid;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 10px;
border-left-width: 10px;
border-bottom-width: 10px;
border-right-width: 10px;
border-color: rgba(255, 255, 255, 1);
border-radius: 1px;
background-color: rgba(21, 44, 78, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-68486903-2136-444a-a3bd-ae3582f12ff4:hover {background-color: rgba(30, 100, 158, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-68486903-2136-444a-a3bd-ae3582f12ff4:active {background-color: rgba(21, 44, 78, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-68486903-2136-444a-a3bd-ae3582f12ff4-root {
    text-align: center;
  }


#s-68486903-2136-444a-a3bd-ae3582f12ff4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-68486903-2136-444a-a3bd-ae3582f12ff4-root {
    text-align: center;
  }


#s-68486903-2136-444a-a3bd-ae3582f12ff4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-68486903-2136-444a-a3bd-ae3582f12ff4-root {
    text-align: center;
  }


#s-68486903-2136-444a-a3bd-ae3582f12ff4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-68486903-2136-444a-a3bd-ae3582f12ff4-root {
    text-align: center;
  }


#s-68486903-2136-444a-a3bd-ae3582f12ff4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-68486903-2136-444a-a3bd-ae3582f12ff4-root {
    text-align: center;
  }


#s-68486903-2136-444a-a3bd-ae3582f12ff4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  
  display:  block ;
}
}
#s-06747246-14b4-4992-9423-8d3b22064ed1 {
  border-style: solid;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 10px;
border-left-width: 10px;
border-bottom-width: 10px;
border-right-width: 10px;
border-color: rgba(255, 255, 255, 1);
border-radius: 1px;
background-color: rgba(21, 44, 78, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-06747246-14b4-4992-9423-8d3b22064ed1:hover {background-color: rgba(30, 100, 158, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-06747246-14b4-4992-9423-8d3b22064ed1:active {background-color: rgba(21, 44, 78, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-06747246-14b4-4992-9423-8d3b22064ed1-root {
    text-align: center;
  }


#s-06747246-14b4-4992-9423-8d3b22064ed1.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-06747246-14b4-4992-9423-8d3b22064ed1-root {
    text-align: center;
  }


#s-06747246-14b4-4992-9423-8d3b22064ed1.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-06747246-14b4-4992-9423-8d3b22064ed1-root {
    text-align: center;
  }


#s-06747246-14b4-4992-9423-8d3b22064ed1.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-06747246-14b4-4992-9423-8d3b22064ed1-root {
    text-align: center;
  }


#s-06747246-14b4-4992-9423-8d3b22064ed1.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-06747246-14b4-4992-9423-8d3b22064ed1-root {
    text-align: center;
  }


#s-06747246-14b4-4992-9423-8d3b22064ed1.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  
  display:  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;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}

.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty:not(.shopify-section *):not([id^="wistia"]) {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}

/* <-- User Content Animations */

.shogun-form-error-msg,
.shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animate__animated{animation-duration:1s;animation-duration:var(--animate-duration);animation-fill-mode:both}.animate__animated.animate__infinite{animation-iteration-count:infinite}.animate__animated.animate__repeat-1{animation-iteration-count:1;animation-iteration-count:var(--animate-repeat)}.animate__animated.animate__repeat-2{animation-iteration-count:2;animation-iteration-count:calc(var(--animate-repeat)*2)}.animate__animated.animate__repeat-3{animation-iteration-count:3;animation-iteration-count:calc(var(--animate-repeat)*3)}.animate__animated.animate__delay-1s{animation-delay:1s;animation-delay:var(--animate-delay)}.animate__animated.animate__delay-2s{animation-delay:2s;animation-delay:calc(var(--animate-delay)*2)}.animate__animated.animate__delay-3s{animation-delay:3s;animation-delay:calc(var(--animate-delay)*3)}.animate__animated.animate__delay-4s{animation-delay:4s;animation-delay:calc(var(--animate-delay)*4)}.animate__animated.animate__delay-5s{animation-delay:5s;animation-delay:calc(var(--animate-delay)*5)}.animate__animated.animate__faster{animation-duration:.5s;animation-duration:calc(var(--animate-duration)/2)}.animate__animated.animate__fast{animation-duration:.8s;animation-duration:calc(var(--animate-duration)*0.8)}.animate__animated.animate__slow{animation-duration:2s;animation-duration:calc(var(--animate-duration)*2)}.animate__animated.animate__slower{animation-duration:3s;animation-duration:calc(var(--animate-duration)*3)}@media (prefers-reduced-motion:reduce),print{.animate__animated{animation-duration:1ms!important;transition-duration:1ms!important;animation-iteration-count:1!important}.animate__animated[class*=Out]{opacity:0}}@keyframes bounce{0%,20%,53%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}40%,43%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0) scaleY(.95)}90%{transform:translate3d(0,-4px,0) scaleY(1.02)}}.animate__bounce{animation-name:bounce;transform-origin:center bottom}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.animate__flash{animation-name:flash}@keyframes pulse{0%{transform:scaleX(1)}50%{transform:scale3d(1.05,1.05,1.05)}to{transform:scaleX(1)}}.animate__pulse{animation-name:pulse;animation-timing-function:ease-in-out}@keyframes rubberBand{0%{transform:scaleX(1)}30%{transform:scale3d(1.25,.75,1)}40%{transform:scale3d(.75,1.25,1)}50%{transform:scale3d(1.15,.85,1)}65%{transform:scale3d(.95,1.05,1)}75%{transform:scale3d(1.05,.95,1)}to{transform:scaleX(1)}}.animate__rubberBand{animation-name:rubberBand}@keyframes shakeX{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(-10px,0,0)}20%,40%,60%,80%{transform:translate3d(10px,0,0)}}.animate__shakeX{animation-name:shakeX}@keyframes shakeY{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(0,-10px,0)}20%,40%,60%,80%{transform:translate3d(0,10px,0)}}.animate__shakeY{animation-name:shakeY}@keyframes headShake{0%{transform:translateX(0)}6.5%{transform:translateX(-6px) rotateY(-9deg)}18.5%{transform:translateX(5px) rotateY(7deg)}31.5%{transform:translateX(-3px) rotateY(-5deg)}43.5%{transform:translateX(2px) rotateY(3deg)}50%{transform:translateX(0)}}.animate__headShake{animation-timing-function:ease-in-out;animation-name:headShake}@keyframes swing{20%{transform:rotate(15deg)}40%{transform:rotate(-10deg)}60%{transform:rotate(5deg)}80%{transform:rotate(-5deg)}to{transform:rotate(0deg)}}.animate__swing{transform-origin:top center;animation-name:swing}@keyframes tada{0%{transform:scaleX(1)}10%,20%{transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{transform:scaleX(1)}}.animate__tada{animation-name:tada}@keyframes wobble{0%{transform:translateZ(0)}15%{transform:translate3d(-25%,0,0) rotate(-5deg)}30%{transform:translate3d(20%,0,0) rotate(3deg)}45%{transform:translate3d(-15%,0,0) rotate(-3deg)}60%{transform:translate3d(10%,0,0) rotate(2deg)}75%{transform:translate3d(-5%,0,0) rotate(-1deg)}to{transform:translateZ(0)}}.animate__wobble{animation-name:wobble}@keyframes jello{0%,11.1%,to{transform:translateZ(0)}22.2%{transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{transform:skewX(6.25deg) skewY(6.25deg)}44.4%{transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{transform:skewX(.390625deg) skewY(.390625deg)}88.8%{transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.animate__jello{animation-name:jello;transform-origin:center}@keyframes heartBeat{0%{transform:scale(1)}14%{transform:scale(1.3)}28%{transform:scale(1)}42%{transform:scale(1.3)}70%{transform:scale(1)}}.animate__heartBeat{animation-name:heartBeat;animation-duration:1.3s;animation-duration:calc(var(--animate-duration)*1.3);animation-timing-function:ease-in-out}@keyframes backInDown{0%{transform:translateY(-1200px) scale(.7);opacity:.7}80%{transform:translateY(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInDown{animation-name:backInDown}@keyframes backInLeft{0%{transform:translateX(-2000px) scale(.7);opacity:.7}80%{transform:translateX(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInLeft{animation-name:backInLeft}@keyframes backInRight{0%{transform:translateX(2000px) scale(.7);opacity:.7}80%{transform:translateX(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInRight{animation-name:backInRight}@keyframes backInUp{0%{transform:translateY(1200px) scale(.7);opacity:.7}80%{transform:translateY(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInUp{animation-name:backInUp}@keyframes backOutDown{0%{transform:scale(1);opacity:1}20%{transform:translateY(0) scale(.7);opacity:.7}to{transform:translateY(700px) scale(.7);opacity:.7}}.animate__backOutDown{animation-name:backOutDown}@keyframes backOutLeft{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(.7);opacity:.7}to{transform:translateX(-2000px) scale(.7);opacity:.7}}.animate__backOutLeft{animation-name:backOutLeft}@keyframes backOutRight{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(.7);opacity:.7}to{transform:translateX(2000px) scale(.7);opacity:.7}}.animate__backOutRight{animation-name:backOutRight}@keyframes backOutUp{0%{transform:scale(1);opacity:1}20%{transform:translateY(0) scale(.7);opacity:.7}to{transform:translateY(-700px) scale(.7);opacity:.7}}.animate__backOutUp{animation-name:backOutUp}@keyframes bounceIn{0%,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scaleX(1)}}.animate__bounceIn{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);animation-name:bounceIn}@keyframes bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;transform:translate3d(0,25px,0) scaleY(.9)}75%{transform:translate3d(0,-10px,0) scaleY(.95)}90%{transform:translate3d(0,5px,0) scaleY(.985)}to{transform:translateZ(0)}}.animate__bounceInDown{animation-name:bounceInDown}@keyframes bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;transform:translate3d(25px,0,0) scaleX(1)}75%{transform:translate3d(-10px,0,0) scaleX(.98)}90%{transform:translate3d(5px,0,0) scaleX(.995)}to{transform:translateZ(0)}}.animate__bounceInLeft{animation-name:bounceInLeft}@keyframes bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;transform:translate3d(-25px,0,0) scaleX(1)}75%{transform:translate3d(10px,0,0) scaleX(.98)}90%{transform:translate3d(-5px,0,0) scaleX(.995)}to{transform:translateZ(0)}}.animate__bounceInRight{animation-name:bounceInRight}@keyframes bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;transform:translate3d(0,-20px,0) scaleY(.9)}75%{transform:translate3d(0,10px,0) scaleY(.95)}90%{transform:translate3d(0,-5px,0) scaleY(.985)}to{transform:translateZ(0)}}.animate__bounceInUp{animation-name:bounceInUp}@keyframes bounceOut{20%{transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(.3,.3,.3)}}.animate__bounceOut{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);animation-name:bounceOut}@keyframes bounceOutDown{20%{transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;transform:translate3d(0,2000px,0) scaleY(3)}}.animate__bounceOutDown{animation-name:bounceOutDown}@keyframes bounceOutLeft{20%{opacity:1;transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;transform:translate3d(-2000px,0,0) scaleX(2)}}.animate__bounceOutLeft{animation-name:bounceOutLeft}@keyframes bounceOutRight{20%{opacity:1;transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;transform:translate3d(2000px,0,0) scaleX(2)}}.animate__bounceOutRight{animation-name:bounceOutRight}@keyframes bounceOutUp{20%{transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;transform:translate3d(0,-2000px,0) scaleY(3)}}.animate__bounceOutUp{animation-name:bounceOutUp}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate__fadeIn{animation-name:fadeIn}@keyframes fadeInDown{0%{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInDown{animation-name:fadeInDown}@keyframes fadeInDownBig{0%{opacity:0;transform:translate3d(0,-2000px,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInDownBig{animation-name:fadeInDownBig}@keyframes fadeInLeft{0%{opacity:0;transform:translate3d(-100%,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInLeft{animation-name:fadeInLeft}@keyframes fadeInLeftBig{0%{opacity:0;transform:translate3d(-2000px,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInLeftBig{animation-name:fadeInLeftBig}@keyframes fadeInRight{0%{opacity:0;transform:translate3d(100%,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInRight{animation-name:fadeInRight}@keyframes fadeInRightBig{0%{opacity:0;transform:translate3d(2000px,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInRightBig{animation-name:fadeInRightBig}@keyframes fadeInUp{0%{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInUp{animation-name:fadeInUp}@keyframes fadeInUpBig{0%{opacity:0;transform:translate3d(0,2000px,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInUpBig{animation-name:fadeInUpBig}@keyframes fadeInTopLeft{0%{opacity:0;transform:translate3d(-100%,-100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInTopLeft{animation-name:fadeInTopLeft}@keyframes fadeInTopRight{0%{opacity:0;transform:translate3d(100%,-100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInTopRight{animation-name:fadeInTopRight}@keyframes fadeInBottomLeft{0%{opacity:0;transform:translate3d(-100%,100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInBottomLeft{animation-name:fadeInBottomLeft}@keyframes fadeInBottomRight{0%{opacity:0;transform:translate3d(100%,100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInBottomRight{animation-name:fadeInBottomRight}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.animate__fadeOut{animation-name:fadeOut}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;transform:translate3d(0,100%,0)}}.animate__fadeOutDown{animation-name:fadeOutDown}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,2000px,0)}}.animate__fadeOutDownBig{animation-name:fadeOutDownBig}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;transform:translate3d(-100%,0,0)}}.animate__fadeOutLeft{animation-name:fadeOutLeft}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;transform:translate3d(-2000px,0,0)}}.animate__fadeOutLeftBig{animation-name:fadeOutLeftBig}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0)}}.animate__fadeOutRight{animation-name:fadeOutRight}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;transform:translate3d(2000px,0,0)}}.animate__fadeOutRightBig{animation-name:fadeOutRightBig}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;transform:translate3d(0,-100%,0)}}.animate__fadeOutUp{animation-name:fadeOutUp}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,-2000px,0)}}.animate__fadeOutUpBig{animation-name:fadeOutUpBig}@keyframes fadeOutTopLeft{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(-100%,-100%,0)}}.animate__fadeOutTopLeft{animation-name:fadeOutTopLeft}@keyframes fadeOutTopRight{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(100%,-100%,0)}}.animate__fadeOutTopRight{animation-name:fadeOutTopRight}@keyframes fadeOutBottomRight{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(100%,100%,0)}}.animate__fadeOutBottomRight{animation-name:fadeOutBottomRight}@keyframes fadeOutBottomLeft{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(-100%,100%,0)}}.animate__fadeOutBottomLeft{animation-name:fadeOutBottomLeft}@keyframes flip{0%{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);animation-timing-function:ease-out}40%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);animation-timing-function:ease-out}50%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);animation-timing-function:ease-in}80%{transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);animation-timing-function:ease-in}to{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);animation-timing-function:ease-in}}.animate__animated.animate__flip{backface-visibility:visible;animation-name:flip}@keyframes flipInX{0%{transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}.animate__flipInX{backface-visibility:visible!important;animation-name:flipInX}@keyframes flipInY{0%{transform:perspective(400px) rotateY(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateY(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateY(10deg);opacity:1}80%{transform:perspective(400px) rotateY(-5deg)}to{transform:perspective(400px)}}.animate__flipInY{backface-visibility:visible!important;animation-name:flipInY}@keyframes flipOutX{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateX(-20deg);opacity:1}to{transform:perspective(400px) rotateX(90deg);opacity:0}}.animate__flipOutX{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);animation-name:flipOutX;backface-visibility:visible!important}@keyframes flipOutY{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateY(-15deg);opacity:1}to{transform:perspective(400px) rotateY(90deg);opacity:0}}.animate__flipOutY{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);backface-visibility:visible!important;animation-name:flipOutY}@keyframes lightSpeedInRight{0%{transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{transform:skewX(20deg);opacity:1}80%{transform:skewX(-5deg)}to{transform:translateZ(0)}}.animate__lightSpeedInRight{animation-name:lightSpeedInRight;animation-timing-function:ease-out}@keyframes lightSpeedInLeft{0%{transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{transform:skewX(-20deg);opacity:1}80%{transform:skewX(5deg)}to{transform:translateZ(0)}}.animate__lightSpeedInLeft{animation-name:lightSpeedInLeft;animation-timing-function:ease-out}@keyframes lightSpeedOutRight{0%{opacity:1}to{transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.animate__lightSpeedOutRight{animation-name:lightSpeedOutRight;animation-timing-function:ease-in}@keyframes lightSpeedOutLeft{0%{opacity:1}to{transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}.animate__lightSpeedOutLeft{animation-name:lightSpeedOutLeft;animation-timing-function:ease-in}@keyframes rotateIn{0%{transform:rotate(-200deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateIn{animation-name:rotateIn;transform-origin:center}@keyframes rotateInDownLeft{0%{transform:rotate(-45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInDownLeft{animation-name:rotateInDownLeft;transform-origin:left bottom}@keyframes rotateInDownRight{0%{transform:rotate(45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInDownRight{animation-name:rotateInDownRight;transform-origin:right bottom}@keyframes rotateInUpLeft{0%{transform:rotate(45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInUpLeft{animation-name:rotateInUpLeft;transform-origin:left bottom}@keyframes rotateInUpRight{0%{transform:rotate(-90deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInUpRight{animation-name:rotateInUpRight;transform-origin:right bottom}@keyframes rotateOut{0%{opacity:1}to{transform:rotate(200deg);opacity:0}}.animate__rotateOut{animation-name:rotateOut;transform-origin:center}@keyframes rotateOutDownLeft{0%{opacity:1}to{transform:rotate(45deg);opacity:0}}.animate__rotateOutDownLeft{animation-name:rotateOutDownLeft;transform-origin:left bottom}@keyframes rotateOutDownRight{0%{opacity:1}to{transform:rotate(-45deg);opacity:0}}.animate__rotateOutDownRight{animation-name:rotateOutDownRight;transform-origin:right bottom}@keyframes rotateOutUpLeft{0%{opacity:1}to{transform:rotate(-45deg);opacity:0}}.animate__rotateOutUpLeft{animation-name:rotateOutUpLeft;transform-origin:left bottom}@keyframes rotateOutUpRight{0%{opacity:1}to{transform:rotate(90deg);opacity:0}}.animate__rotateOutUpRight{animation-name:rotateOutUpRight;transform-origin:right bottom}@keyframes hinge{0%{animation-timing-function:ease-in-out}20%,60%{transform:rotate(80deg);animation-timing-function:ease-in-out}40%,80%{transform:rotate(60deg);animation-timing-function:ease-in-out;opacity:1}to{transform:translate3d(0,700px,0);opacity:0}}.animate__hinge{animation-duration:2s;animation-duration:calc(var(--animate-duration)*2);animation-name:hinge;transform-origin:top left}@keyframes jackInTheBox{0%{opacity:0;transform:scale(.1) rotate(30deg);transform-origin:center bottom}50%{transform:rotate(-10deg)}70%{transform:rotate(3deg)}to{opacity:1;transform:scale(1)}}.animate__jackInTheBox{animation-name:jackInTheBox}@keyframes rollIn{0%{opacity:0;transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;transform:translateZ(0)}}.animate__rollIn{animation-name:rollIn}@keyframes rollOut{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0) rotate(120deg)}}.animate__rollOut{animation-name:rollOut}@keyframes zoomIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}.animate__zoomIn{animation-name:zoomIn}@keyframes zoomInDown{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInDown{animation-name:zoomInDown}@keyframes zoomInLeft{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInLeft{animation-name:zoomInLeft}@keyframes zoomInRight{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInRight{animation-name:zoomInRight}@keyframes zoomInUp{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInUp{animation-name:zoomInUp}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.animate__zoomOut{animation-name:zoomOut}@keyframes zoomOutDown{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutDown{animation-name:zoomOutDown;transform-origin:center bottom}@keyframes zoomOutLeft{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(-2000px,0,0)}}.animate__zoomOutLeft{animation-name:zoomOutLeft;transform-origin:left center}@keyframes zoomOutRight{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(2000px,0,0)}}.animate__zoomOutRight{animation-name:zoomOutRight;transform-origin:right center}@keyframes zoomOutUp{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutUp{animation-name:zoomOutUp;transform-origin:center bottom}@keyframes slideInDown{0%{transform:translate3d(0,-100%,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInDown{animation-name:slideInDown}@keyframes slideInLeft{0%{transform:translate3d(-100%,0,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInLeft{animation-name:slideInLeft}@keyframes slideInRight{0%{transform:translate3d(100%,0,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInRight{animation-name:slideInRight}@keyframes slideInUp{0%{transform:translate3d(0,100%,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInUp{animation-name:slideInUp}@keyframes slideOutDown{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,100%,0)}}.animate__slideOutDown{animation-name:slideOutDown}@keyframes slideOutLeft{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(-100%,0,0)}}.animate__slideOutLeft{animation-name:slideOutLeft}@keyframes slideOutRight{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(100%,0,0)}}.animate__slideOutRight{animation-name:slideOutRight}@keyframes slideOutUp{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,-100%,0)}}.animate__slideOutUp{animation-name:slideOutUp}