<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.shg-box {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  flex-direction: column;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  /**
   * While `flex: 1` is enough here, we need to supply the rest
   * of the parameters (`1 auto`) to keep compatibility with IE11.
   * Otherwise, IE11 flex would break.
   */
  flex: 1 1 auto;
}

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

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

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

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

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

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

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

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

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

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

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

#s-b36f726a-5590-492e-ad67-9b8878a0c607 {
  margin-top: 20px;
margin-left: 2%;
margin-right: 2%;
min-height: 50px;
}








#s-b36f726a-5590-492e-ad67-9b8878a0c607 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b36f726a-5590-492e-ad67-9b8878a0c607.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

.shg-row &gt; * {
  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 &gt; div:empty {
  display: block;
}

#s-3dcb0dac-9cff-4c8f-893f-a7aa5167cb36 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-3dcb0dac-9cff-4c8f-893f-a7aa5167cb36"] &gt; .shg-row &gt; .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-3dcb0dac-9cff-4c8f-893f-a7aa5167cb36"] &gt; .shg-row &gt; .shg-c-sm-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-3dcb0dac-9cff-4c8f-893f-a7aa5167cb36"] &gt; .shg-row &gt; .shg-c-md-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-3dcb0dac-9cff-4c8f-893f-a7aa5167cb36"] &gt; .shg-row &gt; .shg-c-lg-3 {
  width: calc(25.0% - 7.5px);
}

}

.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 {
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

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

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

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

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

.shogun-image-content {
  display: flex;
  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&gt;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&gt;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-1a115a22-1d9c-4002-8dff-6aad12e6af0c {
  margin-left: auto;
margin-right: auto;
max-width: 2048px;
aspect-ratio: 2048/1759;
text-align: center;
}



.shg-image-margin-container-s-1a115a22-1d9c-4002-8dff-6aad12e6af0c {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-1a115a22-1d9c-4002-8dff-6aad12e6af0c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1a115a22-1d9c-4002-8dff-6aad12e6af0c .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-1a115a22-1d9c-4002-8dff-6aad12e6af0c .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1a115a22-1d9c-4002-8dff-6aad12e6af0c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1a115a22-1d9c-4002-8dff-6aad12e6af0c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-1a115a22-1d9c-4002-8dff-6aad12e6af0c .shogun-image-content {
  
    align-items: center;
  
}

.s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container {
      position: relative;
    }

    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c 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-1a115a22-1d9c-4002-8dff-6aad12e6af0c {
  
  
  
  
}

#s-1a115a22-1d9c-4002-8dff-6aad12e6af0c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1a115a22-1d9c-4002-8dff-6aad12e6af0c .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-1a115a22-1d9c-4002-8dff-6aad12e6af0c .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1a115a22-1d9c-4002-8dff-6aad12e6af0c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1a115a22-1d9c-4002-8dff-6aad12e6af0c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-1a115a22-1d9c-4002-8dff-6aad12e6af0c .shogun-image-content {
  
    align-items: center;
  
}

.s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container {
      position: relative;
    }

    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c 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-1a115a22-1d9c-4002-8dff-6aad12e6af0c {
  
  
  
  
}

#s-1a115a22-1d9c-4002-8dff-6aad12e6af0c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1a115a22-1d9c-4002-8dff-6aad12e6af0c .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-1a115a22-1d9c-4002-8dff-6aad12e6af0c .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1a115a22-1d9c-4002-8dff-6aad12e6af0c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1a115a22-1d9c-4002-8dff-6aad12e6af0c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-1a115a22-1d9c-4002-8dff-6aad12e6af0c .shogun-image-content {
  
    align-items: center;
  
}

.s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container {
      position: relative;
    }

    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c 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-1a115a22-1d9c-4002-8dff-6aad12e6af0c {
  
  
  
  
}

#s-1a115a22-1d9c-4002-8dff-6aad12e6af0c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1a115a22-1d9c-4002-8dff-6aad12e6af0c .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-1a115a22-1d9c-4002-8dff-6aad12e6af0c .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1a115a22-1d9c-4002-8dff-6aad12e6af0c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1a115a22-1d9c-4002-8dff-6aad12e6af0c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-1a115a22-1d9c-4002-8dff-6aad12e6af0c .shogun-image-content {
  
    align-items: center;
  
}

.s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container {
      position: relative;
    }

    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c 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-1a115a22-1d9c-4002-8dff-6aad12e6af0c {
  
  
  
  
}

#s-1a115a22-1d9c-4002-8dff-6aad12e6af0c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1a115a22-1d9c-4002-8dff-6aad12e6af0c .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-1a115a22-1d9c-4002-8dff-6aad12e6af0c .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1a115a22-1d9c-4002-8dff-6aad12e6af0c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1a115a22-1d9c-4002-8dff-6aad12e6af0c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-1a115a22-1d9c-4002-8dff-6aad12e6af0c .shogun-image-content {
  
    align-items: center;
  
}

.s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container {
      position: relative;
    }

    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1a115a22-1d9c-4002-8dff-6aad12e6af0c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2048px;
    }
  }

}
#s-de183d49-9b97-416b-b9bd-14aec914cab2 {
  margin-left: auto;
margin-right: auto;
max-width: 2048px;
aspect-ratio: 2048/1759;
text-align: center;
}



.shg-image-margin-container-s-de183d49-9b97-416b-b9bd-14aec914cab2 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-de183d49-9b97-416b-b9bd-14aec914cab2 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-de183d49-9b97-416b-b9bd-14aec914cab2 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-de183d49-9b97-416b-b9bd-14aec914cab2 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-de183d49-9b97-416b-b9bd-14aec914cab2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-de183d49-9b97-416b-b9bd-14aec914cab2 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-de183d49-9b97-416b-b9bd-14aec914cab2 .shogun-image-content {
  
    align-items: center;
  
}

.s-de183d49-9b97-416b-b9bd-14aec914cab2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de183d49-9b97-416b-b9bd-14aec914cab2 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container {
      position: relative;
    }

    .s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de183d49-9b97-416b-b9bd-14aec914cab2 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-de183d49-9b97-416b-b9bd-14aec914cab2 {
  
  
  
  
}

#s-de183d49-9b97-416b-b9bd-14aec914cab2 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-de183d49-9b97-416b-b9bd-14aec914cab2 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-de183d49-9b97-416b-b9bd-14aec914cab2 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-de183d49-9b97-416b-b9bd-14aec914cab2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-de183d49-9b97-416b-b9bd-14aec914cab2 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-de183d49-9b97-416b-b9bd-14aec914cab2 .shogun-image-content {
  
    align-items: center;
  
}

.s-de183d49-9b97-416b-b9bd-14aec914cab2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de183d49-9b97-416b-b9bd-14aec914cab2 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container {
      position: relative;
    }

    .s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de183d49-9b97-416b-b9bd-14aec914cab2 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-de183d49-9b97-416b-b9bd-14aec914cab2 {
  
  
  
  
}

#s-de183d49-9b97-416b-b9bd-14aec914cab2 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-de183d49-9b97-416b-b9bd-14aec914cab2 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-de183d49-9b97-416b-b9bd-14aec914cab2 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-de183d49-9b97-416b-b9bd-14aec914cab2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-de183d49-9b97-416b-b9bd-14aec914cab2 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-de183d49-9b97-416b-b9bd-14aec914cab2 .shogun-image-content {
  
    align-items: center;
  
}

.s-de183d49-9b97-416b-b9bd-14aec914cab2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de183d49-9b97-416b-b9bd-14aec914cab2 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container {
      position: relative;
    }

    .s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de183d49-9b97-416b-b9bd-14aec914cab2 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-de183d49-9b97-416b-b9bd-14aec914cab2 {
  
  
  
  
}

#s-de183d49-9b97-416b-b9bd-14aec914cab2 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-de183d49-9b97-416b-b9bd-14aec914cab2 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-de183d49-9b97-416b-b9bd-14aec914cab2 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-de183d49-9b97-416b-b9bd-14aec914cab2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-de183d49-9b97-416b-b9bd-14aec914cab2 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-de183d49-9b97-416b-b9bd-14aec914cab2 .shogun-image-content {
  
    align-items: center;
  
}

.s-de183d49-9b97-416b-b9bd-14aec914cab2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de183d49-9b97-416b-b9bd-14aec914cab2 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container {
      position: relative;
    }

    .s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de183d49-9b97-416b-b9bd-14aec914cab2 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-de183d49-9b97-416b-b9bd-14aec914cab2 {
  
  
  
  
}

#s-de183d49-9b97-416b-b9bd-14aec914cab2 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-de183d49-9b97-416b-b9bd-14aec914cab2 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-de183d49-9b97-416b-b9bd-14aec914cab2 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-de183d49-9b97-416b-b9bd-14aec914cab2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-de183d49-9b97-416b-b9bd-14aec914cab2 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-de183d49-9b97-416b-b9bd-14aec914cab2 .shogun-image-content {
  
    align-items: center;
  
}

.s-de183d49-9b97-416b-b9bd-14aec914cab2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de183d49-9b97-416b-b9bd-14aec914cab2 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container {
      position: relative;
    }

    .s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de183d49-9b97-416b-b9bd-14aec914cab2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de183d49-9b97-416b-b9bd-14aec914cab2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2048px;
    }
  }

}
#s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 {
  margin-left: auto;
margin-right: auto;
max-width: 2048px;
aspect-ratio: 2048/1759;
text-align: center;
}
@media (max-width: 767px){#s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 {
  margin-top: 10px;
}
}


.shg-image-margin-container-s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 .shogun-image-content {
  
    align-items: center;
  
}

.s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container {
      position: relative;
    }

    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 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-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 {
  
  
  
  
}

#s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 .shogun-image-content {
  
    align-items: center;
  
}

.s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container {
      position: relative;
    }

    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 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-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 {
  
  
  
  
}

#s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 .shogun-image-content {
  
    align-items: center;
  
}

.s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container {
      position: relative;
    }

    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 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-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 {
  
  
  
  
}

#s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 .shogun-image-content {
  
    align-items: center;
  
}

.s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container {
      position: relative;
    }

    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 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-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 {
  
  
  margin-top: 10px;
  
}

#s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 .shogun-image-content {
  
    align-items: center;
  
}

.s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container {
      position: relative;
    }

    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-db8d7c0e-43b4-4294-ba4c-7c73b63ed714 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2048px;
    }
  }

}
#s-5ad5ead1-0483-4bbd-b222-621612df3e33 {
  margin-left: auto;
margin-right: auto;
max-width: 2048px;
aspect-ratio: 2048/1759;
text-align: center;
}
@media (max-width: 767px){#s-5ad5ead1-0483-4bbd-b222-621612df3e33 {
  margin-top: 10px;
}
}


.shg-image-margin-container-s-5ad5ead1-0483-4bbd-b222-621612df3e33 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-5ad5ead1-0483-4bbd-b222-621612df3e33 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5ad5ead1-0483-4bbd-b222-621612df3e33 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-5ad5ead1-0483-4bbd-b222-621612df3e33 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5ad5ead1-0483-4bbd-b222-621612df3e33 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5ad5ead1-0483-4bbd-b222-621612df3e33 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-5ad5ead1-0483-4bbd-b222-621612df3e33 .shogun-image-content {
  
    align-items: center;
  
}

.s-5ad5ead1-0483-4bbd-b222-621612df3e33.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5ad5ead1-0483-4bbd-b222-621612df3e33 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container {
      position: relative;
    }

    .s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5ad5ead1-0483-4bbd-b222-621612df3e33 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-5ad5ead1-0483-4bbd-b222-621612df3e33 {
  
  
  
  
}

#s-5ad5ead1-0483-4bbd-b222-621612df3e33 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5ad5ead1-0483-4bbd-b222-621612df3e33 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-5ad5ead1-0483-4bbd-b222-621612df3e33 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5ad5ead1-0483-4bbd-b222-621612df3e33 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5ad5ead1-0483-4bbd-b222-621612df3e33 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-5ad5ead1-0483-4bbd-b222-621612df3e33 .shogun-image-content {
  
    align-items: center;
  
}

.s-5ad5ead1-0483-4bbd-b222-621612df3e33.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5ad5ead1-0483-4bbd-b222-621612df3e33 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container {
      position: relative;
    }

    .s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5ad5ead1-0483-4bbd-b222-621612df3e33 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-5ad5ead1-0483-4bbd-b222-621612df3e33 {
  
  
  
  
}

#s-5ad5ead1-0483-4bbd-b222-621612df3e33 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5ad5ead1-0483-4bbd-b222-621612df3e33 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-5ad5ead1-0483-4bbd-b222-621612df3e33 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5ad5ead1-0483-4bbd-b222-621612df3e33 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5ad5ead1-0483-4bbd-b222-621612df3e33 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-5ad5ead1-0483-4bbd-b222-621612df3e33 .shogun-image-content {
  
    align-items: center;
  
}

.s-5ad5ead1-0483-4bbd-b222-621612df3e33.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5ad5ead1-0483-4bbd-b222-621612df3e33 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container {
      position: relative;
    }

    .s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5ad5ead1-0483-4bbd-b222-621612df3e33 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-5ad5ead1-0483-4bbd-b222-621612df3e33 {
  
  
  
  
}

#s-5ad5ead1-0483-4bbd-b222-621612df3e33 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5ad5ead1-0483-4bbd-b222-621612df3e33 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-5ad5ead1-0483-4bbd-b222-621612df3e33 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5ad5ead1-0483-4bbd-b222-621612df3e33 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5ad5ead1-0483-4bbd-b222-621612df3e33 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-5ad5ead1-0483-4bbd-b222-621612df3e33 .shogun-image-content {
  
    align-items: center;
  
}

.s-5ad5ead1-0483-4bbd-b222-621612df3e33.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5ad5ead1-0483-4bbd-b222-621612df3e33 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container {
      position: relative;
    }

    .s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5ad5ead1-0483-4bbd-b222-621612df3e33 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-5ad5ead1-0483-4bbd-b222-621612df3e33 {
  
  
  margin-top: 10px;
  
}

#s-5ad5ead1-0483-4bbd-b222-621612df3e33 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5ad5ead1-0483-4bbd-b222-621612df3e33 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-5ad5ead1-0483-4bbd-b222-621612df3e33 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5ad5ead1-0483-4bbd-b222-621612df3e33 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5ad5ead1-0483-4bbd-b222-621612df3e33 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-5ad5ead1-0483-4bbd-b222-621612df3e33 .shogun-image-content {
  
    align-items: center;
  
}

.s-5ad5ead1-0483-4bbd-b222-621612df3e33.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5ad5ead1-0483-4bbd-b222-621612df3e33 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container {
      position: relative;
    }

    .s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5ad5ead1-0483-4bbd-b222-621612df3e33.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5ad5ead1-0483-4bbd-b222-621612df3e33 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2048px;
    }
  }

}
#s-d27b3392-8045-407e-8e43-eb3956bbc9f8 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-d27b3392-8045-407e-8e43-eb3956bbc9f8"] &gt; .shg-row &gt; .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-d27b3392-8045-407e-8e43-eb3956bbc9f8"] &gt; .shg-row &gt; .shg-c-sm-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-d27b3392-8045-407e-8e43-eb3956bbc9f8"] &gt; .shg-row &gt; .shg-c-md-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-d27b3392-8045-407e-8e43-eb3956bbc9f8"] &gt; .shg-row &gt; .shg-c-lg-3 {
  width: calc(25.0% - 7.5px);
}

}

#s-f6bc8b43-a64a-4e38-8cdd-f78107167659 {
  margin-left: auto;
margin-right: auto;
max-width: 2048px;
aspect-ratio: 2048/1759;
text-align: center;
}



.shg-image-margin-container-s-f6bc8b43-a64a-4e38-8cdd-f78107167659 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-f6bc8b43-a64a-4e38-8cdd-f78107167659 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f6bc8b43-a64a-4e38-8cdd-f78107167659 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-f6bc8b43-a64a-4e38-8cdd-f78107167659 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f6bc8b43-a64a-4e38-8cdd-f78107167659 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f6bc8b43-a64a-4e38-8cdd-f78107167659 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-f6bc8b43-a64a-4e38-8cdd-f78107167659 .shogun-image-content {
  
    align-items: center;
  
}

.s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container {
      position: relative;
    }

    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659 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-f6bc8b43-a64a-4e38-8cdd-f78107167659 {
  
  
  
  
}

#s-f6bc8b43-a64a-4e38-8cdd-f78107167659 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f6bc8b43-a64a-4e38-8cdd-f78107167659 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-f6bc8b43-a64a-4e38-8cdd-f78107167659 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f6bc8b43-a64a-4e38-8cdd-f78107167659 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f6bc8b43-a64a-4e38-8cdd-f78107167659 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-f6bc8b43-a64a-4e38-8cdd-f78107167659 .shogun-image-content {
  
    align-items: center;
  
}

.s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container {
      position: relative;
    }

    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659 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-f6bc8b43-a64a-4e38-8cdd-f78107167659 {
  
  
  
  
}

#s-f6bc8b43-a64a-4e38-8cdd-f78107167659 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f6bc8b43-a64a-4e38-8cdd-f78107167659 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-f6bc8b43-a64a-4e38-8cdd-f78107167659 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f6bc8b43-a64a-4e38-8cdd-f78107167659 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f6bc8b43-a64a-4e38-8cdd-f78107167659 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-f6bc8b43-a64a-4e38-8cdd-f78107167659 .shogun-image-content {
  
    align-items: center;
  
}

.s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container {
      position: relative;
    }

    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659 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-f6bc8b43-a64a-4e38-8cdd-f78107167659 {
  
  
  
  
}

#s-f6bc8b43-a64a-4e38-8cdd-f78107167659 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f6bc8b43-a64a-4e38-8cdd-f78107167659 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-f6bc8b43-a64a-4e38-8cdd-f78107167659 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f6bc8b43-a64a-4e38-8cdd-f78107167659 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f6bc8b43-a64a-4e38-8cdd-f78107167659 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-f6bc8b43-a64a-4e38-8cdd-f78107167659 .shogun-image-content {
  
    align-items: center;
  
}

.s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container {
      position: relative;
    }

    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659 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-f6bc8b43-a64a-4e38-8cdd-f78107167659 {
  
  
  
  
}

#s-f6bc8b43-a64a-4e38-8cdd-f78107167659 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f6bc8b43-a64a-4e38-8cdd-f78107167659 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-f6bc8b43-a64a-4e38-8cdd-f78107167659 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f6bc8b43-a64a-4e38-8cdd-f78107167659 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f6bc8b43-a64a-4e38-8cdd-f78107167659 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-f6bc8b43-a64a-4e38-8cdd-f78107167659 .shogun-image-content {
  
    align-items: center;
  
}

.s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container {
      position: relative;
    }

    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f6bc8b43-a64a-4e38-8cdd-f78107167659 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2048px;
    }
  }

}
#s-5561d388-40d8-4b24-a40c-e61266e41095 {
  margin-left: auto;
margin-right: auto;
max-width: 2048px;
aspect-ratio: 2048/1759;
text-align: center;
}



.shg-image-margin-container-s-5561d388-40d8-4b24-a40c-e61266e41095 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-5561d388-40d8-4b24-a40c-e61266e41095 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5561d388-40d8-4b24-a40c-e61266e41095 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-5561d388-40d8-4b24-a40c-e61266e41095 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5561d388-40d8-4b24-a40c-e61266e41095 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5561d388-40d8-4b24-a40c-e61266e41095 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-5561d388-40d8-4b24-a40c-e61266e41095 .shogun-image-content {
  
    align-items: center;
  
}

.s-5561d388-40d8-4b24-a40c-e61266e41095.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5561d388-40d8-4b24-a40c-e61266e41095 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container {
      position: relative;
    }

    .s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5561d388-40d8-4b24-a40c-e61266e41095 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-5561d388-40d8-4b24-a40c-e61266e41095 {
  
  
  
  
}

#s-5561d388-40d8-4b24-a40c-e61266e41095 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5561d388-40d8-4b24-a40c-e61266e41095 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-5561d388-40d8-4b24-a40c-e61266e41095 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5561d388-40d8-4b24-a40c-e61266e41095 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5561d388-40d8-4b24-a40c-e61266e41095 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-5561d388-40d8-4b24-a40c-e61266e41095 .shogun-image-content {
  
    align-items: center;
  
}

.s-5561d388-40d8-4b24-a40c-e61266e41095.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5561d388-40d8-4b24-a40c-e61266e41095 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container {
      position: relative;
    }

    .s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5561d388-40d8-4b24-a40c-e61266e41095 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-5561d388-40d8-4b24-a40c-e61266e41095 {
  
  
  
  
}

#s-5561d388-40d8-4b24-a40c-e61266e41095 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5561d388-40d8-4b24-a40c-e61266e41095 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-5561d388-40d8-4b24-a40c-e61266e41095 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5561d388-40d8-4b24-a40c-e61266e41095 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5561d388-40d8-4b24-a40c-e61266e41095 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-5561d388-40d8-4b24-a40c-e61266e41095 .shogun-image-content {
  
    align-items: center;
  
}

.s-5561d388-40d8-4b24-a40c-e61266e41095.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5561d388-40d8-4b24-a40c-e61266e41095 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container {
      position: relative;
    }

    .s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5561d388-40d8-4b24-a40c-e61266e41095 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-5561d388-40d8-4b24-a40c-e61266e41095 {
  
  
  
  
}

#s-5561d388-40d8-4b24-a40c-e61266e41095 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5561d388-40d8-4b24-a40c-e61266e41095 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-5561d388-40d8-4b24-a40c-e61266e41095 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5561d388-40d8-4b24-a40c-e61266e41095 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5561d388-40d8-4b24-a40c-e61266e41095 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-5561d388-40d8-4b24-a40c-e61266e41095 .shogun-image-content {
  
    align-items: center;
  
}

.s-5561d388-40d8-4b24-a40c-e61266e41095.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5561d388-40d8-4b24-a40c-e61266e41095 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container {
      position: relative;
    }

    .s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5561d388-40d8-4b24-a40c-e61266e41095 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-5561d388-40d8-4b24-a40c-e61266e41095 {
  
  
  
  
}

#s-5561d388-40d8-4b24-a40c-e61266e41095 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5561d388-40d8-4b24-a40c-e61266e41095 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-5561d388-40d8-4b24-a40c-e61266e41095 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5561d388-40d8-4b24-a40c-e61266e41095 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5561d388-40d8-4b24-a40c-e61266e41095 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-5561d388-40d8-4b24-a40c-e61266e41095 .shogun-image-content {
  
    align-items: center;
  
}

.s-5561d388-40d8-4b24-a40c-e61266e41095.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5561d388-40d8-4b24-a40c-e61266e41095 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container {
      position: relative;
    }

    .s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5561d388-40d8-4b24-a40c-e61266e41095.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5561d388-40d8-4b24-a40c-e61266e41095 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2048px;
    }
  }

}
#s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 {
  margin-left: auto;
margin-right: auto;
max-width: 2048px;
aspect-ratio: 2048/1759;
text-align: center;
}
@media (max-width: 767px){#s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 {
  margin-top: 10px;
}
}


.shg-image-margin-container-s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 .shogun-image-content {
  
    align-items: center;
  
}

.s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container {
      position: relative;
    }

    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 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-34331b5c-fe2d-4d50-b1df-07500bf1ec86 {
  
  
  
  
}

#s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 .shogun-image-content {
  
    align-items: center;
  
}

.s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container {
      position: relative;
    }

    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 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-34331b5c-fe2d-4d50-b1df-07500bf1ec86 {
  
  
  
  
}

#s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 .shogun-image-content {
  
    align-items: center;
  
}

.s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container {
      position: relative;
    }

    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 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-34331b5c-fe2d-4d50-b1df-07500bf1ec86 {
  
  
  
  
}

#s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 .shogun-image-content {
  
    align-items: center;
  
}

.s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container {
      position: relative;
    }

    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 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-34331b5c-fe2d-4d50-b1df-07500bf1ec86 {
  
  
  margin-top: 10px;
  
}

#s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 .shogun-image-content {
  
    align-items: center;
  
}

.s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shg-align-container {
  display: flex;
  justify-content: center
}

.s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container {
      position: relative;
    }

    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-34331b5c-fe2d-4d50-b1df-07500bf1ec86 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2048px;
    }
  }

}
#s-cb707fbf-9283-4cc1-bde5-116597809c0b {
  margin-left: auto;
margin-right: auto;
max-width: 2048px;
aspect-ratio: 2048/1759;
text-align: center;
}
@media (max-width: 767px){#s-cb707fbf-9283-4cc1-bde5-116597809c0b {
  margin-top: 10px;
}
}


.shg-image-margin-container-s-cb707fbf-9283-4cc1-bde5-116597809c0b {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-cb707fbf-9283-4cc1-bde5-116597809c0b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cb707fbf-9283-4cc1-bde5-116597809c0b .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-cb707fbf-9283-4cc1-bde5-116597809c0b .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cb707fbf-9283-4cc1-bde5-116597809c0b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cb707fbf-9283-4cc1-bde5-116597809c0b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-cb707fbf-9283-4cc1-bde5-116597809c0b .shogun-image-content {
  
    align-items: center;
  
}

.s-cb707fbf-9283-4cc1-bde5-116597809c0b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cb707fbf-9283-4cc1-bde5-116597809c0b {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container {
      position: relative;
    }

    .s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cb707fbf-9283-4cc1-bde5-116597809c0b 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-cb707fbf-9283-4cc1-bde5-116597809c0b {
  
  
  
  
}

#s-cb707fbf-9283-4cc1-bde5-116597809c0b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cb707fbf-9283-4cc1-bde5-116597809c0b .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-cb707fbf-9283-4cc1-bde5-116597809c0b .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cb707fbf-9283-4cc1-bde5-116597809c0b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cb707fbf-9283-4cc1-bde5-116597809c0b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-cb707fbf-9283-4cc1-bde5-116597809c0b .shogun-image-content {
  
    align-items: center;
  
}

.s-cb707fbf-9283-4cc1-bde5-116597809c0b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cb707fbf-9283-4cc1-bde5-116597809c0b {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container {
      position: relative;
    }

    .s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cb707fbf-9283-4cc1-bde5-116597809c0b 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-cb707fbf-9283-4cc1-bde5-116597809c0b {
  
  
  
  
}

#s-cb707fbf-9283-4cc1-bde5-116597809c0b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cb707fbf-9283-4cc1-bde5-116597809c0b .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-cb707fbf-9283-4cc1-bde5-116597809c0b .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cb707fbf-9283-4cc1-bde5-116597809c0b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cb707fbf-9283-4cc1-bde5-116597809c0b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-cb707fbf-9283-4cc1-bde5-116597809c0b .shogun-image-content {
  
    align-items: center;
  
}

.s-cb707fbf-9283-4cc1-bde5-116597809c0b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cb707fbf-9283-4cc1-bde5-116597809c0b {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container {
      position: relative;
    }

    .s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cb707fbf-9283-4cc1-bde5-116597809c0b 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-cb707fbf-9283-4cc1-bde5-116597809c0b {
  
  
  
  
}

#s-cb707fbf-9283-4cc1-bde5-116597809c0b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cb707fbf-9283-4cc1-bde5-116597809c0b .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-cb707fbf-9283-4cc1-bde5-116597809c0b .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cb707fbf-9283-4cc1-bde5-116597809c0b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cb707fbf-9283-4cc1-bde5-116597809c0b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-cb707fbf-9283-4cc1-bde5-116597809c0b .shogun-image-content {
  
    align-items: center;
  
}

.s-cb707fbf-9283-4cc1-bde5-116597809c0b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cb707fbf-9283-4cc1-bde5-116597809c0b {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container {
      position: relative;
    }

    .s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cb707fbf-9283-4cc1-bde5-116597809c0b 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-cb707fbf-9283-4cc1-bde5-116597809c0b {
  
  
  margin-top: 10px;
  
}

#s-cb707fbf-9283-4cc1-bde5-116597809c0b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cb707fbf-9283-4cc1-bde5-116597809c0b .shg-image-content-wrapper {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }

    #s-cb707fbf-9283-4cc1-bde5-116597809c0b .shogun-image-link {
      aspect-ratio: 2048/1759;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cb707fbf-9283-4cc1-bde5-116597809c0b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cb707fbf-9283-4cc1-bde5-116597809c0b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 2048px;
  }



  img.s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image {
    
    
    
    max-height: 2048px;
  }


.s-cb707fbf-9283-4cc1-bde5-116597809c0b .shogun-image-content {
  
    align-items: center;
  
}

.s-cb707fbf-9283-4cc1-bde5-116597809c0b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cb707fbf-9283-4cc1-bde5-116597809c0b {
      --shg-aspect-ratio: calc(2048/1759); 
    }

    .s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container {
      position: relative;
    }

    .s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cb707fbf-9283-4cc1-bde5-116597809c0b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cb707fbf-9283-4cc1-bde5-116597809c0b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 2048px;
    }
  }

}
#s-159a6798-ebfb-4be9-80aa-4d1282fb2c56 {
  margin-top: 20px;
margin-left: 15%;
margin-bottom: -10px;
margin-right: 15%;
min-height: 50px;
}
@media (max-width: 767px){#s-159a6798-ebfb-4be9-80aa-4d1282fb2c56 {
  display: none;
}
#s-159a6798-ebfb-4be9-80aa-4d1282fb2c56, #wrap-s-159a6798-ebfb-4be9-80aa-4d1282fb2c56 { display: none !important; }}







#s-159a6798-ebfb-4be9-80aa-4d1282fb2c56 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-159a6798-ebfb-4be9-80aa-4d1282fb2c56.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  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-50883f5f-6ab1-4ff8-a88c-b9af8a513132 {
  margin-top: 20px;
margin-left: 2%;
margin-right: 2%;
padding-top: 10px;
padding-bottom: 3px;
text-align: center;
}
@media (max-width: 767px){#s-50883f5f-6ab1-4ff8-a88c-b9af8a513132 {
  margin-top: 0px;
margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
display: none;
}
#s-50883f5f-6ab1-4ff8-a88c-b9af8a513132, #wrap-s-50883f5f-6ab1-4ff8-a88c-b9af8a513132 { display: none !important; }}
#s-50883f5f-6ab1-4ff8-a88c-b9af8a513132 .shogun-heading-component h2 {
  color: ;
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


@media (min-width: 1200px){#s-50883f5f-6ab1-4ff8-a88c-b9af8a513132 .shogun-heading-component h2 {
  color: ;
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 48px;
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-50883f5f-6ab1-4ff8-a88c-b9af8a513132 .shogun-heading-component h2 {
  color: ;
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-50883f5f-6ab1-4ff8-a88c-b9af8a513132 .shogun-heading-component h2 {
  color: ;
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}@media (max-width: 767px){#s-50883f5f-6ab1-4ff8-a88c-b9af8a513132 .shogun-heading-component h2 {
  color: ;
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}
#s-115e4b05-f2a0-414d-9dcd-042427935095 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-115e4b05-f2a0-414d-9dcd-042427935095 {
  display: none;
}
#s-115e4b05-f2a0-414d-9dcd-042427935095, #wrap-s-115e4b05-f2a0-414d-9dcd-042427935095 { display: none !important; }}
#s-115e4b05-f2a0-414d-9dcd-042427935095 .shogun-heading-component h2 {
  color: ;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 22px;
  
  
  
}


@media (min-width: 1200px){#s-115e4b05-f2a0-414d-9dcd-042427935095 .shogun-heading-component h2 {
  color: ;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-115e4b05-f2a0-414d-9dcd-042427935095 .shogun-heading-component h2 {
  color: ;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-115e4b05-f2a0-414d-9dcd-042427935095 .shogun-heading-component h2 {
  color: ;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-4f1b979a-5084-4c5a-bb2f-039c5b88054f {
  margin-top: 10px;
margin-left: 3%;
margin-right: 3%;
}
@media (max-width: 767px){#s-4f1b979a-5084-4c5a-bb2f-039c5b88054f {
  display: none;
}
#s-4f1b979a-5084-4c5a-bb2f-039c5b88054f, #wrap-s-4f1b979a-5084-4c5a-bb2f-039c5b88054f { display: none !important; }}
@media (min-width: 0px) {
[id="s-4f1b979a-5084-4c5a-bb2f-039c5b88054f"] &gt; .shg-row &gt; .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4f1b979a-5084-4c5a-bb2f-039c5b88054f"] &gt; .shg-row &gt; .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-4f1b979a-5084-4c5a-bb2f-039c5b88054f"] &gt; .shg-row &gt; .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-4f1b979a-5084-4c5a-bb2f-039c5b88054f"] &gt; .shg-row &gt; .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

.shg-hr-wrapper {
  padding: 30px 0;
}

.shg-hr-wrapper hr {
  margin: 0;
  border: 0;
  width: 100%;
}

#s-c3ff14db-e735-4870-850d-bb3831094f5c {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-c3ff14db-e735-4870-850d-bb3831094f5c {
  display: none;
}
#s-c3ff14db-e735-4870-850d-bb3831094f5c, #wrap-s-c3ff14db-e735-4870-850d-bb3831094f5c { display: none !important; }}
#s-c3ff14db-e735-4870-850d-bb3831094f5c hr {
  border-top: 3px solid rgba(165, 0, 0, 1);
}

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

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

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

.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-f6d7789b-5362-424c-a109-643961d5b637 {
  box-shadow:0px 4px 6px 1px rgba(40, 40, 40, 0.1);
margin-top: 5px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(165, 0, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-f6d7789b-5362-424c-a109-643961d5b637:hover {box-shadow:0px 4px 6px 1px rgba(40, 40, 40, 0.05) !important;
border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(165, 0, 0, 1) !important;
border-radius: 5px !important;
background-color: rgba(242, 242, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(40, 40, 40, 1) !important;}#s-f6d7789b-5362-424c-a109-643961d5b637:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-f6d7789b-5362-424c-a109-643961d5b637 {
  display: none;
}
#s-f6d7789b-5362-424c-a109-643961d5b637, #wrap-s-f6d7789b-5362-424c-a109-643961d5b637 { display: none !important; }}

  #s-f6d7789b-5362-424c-a109-643961d5b637-root {
    text-align: center;
  }


#s-f6d7789b-5362-424c-a109-643961d5b637.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}
@media (min-width: 1200px){
  #s-f6d7789b-5362-424c-a109-643961d5b637-root {
    text-align: center;
  }


#s-f6d7789b-5362-424c-a109-643961d5b637.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f6d7789b-5362-424c-a109-643961d5b637-root {
    text-align: center;
  }


#s-f6d7789b-5362-424c-a109-643961d5b637.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f6d7789b-5362-424c-a109-643961d5b637-root {
    text-align: center;
  }


#s-f6d7789b-5362-424c-a109-643961d5b637.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}
}@media (max-width: 767px){
  #s-f6d7789b-5362-424c-a109-643961d5b637-root {
    text-align: center;
  }


#s-f6d7789b-5362-424c-a109-643961d5b637.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}
}
#s-9d146b24-7c07-4953-a320-224cc040b4ba {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-9d146b24-7c07-4953-a320-224cc040b4ba {
  display: none;
}
#s-9d146b24-7c07-4953-a320-224cc040b4ba, #wrap-s-9d146b24-7c07-4953-a320-224cc040b4ba { display: none !important; }}
#s-9d146b24-7c07-4953-a320-224cc040b4ba hr {
  border-top: 3px solid rgba(165, 0, 0, 1);
}

#s-0a469e02-a8e1-4e96-8815-d5c1de35881e {
  margin-top: 0px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}
@media (min-width: 1200px){#s-0a469e02-a8e1-4e96-8815-d5c1de35881e {
  margin-top: 100px;
margin-left: 2%;
margin-right: 2%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0a469e02-a8e1-4e96-8815-d5c1de35881e {
  margin-top: 100px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0a469e02-a8e1-4e96-8815-d5c1de35881e {
  margin-top: 60px;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-0a469e02-a8e1-4e96-8815-d5c1de35881e {
  margin-top: 60px;
margin-left: 0%;
margin-right: 0%;
max-width: 600px;
}
}
#s-0a469e02-a8e1-4e96-8815-d5c1de35881e {
  background-image: url();
}








#s-0a469e02-a8e1-4e96-8815-d5c1de35881e &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0a469e02-a8e1-4e96-8815-d5c1de35881e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ab745dad-71da-48fe-9875-eacee12721c5 {
  margin-left: 0%;
margin-right: 0%;
}
@media (max-width: 767px){#s-ab745dad-71da-48fe-9875-eacee12721c5 {
  margin-left: 3%;
margin-right: 3%;
}
}
@media (min-width: 0px) {
[id="s-ab745dad-71da-48fe-9875-eacee12721c5"] &gt; .shg-row &gt; .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-ab745dad-71da-48fe-9875-eacee12721c5"] &gt; .shg-row &gt; .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-ab745dad-71da-48fe-9875-eacee12721c5"] &gt; .shg-row &gt; .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ab745dad-71da-48fe-9875-eacee12721c5"] &gt; .shg-row &gt; .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-ab745dad-71da-48fe-9875-eacee12721c5"] &gt; .shg-row &gt; .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ab745dad-71da-48fe-9875-eacee12721c5"] &gt; .shg-row &gt; .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-ab745dad-71da-48fe-9875-eacee12721c5"] &gt; .shg-row &gt; .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

#s-066433a8-5c15-4471-84c2-12f7dd12705d {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-066433a8-5c15-4471-84c2-12f7dd12705d &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-066433a8-5c15-4471-84c2-12f7dd12705d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-657e5e67-2ceb-4e08-b9cd-26a0be196660 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-657e5e67-2ceb-4e08-b9cd-26a0be196660 {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-657e5e67-2ceb-4e08-b9cd-26a0be196660 .shogun-heading-component h3 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-657e5e67-2ceb-4e08-b9cd-26a0be196660 .shogun-heading-component h3 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}@media (max-width: 767px){#s-657e5e67-2ceb-4e08-b9cd-26a0be196660 .shogun-heading-component h3 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-7bbfb846-615a-44d2-8e07-7a30f8491bd4 {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-7bbfb846-615a-44d2-8e07-7a30f8491bd4 {
  display: none;
}
#s-7bbfb846-615a-44d2-8e07-7a30f8491bd4, #wrap-s-7bbfb846-615a-44d2-8e07-7a30f8491bd4 { display: none !important; }}
#s-3533f7c3-27bf-4377-b373-64e9bc7b87b8 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-3533f7c3-27bf-4377-b373-64e9bc7b87b8 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3533f7c3-27bf-4377-b373-64e9bc7b87b8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px){






#s-3533f7c3-27bf-4377-b373-64e9bc7b87b8 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3533f7c3-27bf-4377-b373-64e9bc7b87b8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}
#s-aeeef49f-072c-4f65-8a24-b5391cde1aef {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}
@media (max-width: 767px){#s-aeeef49f-072c-4f65-8a24-b5391cde1aef {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-aeeef49f-072c-4f65-8a24-b5391cde1aef .shogun-heading-component h6 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


#s-aeeef49f-072c-4f65-8a24-b5391cde1aef .shogun-heading-component h6 a {
  color: rgba(40, 40, 40, 1);
}


#s-f0990a56-e4d3-42f2-8845-b0127593e706 {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(242, 242, 242, 1);
}
@media (min-width: 1200px){#s-f0990a56-e4d3-42f2-8845-b0127593e706 {
  border-radius: 5px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f0990a56-e4d3-42f2-8845-b0127593e706 {
  border-radius: 5px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f0990a56-e4d3-42f2-8845-b0127593e706 {
  border-radius: 5px;
}
}@media (max-width: 767px){#s-f0990a56-e4d3-42f2-8845-b0127593e706 {
  border-style: solid;
margin-top: 10px;
margin-left: 0%;
margin-right: 0%;
border-left-width: 0px;
border-right-width: 0px;
border-color: rgba(227, 227, 227, 1);
}
}
@media (min-width: 0px) {
[id="s-f0990a56-e4d3-42f2-8845-b0127593e706"] &gt; .shg-row &gt; .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-f0990a56-e4d3-42f2-8845-b0127593e706"] &gt; .shg-row &gt; .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f0990a56-e4d3-42f2-8845-b0127593e706"] &gt; .shg-row &gt; .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f0990a56-e4d3-42f2-8845-b0127593e706"] &gt; .shg-row &gt; .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

#s-ba0c6953-e927-4e95-b3b0-dcf5aad6fe79 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-left: 5%;
padding-bottom: 20px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}
@media (max-width: 767px){#s-ba0c6953-e927-4e95-b3b0-dcf5aad6fe79 {
  border-style: solid;
}
}
#s-ba0c6953-e927-4e95-b3b0-dcf5aad6fe79 {
  background-image: url();
}








#s-ba0c6953-e927-4e95-b3b0-dcf5aad6fe79 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ba0c6953-e927-4e95-b3b0-dcf5aad6fe79.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-ebe7b26d-1a98-4eca-91e2-2db787b21bc1 {
  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: 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 &gt; .shogun-image {
    width: 100%;
  }
}

#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b {
  margin-left: auto;
margin-right: auto;
text-align: center;
}


.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b {
  max-width:  100%;
}

.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-image-zoom,
.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image,
.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-image-zoom,
.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b {
  max-width:  100%;
}

.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-image-zoom,
.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image,
.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-image-zoom,
.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b {
  max-width:  100%;
}

.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-image-zoom,
.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image,
.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-image-zoom,
.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b {
  max-width:  100%;
}

.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-image-zoom,
.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image,
.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-image-zoom,
.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b {
  max-width:  100%;
}

.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-image-zoom,
.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image,
.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b .shg-image-zoom,
.shg-c#s-4a3b946f-cad1-4cdb-a880-7966e1315f7b img.shogun-image {
  aspect-ratio: 1/1;
}



  .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;
  color: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  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-66d901d0-1063-489c-ab62-8ba884123113 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 2px;
text-align: left;
}

#s-66d901d0-1063-489c-ab62-8ba884123113 .shg-product-title-component h4 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  
}

#s-3038bd75-853d-42e7-aa1a-35fef0d14bc0 {
  text-align: left;
}

#s-3038bd75-853d-42e7-aa1a-35fef0d14bc0 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
}

#s-3038bd75-853d-42e7-aa1a-35fef0d14bc0 .shg-product-price {
  color: #000;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
  font-size: 20px;
}

#s-3038bd75-853d-42e7-aa1a-35fef0d14bc0 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

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

.shg-product-atc-wrapper {
  position: relative;
}

.shg-product-atc-btn {
  position: relative;
  z-index: 2;
  display: block;
  border: none;
  align-items: normal;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 200ms linear;
  opacity: 1;
}

.shg-product-atc-btn-opaque {
  opacity: 0;
}

.shg-product-atc-info-box {
  position: absolute;
  z-index: 1;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

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

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

#s-e4d8d578-1509-4051-9fa8-53e44e267151 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(165, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-e4d8d578-1509-4051-9fa8-53e44e267151:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e4d8d578-1509-4051-9fa8-53e44e267151:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-e4d8d578-1509-4051-9fa8-53e44e267151 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-e4d8d578-1509-4051-9fa8-53e44e267151.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e4d8d578-1509-4051-9fa8-53e44e267151.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-e4d8d578-1509-4051-9fa8-53e44e267151.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}



#s-4402aaa9-f123-4483-be38-417df35d1a28 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-left: 5%;
padding-bottom: 20px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}
@media (max-width: 767px){#s-4402aaa9-f123-4483-be38-417df35d1a28 {
  border-color: #000;
border-right-width: 0px;
border-style: none;
}
}
#s-4402aaa9-f123-4483-be38-417df35d1a28 {
  background-image: url();
}








#s-4402aaa9-f123-4483-be38-417df35d1a28 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4402aaa9-f123-4483-be38-417df35d1a28.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-08c900ff-bb57-4aac-b3c3-83696c2baa05 {
  margin-left: auto;
margin-right: auto;
}

#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}


.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 {
  max-width:  100%;
}

.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-image-zoom,
.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image,
.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-image-zoom,
.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 {
  max-width:  100%;
}

.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-image-zoom,
.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image,
.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-image-zoom,
.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 {
  max-width:  100%;
}

.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-image-zoom,
.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image,
.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-image-zoom,
.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 {
  max-width:  100%;
}

.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-image-zoom,
.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image,
.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-image-zoom,
.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 {
  max-width:  100%;
}

.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-image-zoom,
.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image,
.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 .shg-image-zoom,
.shg-c#s-b05c8500-9ee1-4a7d-a0d7-55dabcb1e8b2 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-3275d5d1-e661-49b4-936d-fede0b65723b {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 2px;
text-align: left;
}

#s-3275d5d1-e661-49b4-936d-fede0b65723b .shg-product-title-component h4 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  
}

#s-cd8dd6d9-c99d-4fbb-9ade-e0f16e001b75 {
  text-align: left;
}

#s-cd8dd6d9-c99d-4fbb-9ade-e0f16e001b75 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
}

#s-cd8dd6d9-c99d-4fbb-9ade-e0f16e001b75 .shg-product-price {
  color: #000;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
  font-size: 20px;
}

#s-cd8dd6d9-c99d-4fbb-9ade-e0f16e001b75 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-317f57a6-69ac-480b-b2ab-4316fc49e1b7 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(165, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-317f57a6-69ac-480b-b2ab-4316fc49e1b7:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-317f57a6-69ac-480b-b2ab-4316fc49e1b7:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-317f57a6-69ac-480b-b2ab-4316fc49e1b7 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-317f57a6-69ac-480b-b2ab-4316fc49e1b7.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-317f57a6-69ac-480b-b2ab-4316fc49e1b7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-317f57a6-69ac-480b-b2ab-4316fc49e1b7.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}



#s-5a2e03ff-de5c-405f-b938-3aa7a0e839ec {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-left: 5%;
padding-bottom: 20px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}
@media (max-width: 767px){#s-5a2e03ff-de5c-405f-b938-3aa7a0e839ec {
  border-style: solid;
margin-top: 0px;
border-top-width: 1px;
border-color: rgba(227, 227, 227, 1);
}
}
#s-5a2e03ff-de5c-405f-b938-3aa7a0e839ec {
  background-image: url();
}








#s-5a2e03ff-de5c-405f-b938-3aa7a0e839ec &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5a2e03ff-de5c-405f-b938-3aa7a0e839ec.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-67dcb431-888e-412e-9594-ffbfd978fb0d {
  margin-left: auto;
margin-right: auto;
}

#s-a6dbaf9a-0712-4843-932f-69addfccce63 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}


.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 {
  max-width:  100%;
}

.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-image-zoom,
.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image,
.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-image-zoom,
.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 {
  max-width:  100%;
}

.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-image-zoom,
.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image,
.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-image-zoom,
.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 {
  max-width:  100%;
}

.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-image-zoom,
.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image,
.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-image-zoom,
.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 {
  max-width:  100%;
}

.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-image-zoom,
.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image,
.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-image-zoom,
.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 {
  max-width:  100%;
}

.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-image-zoom,
.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image,
.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 .shg-image-zoom,
.shg-c#s-a6dbaf9a-0712-4843-932f-69addfccce63 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-d83054be-1a44-4dc8-8dbb-63fc7c5d7ca0 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 2px;
text-align: left;
}

#s-d83054be-1a44-4dc8-8dbb-63fc7c5d7ca0 .shg-product-title-component h4 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  
}

#s-ae2b1005-95f7-480a-9082-561f7811fa8a {
  text-align: left;
}

#s-ae2b1005-95f7-480a-9082-561f7811fa8a .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
}

#s-ae2b1005-95f7-480a-9082-561f7811fa8a .shg-product-price {
  color: #000;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
  font-size: 20px;
}

#s-ae2b1005-95f7-480a-9082-561f7811fa8a .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-30b4080c-8f37-482a-b6fd-3135b7ad5d51 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(165, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-30b4080c-8f37-482a-b6fd-3135b7ad5d51:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-30b4080c-8f37-482a-b6fd-3135b7ad5d51:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-30b4080c-8f37-482a-b6fd-3135b7ad5d51 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-30b4080c-8f37-482a-b6fd-3135b7ad5d51.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-30b4080c-8f37-482a-b6fd-3135b7ad5d51.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-30b4080c-8f37-482a-b6fd-3135b7ad5d51.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}



#s-3a62a771-1cb3-499c-9416-9c8eb57ba9ea {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-left: 5%;
padding-bottom: 20px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}
@media (max-width: 767px){#s-3a62a771-1cb3-499c-9416-9c8eb57ba9ea {
  border-style: solid;
margin-top: 0px;
border-top-width: 1px;
border-right-width: 0px;
border-color: rgba(227, 227, 227, 1);
}
}
#s-3a62a771-1cb3-499c-9416-9c8eb57ba9ea {
  background-image: url();
}








#s-3a62a771-1cb3-499c-9416-9c8eb57ba9ea &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3a62a771-1cb3-499c-9416-9c8eb57ba9ea.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-6b2f64c9-b8b7-4533-8bfc-7ccfd08d489b {
  margin-left: auto;
margin-right: auto;
}

#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}


.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 {
  max-width:  100%;
}

.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-image-zoom,
.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image,
.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-image-zoom,
.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 {
  max-width:  100%;
}

.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-image-zoom,
.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image,
.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-image-zoom,
.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 {
  max-width:  100%;
}

.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-image-zoom,
.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image,
.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-image-zoom,
.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 {
  max-width:  100%;
}

.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-image-zoom,
.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image,
.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-image-zoom,
.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 {
  max-width:  100%;
}

.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-image-zoom,
.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image,
.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 .shg-image-zoom,
.shg-c#s-6674d6b0-00dc-46ae-9bf2-dc8fb97d9542 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-bf08ba54-defc-402d-8237-7776fc953be6 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 2px;
text-align: left;
}

#s-bf08ba54-defc-402d-8237-7776fc953be6 .shg-product-title-component h4 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  
}

#s-f435706e-a3a7-47c1-aa9f-84b4754ab35c {
  text-align: left;
}

#s-f435706e-a3a7-47c1-aa9f-84b4754ab35c .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
}

#s-f435706e-a3a7-47c1-aa9f-84b4754ab35c .shg-product-price {
  color: #000;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
  font-size: 20px;
}

#s-f435706e-a3a7-47c1-aa9f-84b4754ab35c .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-15e17c89-c31c-46b8-bbe1-b7d1e39c54bf {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(165, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-15e17c89-c31c-46b8-bbe1-b7d1e39c54bf:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-15e17c89-c31c-46b8-bbe1-b7d1e39c54bf:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-15e17c89-c31c-46b8-bbe1-b7d1e39c54bf {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-15e17c89-c31c-46b8-bbe1-b7d1e39c54bf.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-15e17c89-c31c-46b8-bbe1-b7d1e39c54bf.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-15e17c89-c31c-46b8-bbe1-b7d1e39c54bf.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}



#s-e4d0219e-21c1-4f1b-88ff-0659cb2f4164 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-left: 5%;
padding-bottom: 20px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}
@media (max-width: 767px){#s-e4d0219e-21c1-4f1b-88ff-0659cb2f4164 {
  border-style: solid;
margin-top: 0px;
border-top-width: 1px;
border-color: rgba(227, 227, 227, 1);
}
}
#s-e4d0219e-21c1-4f1b-88ff-0659cb2f4164 {
  background-image: url();
}








#s-e4d0219e-21c1-4f1b-88ff-0659cb2f4164 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e4d0219e-21c1-4f1b-88ff-0659cb2f4164.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-3efb4fee-827e-468e-81ba-7b3d6c6b3b9c {
  margin-left: auto;
margin-right: auto;
}

#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd {
  margin-left: auto;
margin-right: auto;
text-align: center;
}


.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd {
  max-width:  100%;
}

.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-image-zoom,
.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image,
.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-image-zoom,
.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd {
  max-width:  100%;
}

.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-image-zoom,
.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image,
.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-image-zoom,
.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd {
  max-width:  100%;
}

.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-image-zoom,
.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image,
.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-image-zoom,
.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd {
  max-width:  100%;
}

.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-image-zoom,
.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image,
.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-image-zoom,
.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd {
  max-width:  100%;
}

.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-image-zoom,
.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image,
.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd .shg-image-zoom,
.shg-c#s-475f7406-ceb9-466b-aac5-56cda2b3e2dd img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-0b4082d9-7fd2-4aad-9057-7ce690492049 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 2px;
text-align: left;
}

#s-0b4082d9-7fd2-4aad-9057-7ce690492049 .shg-product-title-component h4 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  
}

#s-01cc5939-f881-4700-ab5d-63de2bb6b485 {
  text-align: left;
}

#s-01cc5939-f881-4700-ab5d-63de2bb6b485 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
}

#s-01cc5939-f881-4700-ab5d-63de2bb6b485 .shg-product-price {
  color: #000;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
  font-size: 20px;
}

#s-01cc5939-f881-4700-ab5d-63de2bb6b485 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-27eea9ce-31ac-43d1-ae52-544112581261 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(165, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-27eea9ce-31ac-43d1-ae52-544112581261:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-27eea9ce-31ac-43d1-ae52-544112581261:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-27eea9ce-31ac-43d1-ae52-544112581261 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-27eea9ce-31ac-43d1-ae52-544112581261.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-27eea9ce-31ac-43d1-ae52-544112581261.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-27eea9ce-31ac-43d1-ae52-544112581261.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}



#s-fdc34627-0714-401a-a8e3-daf1164febd8 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-left: 5%;
padding-bottom: 20px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}
@media (max-width: 767px){#s-fdc34627-0714-401a-a8e3-daf1164febd8 {
  border-style: solid;
margin-top: 0px;
border-top-width: 1px;
border-color: rgba(227, 227, 227, 1);
}
}
#s-fdc34627-0714-401a-a8e3-daf1164febd8 {
  background-image: url();
}








#s-fdc34627-0714-401a-a8e3-daf1164febd8 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fdc34627-0714-401a-a8e3-daf1164febd8.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-6c97e8a0-a68d-4776-9db3-b9c2c3f42ee5 {
  margin-left: auto;
margin-right: auto;
}

#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}


.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 {
  max-width:  100%;
}

.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-image-zoom,
.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image,
.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-image-zoom,
.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 {
  max-width:  100%;
}

.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-image-zoom,
.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image,
.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-image-zoom,
.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 {
  max-width:  100%;
}

.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-image-zoom,
.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image,
.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-image-zoom,
.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 {
  max-width:  100%;
}

.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-image-zoom,
.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image,
.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-image-zoom,
.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 {
  max-width:  100%;
}

.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-image-zoom,
.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image,
.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 .shg-image-zoom,
.shg-c#s-c1a76ca5-3839-429a-820c-5ab5280bdb53 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-0a01aa2e-6fb1-424e-9124-c8171a5e0264 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 2px;
text-align: left;
}

#s-0a01aa2e-6fb1-424e-9124-c8171a5e0264 .shg-product-title-component h4 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  
}

#s-34720f71-bd62-4247-aee5-c95583ac3c37 {
  text-align: left;
}

#s-34720f71-bd62-4247-aee5-c95583ac3c37 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
}

#s-34720f71-bd62-4247-aee5-c95583ac3c37 .shg-product-price {
  color: #000;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
  font-size: 20px;
}

#s-34720f71-bd62-4247-aee5-c95583ac3c37 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-7c3bdd21-5864-497e-b1c3-adb1cd545a40 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(165, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-7c3bdd21-5864-497e-b1c3-adb1cd545a40:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7c3bdd21-5864-497e-b1c3-adb1cd545a40:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-7c3bdd21-5864-497e-b1c3-adb1cd545a40 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-7c3bdd21-5864-497e-b1c3-adb1cd545a40.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7c3bdd21-5864-497e-b1c3-adb1cd545a40.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-7c3bdd21-5864-497e-b1c3-adb1cd545a40.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}



#s-3525baa2-587a-47f6-a3ee-b3dabc02b9e2 {
  margin-top: 60px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
min-height: 50px;
}
@media (min-width: 1200px){#s-3525baa2-587a-47f6-a3ee-b3dabc02b9e2 {
  margin-top: 100px;
margin-left: 2%;
margin-right: 2%;
}
}







#s-3525baa2-587a-47f6-a3ee-b3dabc02b9e2 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3525baa2-587a-47f6-a3ee-b3dabc02b9e2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7b1760f9-a087-4945-8d1c-7e2430f84209 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 768px) and (max-width: 991px){#s-7b1760f9-a087-4945-8d1c-7e2430f84209 {
  display: none;
}
#s-7b1760f9-a087-4945-8d1c-7e2430f84209, #wrap-s-7b1760f9-a087-4945-8d1c-7e2430f84209 { display: none !important; }}
@media (min-width: 0px) {
[id="s-7b1760f9-a087-4945-8d1c-7e2430f84209"] &gt; .shg-row &gt; .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7b1760f9-a087-4945-8d1c-7e2430f84209"] &gt; .shg-row &gt; .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7b1760f9-a087-4945-8d1c-7e2430f84209"] &gt; .shg-row &gt; .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7b1760f9-a087-4945-8d1c-7e2430f84209"] &gt; .shg-row &gt; .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-0a0f68a9-2c83-4ff6-ac57-dd316cc7c5cb {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-0a0f68a9-2c83-4ff6-ac57-dd316cc7c5cb &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0a0f68a9-2c83-4ff6-ac57-dd316cc7c5cb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
max-width: 3600px;
aspect-ratio: 3600/3200;
text-align: center;
}



.shg-image-margin-container-s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 .shg-image-content-wrapper {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }

    #s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 .shogun-image-link {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3600px;
  }



  img.s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image {
    
    
    
    max-height: 3600px;
  }


.s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 .shogun-image-content {
  
    align-items: center;
  
}

.s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 {
      --shg-aspect-ratio: calc(3600/3200); 
    }

    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container {
      position: relative;
    }

    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3600px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 {
  
  
  
  
}

#s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 .shg-image-content-wrapper {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }

    #s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 .shogun-image-link {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3600px;
  }



  img.s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image {
    
    
    
    max-height: 3600px;
  }


.s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 .shogun-image-content {
  
    align-items: center;
  
}

.s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 {
      --shg-aspect-ratio: calc(3600/3200); 
    }

    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container {
      position: relative;
    }

    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3600px;
    }
  }

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

.shg-image-margin-container-s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 {
  
  
  
  
}

#s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 .shg-image-content-wrapper {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }

    #s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 .shogun-image-link {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3600px;
  }



  img.s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image {
    
    
    
    max-height: 3600px;
  }


.s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 .shogun-image-content {
  
    align-items: center;
  
}

.s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 {
      --shg-aspect-ratio: calc(3600/3200); 
    }

    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container {
      position: relative;
    }

    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3600px;
    }
  }

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

.shg-image-margin-container-s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 {
  
  
  
  
}

#s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 .shg-image-content-wrapper {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }

    #s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 .shogun-image-link {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3600px;
  }



  img.s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image {
    
    
    
    max-height: 3600px;
  }


.s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 .shogun-image-content {
  
    align-items: center;
  
}

.s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 {
      --shg-aspect-ratio: calc(3600/3200); 
    }

    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container {
      position: relative;
    }

    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3600px;
    }
  }

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

.shg-image-margin-container-s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 {
  
  
  
  
}

#s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 .shg-image-content-wrapper {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }

    #s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 .shogun-image-link {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3600px;
  }



  img.s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image {
    
    
    
    max-height: 3600px;
  }


.s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 .shogun-image-content {
  
    align-items: center;
  
}

.s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 {
      --shg-aspect-ratio: calc(3600/3200); 
    }

    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container {
      position: relative;
    }

    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fc4a9450-b5f4-449f-b82e-d3a53fff6407 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3600px;
    }
  }

}
#s-aaf36f3d-ac57-4ad6-90c2-e9031a597455 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-aaf36f3d-ac57-4ad6-90c2-e9031a597455 {
  margin-top: 10px;
}
}







#s-aaf36f3d-ac57-4ad6-90c2-e9031a597455 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-aaf36f3d-ac57-4ad6-90c2-e9031a597455.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-12e24786-9c21-4296-93e4-d49bf3c3913d {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
max-width: 3600px;
aspect-ratio: 3600/3200;
text-align: center;
}



.shg-image-margin-container-s-12e24786-9c21-4296-93e4-d49bf3c3913d {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-12e24786-9c21-4296-93e4-d49bf3c3913d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-12e24786-9c21-4296-93e4-d49bf3c3913d .shg-image-content-wrapper {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }

    #s-12e24786-9c21-4296-93e4-d49bf3c3913d .shogun-image-link {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-12e24786-9c21-4296-93e4-d49bf3c3913d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-12e24786-9c21-4296-93e4-d49bf3c3913d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3600px;
  }



  img.s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image {
    
    
    
    max-height: 3600px;
  }


.s-12e24786-9c21-4296-93e4-d49bf3c3913d .shogun-image-content {
  
    align-items: center;
  
}

.s-12e24786-9c21-4296-93e4-d49bf3c3913d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-12e24786-9c21-4296-93e4-d49bf3c3913d {
      --shg-aspect-ratio: calc(3600/3200); 
    }

    .s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container {
      position: relative;
    }

    .s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-12e24786-9c21-4296-93e4-d49bf3c3913d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3600px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-12e24786-9c21-4296-93e4-d49bf3c3913d {
  
  
  
  
}

#s-12e24786-9c21-4296-93e4-d49bf3c3913d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-12e24786-9c21-4296-93e4-d49bf3c3913d .shg-image-content-wrapper {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }

    #s-12e24786-9c21-4296-93e4-d49bf3c3913d .shogun-image-link {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-12e24786-9c21-4296-93e4-d49bf3c3913d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-12e24786-9c21-4296-93e4-d49bf3c3913d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3600px;
  }



  img.s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image {
    
    
    
    max-height: 3600px;
  }


.s-12e24786-9c21-4296-93e4-d49bf3c3913d .shogun-image-content {
  
    align-items: center;
  
}

.s-12e24786-9c21-4296-93e4-d49bf3c3913d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-12e24786-9c21-4296-93e4-d49bf3c3913d {
      --shg-aspect-ratio: calc(3600/3200); 
    }

    .s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container {
      position: relative;
    }

    .s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-12e24786-9c21-4296-93e4-d49bf3c3913d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3600px;
    }
  }

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

.shg-image-margin-container-s-12e24786-9c21-4296-93e4-d49bf3c3913d {
  
  
  
  
}

#s-12e24786-9c21-4296-93e4-d49bf3c3913d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-12e24786-9c21-4296-93e4-d49bf3c3913d .shg-image-content-wrapper {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }

    #s-12e24786-9c21-4296-93e4-d49bf3c3913d .shogun-image-link {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-12e24786-9c21-4296-93e4-d49bf3c3913d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-12e24786-9c21-4296-93e4-d49bf3c3913d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3600px;
  }



  img.s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image {
    
    
    
    max-height: 3600px;
  }


.s-12e24786-9c21-4296-93e4-d49bf3c3913d .shogun-image-content {
  
    align-items: center;
  
}

.s-12e24786-9c21-4296-93e4-d49bf3c3913d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-12e24786-9c21-4296-93e4-d49bf3c3913d {
      --shg-aspect-ratio: calc(3600/3200); 
    }

    .s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container {
      position: relative;
    }

    .s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-12e24786-9c21-4296-93e4-d49bf3c3913d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3600px;
    }
  }

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

.shg-image-margin-container-s-12e24786-9c21-4296-93e4-d49bf3c3913d {
  
  
  
  
}

#s-12e24786-9c21-4296-93e4-d49bf3c3913d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-12e24786-9c21-4296-93e4-d49bf3c3913d .shg-image-content-wrapper {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }

    #s-12e24786-9c21-4296-93e4-d49bf3c3913d .shogun-image-link {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-12e24786-9c21-4296-93e4-d49bf3c3913d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-12e24786-9c21-4296-93e4-d49bf3c3913d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3600px;
  }



  img.s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image {
    
    
    
    max-height: 3600px;
  }


.s-12e24786-9c21-4296-93e4-d49bf3c3913d .shogun-image-content {
  
    align-items: center;
  
}

.s-12e24786-9c21-4296-93e4-d49bf3c3913d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-12e24786-9c21-4296-93e4-d49bf3c3913d {
      --shg-aspect-ratio: calc(3600/3200); 
    }

    .s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container {
      position: relative;
    }

    .s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-12e24786-9c21-4296-93e4-d49bf3c3913d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3600px;
    }
  }

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

.shg-image-margin-container-s-12e24786-9c21-4296-93e4-d49bf3c3913d {
  
  
  
  
}

#s-12e24786-9c21-4296-93e4-d49bf3c3913d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-12e24786-9c21-4296-93e4-d49bf3c3913d .shg-image-content-wrapper {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }

    #s-12e24786-9c21-4296-93e4-d49bf3c3913d .shogun-image-link {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-12e24786-9c21-4296-93e4-d49bf3c3913d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-12e24786-9c21-4296-93e4-d49bf3c3913d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3600px;
  }



  img.s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image {
    
    
    
    max-height: 3600px;
  }


.s-12e24786-9c21-4296-93e4-d49bf3c3913d .shogun-image-content {
  
    align-items: center;
  
}

.s-12e24786-9c21-4296-93e4-d49bf3c3913d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-12e24786-9c21-4296-93e4-d49bf3c3913d {
      --shg-aspect-ratio: calc(3600/3200); 
    }

    .s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container {
      position: relative;
    }

    .s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-12e24786-9c21-4296-93e4-d49bf3c3913d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-12e24786-9c21-4296-93e4-d49bf3c3913d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3600px;
    }
  }

}
#s-c9cfc3d6-7fee-4aa8-a8b9-e6568b0305aa {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-c9cfc3d6-7fee-4aa8-a8b9-e6568b0305aa {
  display: none;
}
#s-c9cfc3d6-7fee-4aa8-a8b9-e6568b0305aa, #wrap-s-c9cfc3d6-7fee-4aa8-a8b9-e6568b0305aa { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c9cfc3d6-7fee-4aa8-a8b9-e6568b0305aa {
  display: none;
}
#s-c9cfc3d6-7fee-4aa8-a8b9-e6568b0305aa, #wrap-s-c9cfc3d6-7fee-4aa8-a8b9-e6568b0305aa { display: none !important; }}@media (max-width: 767px){#s-c9cfc3d6-7fee-4aa8-a8b9-e6568b0305aa {
  display: none;
}
#s-c9cfc3d6-7fee-4aa8-a8b9-e6568b0305aa, #wrap-s-c9cfc3d6-7fee-4aa8-a8b9-e6568b0305aa { display: none !important; }}
@media (min-width: 0px) {
[id="s-c9cfc3d6-7fee-4aa8-a8b9-e6568b0305aa"] &gt; .shg-row &gt; .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c9cfc3d6-7fee-4aa8-a8b9-e6568b0305aa"] &gt; .shg-row &gt; .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-c9cfc3d6-7fee-4aa8-a8b9-e6568b0305aa"] &gt; .shg-row &gt; .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-c9cfc3d6-7fee-4aa8-a8b9-e6568b0305aa"] &gt; .shg-row &gt; .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-798ba6e6-8855-43ec-b242-29e3d4b775bf {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-798ba6e6-8855-43ec-b242-29e3d4b775bf &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-798ba6e6-8855-43ec-b242-29e3d4b775bf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dc426c18-1a67-4cb3-812e-65b382b9158c {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
max-width: 3600px;
aspect-ratio: 3600/3200;
text-align: center;
}



.shg-image-margin-container-s-dc426c18-1a67-4cb3-812e-65b382b9158c {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-dc426c18-1a67-4cb3-812e-65b382b9158c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dc426c18-1a67-4cb3-812e-65b382b9158c .shg-image-content-wrapper {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }

    #s-dc426c18-1a67-4cb3-812e-65b382b9158c .shogun-image-link {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dc426c18-1a67-4cb3-812e-65b382b9158c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dc426c18-1a67-4cb3-812e-65b382b9158c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3600px;
  }



  img.s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image {
    
    
    
    max-height: 3600px;
  }


.s-dc426c18-1a67-4cb3-812e-65b382b9158c .shogun-image-content {
  
    align-items: center;
  
}

.s-dc426c18-1a67-4cb3-812e-65b382b9158c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dc426c18-1a67-4cb3-812e-65b382b9158c {
      --shg-aspect-ratio: calc(3600/3200); 
    }

    .s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container {
      position: relative;
    }

    .s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dc426c18-1a67-4cb3-812e-65b382b9158c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3600px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-dc426c18-1a67-4cb3-812e-65b382b9158c {
  
  
  
  
}

#s-dc426c18-1a67-4cb3-812e-65b382b9158c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dc426c18-1a67-4cb3-812e-65b382b9158c .shg-image-content-wrapper {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }

    #s-dc426c18-1a67-4cb3-812e-65b382b9158c .shogun-image-link {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dc426c18-1a67-4cb3-812e-65b382b9158c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dc426c18-1a67-4cb3-812e-65b382b9158c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3600px;
  }



  img.s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image {
    
    
    
    max-height: 3600px;
  }


.s-dc426c18-1a67-4cb3-812e-65b382b9158c .shogun-image-content {
  
    align-items: center;
  
}

.s-dc426c18-1a67-4cb3-812e-65b382b9158c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dc426c18-1a67-4cb3-812e-65b382b9158c {
      --shg-aspect-ratio: calc(3600/3200); 
    }

    .s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container {
      position: relative;
    }

    .s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dc426c18-1a67-4cb3-812e-65b382b9158c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3600px;
    }
  }

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

.shg-image-margin-container-s-dc426c18-1a67-4cb3-812e-65b382b9158c {
  
  
  
  
}

#s-dc426c18-1a67-4cb3-812e-65b382b9158c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dc426c18-1a67-4cb3-812e-65b382b9158c .shg-image-content-wrapper {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }

    #s-dc426c18-1a67-4cb3-812e-65b382b9158c .shogun-image-link {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dc426c18-1a67-4cb3-812e-65b382b9158c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dc426c18-1a67-4cb3-812e-65b382b9158c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3600px;
  }



  img.s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image {
    
    
    
    max-height: 3600px;
  }


.s-dc426c18-1a67-4cb3-812e-65b382b9158c .shogun-image-content {
  
    align-items: center;
  
}

.s-dc426c18-1a67-4cb3-812e-65b382b9158c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dc426c18-1a67-4cb3-812e-65b382b9158c {
      --shg-aspect-ratio: calc(3600/3200); 
    }

    .s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container {
      position: relative;
    }

    .s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dc426c18-1a67-4cb3-812e-65b382b9158c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3600px;
    }
  }

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

.shg-image-margin-container-s-dc426c18-1a67-4cb3-812e-65b382b9158c {
  
  
  
  
}

#s-dc426c18-1a67-4cb3-812e-65b382b9158c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dc426c18-1a67-4cb3-812e-65b382b9158c .shg-image-content-wrapper {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }

    #s-dc426c18-1a67-4cb3-812e-65b382b9158c .shogun-image-link {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dc426c18-1a67-4cb3-812e-65b382b9158c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dc426c18-1a67-4cb3-812e-65b382b9158c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3600px;
  }



  img.s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image {
    
    
    
    max-height: 3600px;
  }


.s-dc426c18-1a67-4cb3-812e-65b382b9158c .shogun-image-content {
  
    align-items: center;
  
}

.s-dc426c18-1a67-4cb3-812e-65b382b9158c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dc426c18-1a67-4cb3-812e-65b382b9158c {
      --shg-aspect-ratio: calc(3600/3200); 
    }

    .s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container {
      position: relative;
    }

    .s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dc426c18-1a67-4cb3-812e-65b382b9158c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3600px;
    }
  }

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

.shg-image-margin-container-s-dc426c18-1a67-4cb3-812e-65b382b9158c {
  
  
  
  
}

#s-dc426c18-1a67-4cb3-812e-65b382b9158c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dc426c18-1a67-4cb3-812e-65b382b9158c .shg-image-content-wrapper {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }

    #s-dc426c18-1a67-4cb3-812e-65b382b9158c .shogun-image-link {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dc426c18-1a67-4cb3-812e-65b382b9158c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dc426c18-1a67-4cb3-812e-65b382b9158c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3600px;
  }



  img.s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image {
    
    
    
    max-height: 3600px;
  }


.s-dc426c18-1a67-4cb3-812e-65b382b9158c .shogun-image-content {
  
    align-items: center;
  
}

.s-dc426c18-1a67-4cb3-812e-65b382b9158c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dc426c18-1a67-4cb3-812e-65b382b9158c {
      --shg-aspect-ratio: calc(3600/3200); 
    }

    .s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container {
      position: relative;
    }

    .s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dc426c18-1a67-4cb3-812e-65b382b9158c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dc426c18-1a67-4cb3-812e-65b382b9158c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3600px;
    }
  }

}
#s-aa071de8-bf2b-42c5-a659-eaad9df5e203 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-aa071de8-bf2b-42c5-a659-eaad9df5e203 {
  margin-top: 10px;
}
}







#s-aa071de8-bf2b-42c5-a659-eaad9df5e203 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-aa071de8-bf2b-42c5-a659-eaad9df5e203.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
max-width: 3600px;
aspect-ratio: 3600/3200;
text-align: center;
}



.shg-image-margin-container-s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d .shg-image-content-wrapper {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }

    #s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d .shogun-image-link {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3600px;
  }



  img.s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image {
    
    
    
    max-height: 3600px;
  }


.s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d .shogun-image-content {
  
    align-items: center;
  
}

.s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d {
      --shg-aspect-ratio: calc(3600/3200); 
    }

    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container {
      position: relative;
    }

    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3600px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d {
  
  
  
  
}

#s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d .shg-image-content-wrapper {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }

    #s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d .shogun-image-link {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3600px;
  }



  img.s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image {
    
    
    
    max-height: 3600px;
  }


.s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d .shogun-image-content {
  
    align-items: center;
  
}

.s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d {
      --shg-aspect-ratio: calc(3600/3200); 
    }

    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container {
      position: relative;
    }

    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3600px;
    }
  }

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

.shg-image-margin-container-s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d {
  
  
  
  
}

#s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d .shg-image-content-wrapper {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }

    #s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d .shogun-image-link {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3600px;
  }



  img.s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image {
    
    
    
    max-height: 3600px;
  }


.s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d .shogun-image-content {
  
    align-items: center;
  
}

.s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d {
      --shg-aspect-ratio: calc(3600/3200); 
    }

    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container {
      position: relative;
    }

    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3600px;
    }
  }

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

.shg-image-margin-container-s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d {
  
  
  
  
}

#s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d .shg-image-content-wrapper {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }

    #s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d .shogun-image-link {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3600px;
  }



  img.s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image {
    
    
    
    max-height: 3600px;
  }


.s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d .shogun-image-content {
  
    align-items: center;
  
}

.s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d {
      --shg-aspect-ratio: calc(3600/3200); 
    }

    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container {
      position: relative;
    }

    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3600px;
    }
  }

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

.shg-image-margin-container-s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d {
  
  
  
  
}

#s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d .shg-image-content-wrapper {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }

    #s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d .shogun-image-link {
      aspect-ratio: 3600/3200;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3600px;
  }



  img.s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image {
    
    
    
    max-height: 3600px;
  }


.s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d .shogun-image-content {
  
    align-items: center;
  
}

.s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d {
      --shg-aspect-ratio: calc(3600/3200); 
    }

    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container {
      position: relative;
    }

    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2a66a6bf-9f4d-4d5a-ad14-0cdb4bd00e9d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3600px;
    }
  }

}
#s-a1335905-d74c-422b-80b5-35d17098bcba {
  margin-top: 60px;
margin-left: 2%;
margin-right: 2%;
min-height: 50px;
}
@media (min-width: 1200px){#s-a1335905-d74c-422b-80b5-35d17098bcba {
  margin-top: 100px;
margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-a1335905-d74c-422b-80b5-35d17098bcba {
  margin-left: 0%;
margin-right: 0%;
}
}







#s-a1335905-d74c-422b-80b5-35d17098bcba &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a1335905-d74c-422b-80b5-35d17098bcba.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-45a2bc77-5508-42b7-83b3-9ea31ffdc289 {
  margin-left: 0%;
margin-right: 0%;
}
@media (max-width: 767px){#s-45a2bc77-5508-42b7-83b3-9ea31ffdc289 {
  margin-left: 3%;
margin-right: 3%;
}
}
@media (min-width: 0px) {
[id="s-45a2bc77-5508-42b7-83b3-9ea31ffdc289"] &gt; .shg-row &gt; .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-45a2bc77-5508-42b7-83b3-9ea31ffdc289"] &gt; .shg-row &gt; .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-45a2bc77-5508-42b7-83b3-9ea31ffdc289"] &gt; .shg-row &gt; .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-45a2bc77-5508-42b7-83b3-9ea31ffdc289"] &gt; .shg-row &gt; .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-45a2bc77-5508-42b7-83b3-9ea31ffdc289"] &gt; .shg-row &gt; .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-45a2bc77-5508-42b7-83b3-9ea31ffdc289"] &gt; .shg-row &gt; .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-45a2bc77-5508-42b7-83b3-9ea31ffdc289"] &gt; .shg-row &gt; .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

#s-ca42a28a-4739-47db-883e-95bd80c030a8 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-ca42a28a-4739-47db-883e-95bd80c030a8 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ca42a28a-4739-47db-883e-95bd80c030a8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9ac585cb-1176-44af-a594-46155bc0a838 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-9ac585cb-1176-44af-a594-46155bc0a838 {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-9ac585cb-1176-44af-a594-46155bc0a838 .shogun-heading-component h3 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-9ac585cb-1176-44af-a594-46155bc0a838 .shogun-heading-component h3 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}@media (max-width: 767px){#s-9ac585cb-1176-44af-a594-46155bc0a838 .shogun-heading-component h3 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}
#s-d6fc37a4-43bb-45a7-8aed-b1a54b7711d7 {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-d6fc37a4-43bb-45a7-8aed-b1a54b7711d7 {
  display: none;
}
#s-d6fc37a4-43bb-45a7-8aed-b1a54b7711d7, #wrap-s-d6fc37a4-43bb-45a7-8aed-b1a54b7711d7 { display: none !important; }}
#s-13cecf6b-5335-4ab2-b47b-52d5fc67b361 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-13cecf6b-5335-4ab2-b47b-52d5fc67b361 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-13cecf6b-5335-4ab2-b47b-52d5fc67b361.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px){






#s-13cecf6b-5335-4ab2-b47b-52d5fc67b361 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-13cecf6b-5335-4ab2-b47b-52d5fc67b361.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}
#s-5823d415-d25d-4041-a8ae-30e2e70bad61 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}
@media (max-width: 767px){#s-5823d415-d25d-4041-a8ae-30e2e70bad61 {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-5823d415-d25d-4041-a8ae-30e2e70bad61 .shogun-heading-component h6 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


#s-5823d415-d25d-4041-a8ae-30e2e70bad61 .shogun-heading-component h6 a {
  color: rgba(40, 40, 40, 1);
}


#s-6aa50bb0-b9ed-431b-bc9b-497df01f0f1a {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-6aa50bb0-b9ed-431b-bc9b-497df01f0f1a"] &gt; .shg-row &gt; .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6aa50bb0-b9ed-431b-bc9b-497df01f0f1a"] &gt; .shg-row &gt; .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6aa50bb0-b9ed-431b-bc9b-497df01f0f1a"] &gt; .shg-row &gt; .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6aa50bb0-b9ed-431b-bc9b-497df01f0f1a"] &gt; .shg-row &gt; .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-edf3d29a-af34-48b7-b013-4782a93b2f24 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-edf3d29a-af34-48b7-b013-4782a93b2f24 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-edf3d29a-af34-48b7-b013-4782a93b2f24.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 1200px){






#s-edf3d29a-af34-48b7-b013-4782a93b2f24 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-edf3d29a-af34-48b7-b013-4782a93b2f24.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
}@media (min-width: 992px) and (max-width: 1199px){






#s-edf3d29a-af34-48b7-b013-4782a93b2f24 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-edf3d29a-af34-48b7-b013-4782a93b2f24.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
}@media (min-width: 768px) and (max-width: 991px){






#s-edf3d29a-af34-48b7-b013-4782a93b2f24 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-edf3d29a-af34-48b7-b013-4782a93b2f24.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
}
#s-b7824d66-d028-46e6-a384-497c624ba813 {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
max-width: 1200px;
text-align: center;
opacity: 1;
}
@media (max-width: 767px){#s-b7824d66-d028-46e6-a384-497c624ba813 {
  border-radius: 0px;
}
}


.shg-image-margin-container-s-b7824d66-d028-46e6-a384-497c624ba813 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-b7824d66-d028-46e6-a384-497c624ba813 {
  margin: 0 !important;
}





  img.s-b7824d66-d028-46e6-a384-497c624ba813.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-b7824d66-d028-46e6-a384-497c624ba813 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-b7824d66-d028-46e6-a384-497c624ba813.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7824d66-d028-46e6-a384-497c624ba813.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7824d66-d028-46e6-a384-497c624ba813.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-b7824d66-d028-46e6-a384-497c624ba813 {
  
  
  
  
}

#s-b7824d66-d028-46e6-a384-497c624ba813 {
  margin: 0 !important;
}





  img.s-b7824d66-d028-46e6-a384-497c624ba813.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-b7824d66-d028-46e6-a384-497c624ba813 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-b7824d66-d028-46e6-a384-497c624ba813.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7824d66-d028-46e6-a384-497c624ba813.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7824d66-d028-46e6-a384-497c624ba813.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-b7824d66-d028-46e6-a384-497c624ba813 {
  
  
  
  
}

#s-b7824d66-d028-46e6-a384-497c624ba813 {
  margin: 0 !important;
}





  img.s-b7824d66-d028-46e6-a384-497c624ba813.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-b7824d66-d028-46e6-a384-497c624ba813 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-b7824d66-d028-46e6-a384-497c624ba813.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7824d66-d028-46e6-a384-497c624ba813.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7824d66-d028-46e6-a384-497c624ba813.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-b7824d66-d028-46e6-a384-497c624ba813 {
  
  
  
  
}

#s-b7824d66-d028-46e6-a384-497c624ba813 {
  margin: 0 !important;
}





  img.s-b7824d66-d028-46e6-a384-497c624ba813.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-b7824d66-d028-46e6-a384-497c624ba813 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-b7824d66-d028-46e6-a384-497c624ba813.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7824d66-d028-46e6-a384-497c624ba813.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7824d66-d028-46e6-a384-497c624ba813.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-b7824d66-d028-46e6-a384-497c624ba813 {
  
  
  
  
}

#s-b7824d66-d028-46e6-a384-497c624ba813 {
  margin: 0 !important;
}





  img.s-b7824d66-d028-46e6-a384-497c624ba813.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-b7824d66-d028-46e6-a384-497c624ba813 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-b7824d66-d028-46e6-a384-497c624ba813.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b7824d66-d028-46e6-a384-497c624ba813.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b7824d66-d028-46e6-a384-497c624ba813.shogun-image {
  box-sizing: border-box;
}




}
#s-5f2b69c4-2740-4951-b8c2-6d86c5eeb23c {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-5f2b69c4-2740-4951-b8c2-6d86c5eeb23c &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5f2b69c4-2740-4951-b8c2-6d86c5eeb23c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-42f3be51-68e0-4c49-97ab-db453bee29a1 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(242, 242, 242, 1);
}
@media (min-width: 1200px){#s-42f3be51-68e0-4c49-97ab-db453bee29a1 {
  border-radius: 5px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-42f3be51-68e0-4c49-97ab-db453bee29a1 {
  border-radius: 5px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-42f3be51-68e0-4c49-97ab-db453bee29a1 {
  border-radius: 5px;
}
}@media (max-width: 767px){#s-42f3be51-68e0-4c49-97ab-db453bee29a1 {
  border-style: solid;
margin-left: 0%;
margin-right: 0%;
border-left-width: 0px;
border-right-width: 0px;
border-color: rgba(227, 227, 227, 1);
}
}
@media (min-width: 0px) {
[id="s-42f3be51-68e0-4c49-97ab-db453bee29a1"] &gt; .shg-row &gt; .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-42f3be51-68e0-4c49-97ab-db453bee29a1"] &gt; .shg-row &gt; .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-42f3be51-68e0-4c49-97ab-db453bee29a1"] &gt; .shg-row &gt; .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-42f3be51-68e0-4c49-97ab-db453bee29a1"] &gt; .shg-row &gt; .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-243eb047-dd21-4db8-893d-e9eca3fcb816 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-left: 5%;
padding-bottom: 20px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-243eb047-dd21-4db8-893d-e9eca3fcb816 {
  background-image: url();
}








#s-243eb047-dd21-4db8-893d-e9eca3fcb816 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-243eb047-dd21-4db8-893d-e9eca3fcb816.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-83895c39-a2a1-4de0-ad0f-621f6791b378 {
  margin-left: auto;
margin-right: auto;
}

#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}


.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 {
  max-width:  100%;
}

.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-image-zoom,
.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image,
.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-image-zoom,
.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 {
  max-width:  100%;
}

.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-image-zoom,
.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image,
.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-image-zoom,
.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 {
  max-width:  100%;
}

.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-image-zoom,
.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image,
.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-image-zoom,
.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 {
  max-width:  100%;
}

.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-image-zoom,
.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image,
.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-image-zoom,
.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 {
  max-width:  100%;
}

.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-image-zoom,
.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image,
.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 .shg-image-zoom,
.shg-c#s-fbf158ec-a47c-4f24-b68f-7b0d5b2a75f8 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-7e246cb1-1439-4db8-aefd-7feb8e748467 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 2px;
text-align: left;
}

#s-7e246cb1-1439-4db8-aefd-7feb8e748467 .shg-product-title-component h4 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  
}

#s-e2533a27-7d10-4ecd-98d5-8e5298b7ac45 {
  text-align: left;
}

#s-e2533a27-7d10-4ecd-98d5-8e5298b7ac45 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
}

#s-e2533a27-7d10-4ecd-98d5-8e5298b7ac45 .shg-product-price {
  color: #000;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
  font-size: 20px;
}

#s-e2533a27-7d10-4ecd-98d5-8e5298b7ac45 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-74982c0d-0486-4219-adf2-26da466683b0 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(165, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-74982c0d-0486-4219-adf2-26da466683b0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-74982c0d-0486-4219-adf2-26da466683b0:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-74982c0d-0486-4219-adf2-26da466683b0 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-74982c0d-0486-4219-adf2-26da466683b0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-74982c0d-0486-4219-adf2-26da466683b0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-74982c0d-0486-4219-adf2-26da466683b0.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}



#s-ef31b9c6-7da8-4eab-a629-7bbec7c4636e {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-left: 5%;
padding-bottom: 20px;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-ef31b9c6-7da8-4eab-a629-7bbec7c4636e {
  background-image: url();
}








#s-ef31b9c6-7da8-4eab-a629-7bbec7c4636e &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ef31b9c6-7da8-4eab-a629-7bbec7c4636e.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-fbe3d56a-ffae-436f-b31f-2003c0e9b6c5 {
  margin-left: auto;
margin-right: auto;
}

#s-d5851c4f-7416-4c21-9e29-43ffb121a14f {
  margin-left: auto;
margin-right: auto;
text-align: center;
}


.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f {
  max-width:  100%;
}

.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-image-zoom,
.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image,
.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-image-zoom,
.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f {
  max-width:  100%;
}

.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-image-zoom,
.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image,
.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-image-zoom,
.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f {
  max-width:  100%;
}

.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-image-zoom,
.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image,
.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-image-zoom,
.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f {
  max-width:  100%;
}

.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-image-zoom,
.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image,
.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-image-zoom,
.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f {
  max-width:  100%;
}

.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-image-zoom,
.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image,
.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f .shg-image-zoom,
.shg-c#s-d5851c4f-7416-4c21-9e29-43ffb121a14f img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-892b1d70-b0fe-4c2b-b832-985eebd6b7e3 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 2px;
text-align: left;
}

#s-892b1d70-b0fe-4c2b-b832-985eebd6b7e3 .shg-product-title-component h4 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  
}

#s-80551333-428d-4490-9734-ffee19cd8170 {
  text-align: left;
}

#s-80551333-428d-4490-9734-ffee19cd8170 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
}

#s-80551333-428d-4490-9734-ffee19cd8170 .shg-product-price {
  color: #000;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
  font-size: 20px;
}

#s-80551333-428d-4490-9734-ffee19cd8170 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-fa9b4fad-955d-4a0c-bf26-19159ad781fb {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(165, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-fa9b4fad-955d-4a0c-bf26-19159ad781fb:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-fa9b4fad-955d-4a0c-bf26-19159ad781fb:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-fa9b4fad-955d-4a0c-bf26-19159ad781fb {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-fa9b4fad-955d-4a0c-bf26-19159ad781fb.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-fa9b4fad-955d-4a0c-bf26-19159ad781fb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-fa9b4fad-955d-4a0c-bf26-19159ad781fb.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}



#s-dba4c3da-673e-42bf-a93f-13b0c7cf5326 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-left: 5%;
padding-bottom: 20px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-dba4c3da-673e-42bf-a93f-13b0c7cf5326 {
  background-image: url();
}








#s-dba4c3da-673e-42bf-a93f-13b0c7cf5326 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-dba4c3da-673e-42bf-a93f-13b0c7cf5326.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-a53cd3bd-60fc-4300-9bc1-426420c50fff {
  margin-left: auto;
margin-right: auto;
}

#s-81797927-2fd8-47a6-8771-ba598ea7d3dc {
  margin-left: auto;
margin-right: auto;
text-align: center;
}


.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc {
  max-width:  100%;
}

.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-image-zoom,
.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image,
.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-image-zoom,
.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc {
  max-width:  100%;
}

.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-image-zoom,
.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image,
.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-image-zoom,
.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc {
  max-width:  100%;
}

.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-image-zoom,
.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image,
.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-image-zoom,
.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc {
  max-width:  100%;
}

.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-image-zoom,
.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image,
.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-image-zoom,
.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc {
  max-width:  100%;
}

.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-image-zoom,
.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image,
.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc .shg-image-zoom,
.shg-c#s-81797927-2fd8-47a6-8771-ba598ea7d3dc img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-92e39d62-47b8-40c4-a889-ad0a716d083e {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 2px;
text-align: left;
}

#s-92e39d62-47b8-40c4-a889-ad0a716d083e .shg-product-title-component h4 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  
}

#s-87edbbc8-a011-438d-855c-730b6b676ee2 {
  text-align: left;
}

#s-87edbbc8-a011-438d-855c-730b6b676ee2 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
}

#s-87edbbc8-a011-438d-855c-730b6b676ee2 .shg-product-price {
  color: #000;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
  font-size: 20px;
}

#s-87edbbc8-a011-438d-855c-730b6b676ee2 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-94798c2a-4ef3-43d3-be32-72e20b4c5fec {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(165, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-94798c2a-4ef3-43d3-be32-72e20b4c5fec:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-94798c2a-4ef3-43d3-be32-72e20b4c5fec:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-94798c2a-4ef3-43d3-be32-72e20b4c5fec {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-94798c2a-4ef3-43d3-be32-72e20b4c5fec.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-94798c2a-4ef3-43d3-be32-72e20b4c5fec.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-94798c2a-4ef3-43d3-be32-72e20b4c5fec.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}



#s-788a9920-a86b-4846-9624-909f7d7c67ba {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-left: 5%;
padding-bottom: 20px;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-788a9920-a86b-4846-9624-909f7d7c67ba {
  background-image: url();
}








#s-788a9920-a86b-4846-9624-909f7d7c67ba &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-788a9920-a86b-4846-9624-909f7d7c67ba.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-83e9f4ae-0fbe-48d5-9e55-0108b964b2af {
  margin-left: auto;
margin-right: auto;
}

#s-8ec979b2-5e63-4314-8218-f3ca256b336f {
  margin-left: auto;
margin-right: auto;
text-align: center;
}


.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f {
  max-width:  100%;
}

.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-image-zoom,
.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image,
.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-image-zoom,
.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f {
  max-width:  100%;
}

.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-image-zoom,
.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image,
.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-image-zoom,
.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f {
  max-width:  100%;
}

.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-image-zoom,
.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image,
.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-image-zoom,
.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f {
  max-width:  100%;
}

.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-image-zoom,
.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image,
.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-image-zoom,
.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f {
  max-width:  100%;
}

.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-image-zoom,
.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image {
  max-width: 150px !important;
  
}

.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image,
.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f .shg-image-zoom,
.shg-c#s-8ec979b2-5e63-4314-8218-f3ca256b336f img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-d6843d61-a876-426b-8659-cb3a240cfcc9 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 2px;
text-align: left;
}

#s-d6843d61-a876-426b-8659-cb3a240cfcc9 .shg-product-title-component h4 {
  color: rgba(40, 40, 40, 1);
  font-weight:  900 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  
}

#s-f978cb15-8eb6-409a-83ad-63783aa4e9d6 {
  text-align: left;
}

#s-f978cb15-8eb6-409a-83ad-63783aa4e9d6 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
}

#s-f978cb15-8eb6-409a-83ad-63783aa4e9d6 .shg-product-price {
  color: #000;
  font-weight:  normal ;
  font-family: Montserrat;
  font-style:  normal ;
  font-size: 20px;
}

#s-f978cb15-8eb6-409a-83ad-63783aa4e9d6 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-0a5a95ba-2053-4ca5-93cf-2f84c0954ea6 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(165, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-0a5a95ba-2053-4ca5-93cf-2f84c0954ea6:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-0a5a95ba-2053-4ca5-93cf-2f84c0954ea6:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-0a5a95ba-2053-4ca5-93cf-2f84c0954ea6 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0a5a95ba-2053-4ca5-93cf-2f84c0954ea6.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0a5a95ba-2053-4ca5-93cf-2f84c0954ea6.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}

#s-0a5a95ba-2053-4ca5-93cf-2f84c0954ea6.shg-btn.shg-product-atc-error {
  font-weight: 800;
  font-family: Montserrat;
  
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}



#s-f445d35b-3c84-4e74-bd96-4489c9d722f8 {
  margin-top: 100px;
margin-left: 10%;
margin-right: 10%;
padding-top: 3%;
padding-left: 3%;
padding-bottom: 3%;
padding-right: 3%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: none;
border-radius: 5px;
min-height: 50px;
background-color: rgba(40, 40, 40, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-f445d35b-3c84-4e74-bd96-4489c9d722f8 {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-f445d35b-3c84-4e74-bd96-4489c9d722f8 {
  margin-left: 0%;
margin-right: 0%;
border-radius: 0px;
max-width: 600px;
background-color: rgba(40, 40, 40, 1);
}
}







#s-f445d35b-3c84-4e74-bd96-4489c9d722f8 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f445d35b-3c84-4e74-bd96-4489c9d722f8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9202b91f-e402-4392-b066-03ecda6ddbed {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-9202b91f-e402-4392-b066-03ecda6ddbed"] &gt; .shg-row &gt; .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9202b91f-e402-4392-b066-03ecda6ddbed"] &gt; .shg-row &gt; .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-9202b91f-e402-4392-b066-03ecda6ddbed"] &gt; .shg-row &gt; .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9202b91f-e402-4392-b066-03ecda6ddbed"] &gt; .shg-row &gt; .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-9202b91f-e402-4392-b066-03ecda6ddbed"] &gt; .shg-row &gt; .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9202b91f-e402-4392-b066-03ecda6ddbed"] &gt; .shg-row &gt; .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-9202b91f-e402-4392-b066-03ecda6ddbed"] &gt; .shg-row &gt; .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-9202b91f-e402-4392-b066-03ecda6ddbed"] &gt; .shg-row {
    flex-flow: column-reverse;
  }
}

#s-278540d4-cc7d-42d9-a9cb-21fc468bffdf {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-278540d4-cc7d-42d9-a9cb-21fc468bffdf {
  max-width: 600px;
}
}







#s-278540d4-cc7d-42d9-a9cb-21fc468bffdf &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-278540d4-cc7d-42d9-a9cb-21fc468bffdf.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c {
  margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: none;
border-radius: 5px;
max-width: 1536px;
aspect-ratio: 1/1;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c {
  margin-top: 15px;
}
}@media (max-width: 767px){#s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c {
  margin-top: 20px;
max-width: 600px;
}
}


.shg-image-margin-container-s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1536px;
  }



  img.s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image {
    
    
    
    max-height: 1536px;
  }


.s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c .shogun-image-content {
  
    align-items: center;
  
}

.s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container {
      position: relative;
    }

    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1536px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c {
  
  
  
  
}

#s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1536px;
  }



  img.s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image {
    
    
    
    max-height: 1536px;
  }


.s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c .shogun-image-content {
  
    align-items: center;
  
}

.s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container {
      position: relative;
    }

    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1536px;
    }
  }

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

.shg-image-margin-container-s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c {
  
  
  
  
}

#s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1536px;
  }



  img.s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image {
    
    
    
    max-height: 1536px;
  }


.s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c .shogun-image-content {
  
    align-items: center;
  
}

.s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container {
      position: relative;
    }

    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1536px;
    }
  }

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

.shg-image-margin-container-s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c {
  
  
  margin-top: 15px;
  
}

#s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1536px;
  }



  img.s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image {
    
    
    
    max-height: 1536px;
  }


.s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c .shogun-image-content {
  
    align-items: center;
  
}

.s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container {
      position: relative;
    }

    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1536px;
    }
  }

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

.shg-image-margin-container-s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c {
  
  
  margin-top: 20px;
  
}

#s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1536px;
  }



  img.s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image {
    
    
    
    max-height: 1536px;
  }


.s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c .shogun-image-content {
  
    align-items: center;
  
}

.s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container {
      position: relative;
    }

    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88a03433-a6db-4ad8-b2d7-1b449bddcd5c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1536px;
    }
  }

}
#s-b379496a-7ca4-4232-99ca-8f23b160e755 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-b379496a-7ca4-4232-99ca-8f23b160e755 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b379496a-7ca4-4232-99ca-8f23b160e755.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8f707570-1c62-40ca-a179-43510882bd20 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-8f707570-1c62-40ca-a179-43510882bd20 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


@media (min-width: 1200px){#s-8f707570-1c62-40ca-a179-43510882bd20 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-8f707570-1c62-40ca-a179-43510882bd20 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}


}
#s-c4e870b8-f9f3-4166-87bc-46221d482e93 {
  margin-left: auto;
margin-right: auto;
}

#s-da2f0db5-36fb-4880-b4d2-80575b3df040 {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
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: none;
border-radius: 5px;
background-color: rgba(165, 0, 0, 1);
text-align: left;
text-decoration: none;
}
#s-da2f0db5-36fb-4880-b4d2-80575b3df040:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-da2f0db5-36fb-4880-b4d2-80575b3df040:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-da2f0db5-36fb-4880-b4d2-80575b3df040 {
  text-align: center;
}
}

  #s-da2f0db5-36fb-4880-b4d2-80575b3df040-root {
    text-align: left;
  }


#s-da2f0db5-36fb-4880-b4d2-80575b3df040.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-da2f0db5-36fb-4880-b4d2-80575b3df040-root {
    text-align: left;
  }


#s-da2f0db5-36fb-4880-b4d2-80575b3df040.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-da2f0db5-36fb-4880-b4d2-80575b3df040-root {
    text-align: left;
  }


#s-da2f0db5-36fb-4880-b4d2-80575b3df040.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-da2f0db5-36fb-4880-b4d2-80575b3df040-root {
    text-align: left;
  }


#s-da2f0db5-36fb-4880-b4d2-80575b3df040.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-da2f0db5-36fb-4880-b4d2-80575b3df040-root {
    text-align: center;
  }


#s-da2f0db5-36fb-4880-b4d2-80575b3df040.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  
  font-family: Montserrat;
  display:  block ;
}
}
#s-02187278-a2c8-4bf0-afae-d48a3a8027dc {
  margin-top: 60px;
margin-left: 10%;
margin-right: 10%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-02187278-a2c8-4bf0-afae-d48a3a8027dc {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-02187278-a2c8-4bf0-afae-d48a3a8027dc {
  margin-left: 2%;
margin-right: 2%;
max-width: 600px;
}
}
#s-02187278-a2c8-4bf0-afae-d48a3a8027dc {
  background-image: url();
}








#s-02187278-a2c8-4bf0-afae-d48a3a8027dc &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-02187278-a2c8-4bf0-afae-d48a3a8027dc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e3fcf98a-bbb4-4a00-b1bf-919cbee993ce {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-e3fcf98a-bbb4-4a00-b1bf-919cbee993ce {
  padding-left: 3%;
padding-right: 3%;
}
}
#s-e3fcf98a-bbb4-4a00-b1bf-919cbee993ce .shogun-heading-component h3 {
  color: ;
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-e3fcf98a-bbb4-4a00-b1bf-919cbee993ce .shogun-heading-component h3 {
  color: ;
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}@media (max-width: 767px){#s-e3fcf98a-bbb4-4a00-b1bf-919cbee993ce .shogun-heading-component h3 {
  color: ;
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}
#s-57ab9180-5ee3-4f9d-b2d9-903ccea5dc79 {
  margin-left: auto;
margin-right: auto;
max-width: 75%;
}
@media (max-width: 767px){#s-57ab9180-5ee3-4f9d-b2d9-903ccea5dc79 {
  max-width: 100%;
}
}
#s-3bca34b4-70e9-4430-9933-6d6c7388b206 {
  margin-top: 30px;
margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-3bca34b4-70e9-4430-9933-6d6c7388b206 {
  margin-top: 10px;
margin-left: 0%;
margin-right: 0%;
}
}
@media (min-width: 0px) {
[id="s-3bca34b4-70e9-4430-9933-6d6c7388b206"] &gt; .shg-row &gt; .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3bca34b4-70e9-4430-9933-6d6c7388b206"] &gt; .shg-row &gt; .shg-c-sm-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-3bca34b4-70e9-4430-9933-6d6c7388b206"] &gt; .shg-row &gt; .shg-c-md-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-3bca34b4-70e9-4430-9933-6d6c7388b206"] &gt; .shg-row &gt; .shg-c-lg-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

#s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e {
  margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: none;
border-radius: 5px;
max-width: 1200px;
aspect-ratio: 1200/800;
text-align: center;
}
@media (max-width: 767px){#s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e {
  margin-top: 10px;
}
}


.shg-image-margin-container-s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e .shg-image-content-wrapper {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }

    #s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e .shogun-image-link {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1200px;
  }



  img.s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e .shogun-image-content {
  
    align-items: center;
  
}

.s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e {
      --shg-aspect-ratio: calc(1200/800); 
    }

    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container {
      position: relative;
    }

    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e {
  
  
  
  
}

#s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e .shg-image-content-wrapper {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }

    #s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e .shogun-image-link {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1200px;
  }



  img.s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e .shogun-image-content {
  
    align-items: center;
  
}

.s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e {
      --shg-aspect-ratio: calc(1200/800); 
    }

    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container {
      position: relative;
    }

    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

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

.shg-image-margin-container-s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e {
  
  
  
  
}

#s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e .shg-image-content-wrapper {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }

    #s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e .shogun-image-link {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1200px;
  }



  img.s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e .shogun-image-content {
  
    align-items: center;
  
}

.s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e {
      --shg-aspect-ratio: calc(1200/800); 
    }

    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container {
      position: relative;
    }

    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

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

.shg-image-margin-container-s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e {
  
  
  
  
}

#s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e .shg-image-content-wrapper {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }

    #s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e .shogun-image-link {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1200px;
  }



  img.s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e .shogun-image-content {
  
    align-items: center;
  
}

.s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e {
      --shg-aspect-ratio: calc(1200/800); 
    }

    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container {
      position: relative;
    }

    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

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

.shg-image-margin-container-s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e {
  
  
  margin-top: 10px;
  
}

#s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e .shg-image-content-wrapper {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }

    #s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e .shogun-image-link {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1200px;
  }



  img.s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e .shogun-image-content {
  
    align-items: center;
  
}

.s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e {
      --shg-aspect-ratio: calc(1200/800); 
    }

    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container {
      position: relative;
    }

    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-59a6c1cb-740b-4bbc-b1e6-87c1bb4d7f7e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}
#s-de20c90b-9d25-42b6-9fce-e792fbc86520 {
  margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: none;
border-radius: 5px;
max-width: 3750px;
aspect-ratio: 3750/2500;
text-align: center;
}
@media (max-width: 767px){#s-de20c90b-9d25-42b6-9fce-e792fbc86520 {
  margin-top: 10px;
}
}


.shg-image-margin-container-s-de20c90b-9d25-42b6-9fce-e792fbc86520 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-de20c90b-9d25-42b6-9fce-e792fbc86520 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-de20c90b-9d25-42b6-9fce-e792fbc86520 .shg-image-content-wrapper {
      aspect-ratio: 3750/2500;
      min-width: 100%;
      height: auto;
    }

    #s-de20c90b-9d25-42b6-9fce-e792fbc86520 .shogun-image-link {
      aspect-ratio: 3750/2500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-de20c90b-9d25-42b6-9fce-e792fbc86520 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-de20c90b-9d25-42b6-9fce-e792fbc86520 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3750px;
  }



  img.s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image {
    
    
    
    max-height: 3750px;
  }


.s-de20c90b-9d25-42b6-9fce-e792fbc86520 .shogun-image-content {
  
    align-items: center;
  
}

.s-de20c90b-9d25-42b6-9fce-e792fbc86520.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de20c90b-9d25-42b6-9fce-e792fbc86520 {
      --shg-aspect-ratio: calc(3750/2500); 
    }

    .s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container {
      position: relative;
    }

    .s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de20c90b-9d25-42b6-9fce-e792fbc86520 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3750px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-de20c90b-9d25-42b6-9fce-e792fbc86520 {
  
  
  
  
}

#s-de20c90b-9d25-42b6-9fce-e792fbc86520 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-de20c90b-9d25-42b6-9fce-e792fbc86520 .shg-image-content-wrapper {
      aspect-ratio: 3750/2500;
      min-width: 100%;
      height: auto;
    }

    #s-de20c90b-9d25-42b6-9fce-e792fbc86520 .shogun-image-link {
      aspect-ratio: 3750/2500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-de20c90b-9d25-42b6-9fce-e792fbc86520 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-de20c90b-9d25-42b6-9fce-e792fbc86520 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3750px;
  }



  img.s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image {
    
    
    
    max-height: 3750px;
  }


.s-de20c90b-9d25-42b6-9fce-e792fbc86520 .shogun-image-content {
  
    align-items: center;
  
}

.s-de20c90b-9d25-42b6-9fce-e792fbc86520.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de20c90b-9d25-42b6-9fce-e792fbc86520 {
      --shg-aspect-ratio: calc(3750/2500); 
    }

    .s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container {
      position: relative;
    }

    .s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de20c90b-9d25-42b6-9fce-e792fbc86520 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3750px;
    }
  }

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

.shg-image-margin-container-s-de20c90b-9d25-42b6-9fce-e792fbc86520 {
  
  
  
  
}

#s-de20c90b-9d25-42b6-9fce-e792fbc86520 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-de20c90b-9d25-42b6-9fce-e792fbc86520 .shg-image-content-wrapper {
      aspect-ratio: 3750/2500;
      min-width: 100%;
      height: auto;
    }

    #s-de20c90b-9d25-42b6-9fce-e792fbc86520 .shogun-image-link {
      aspect-ratio: 3750/2500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-de20c90b-9d25-42b6-9fce-e792fbc86520 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-de20c90b-9d25-42b6-9fce-e792fbc86520 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3750px;
  }



  img.s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image {
    
    
    
    max-height: 3750px;
  }


.s-de20c90b-9d25-42b6-9fce-e792fbc86520 .shogun-image-content {
  
    align-items: center;
  
}

.s-de20c90b-9d25-42b6-9fce-e792fbc86520.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de20c90b-9d25-42b6-9fce-e792fbc86520 {
      --shg-aspect-ratio: calc(3750/2500); 
    }

    .s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container {
      position: relative;
    }

    .s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de20c90b-9d25-42b6-9fce-e792fbc86520 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3750px;
    }
  }

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

.shg-image-margin-container-s-de20c90b-9d25-42b6-9fce-e792fbc86520 {
  
  
  
  
}

#s-de20c90b-9d25-42b6-9fce-e792fbc86520 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-de20c90b-9d25-42b6-9fce-e792fbc86520 .shg-image-content-wrapper {
      aspect-ratio: 3750/2500;
      min-width: 100%;
      height: auto;
    }

    #s-de20c90b-9d25-42b6-9fce-e792fbc86520 .shogun-image-link {
      aspect-ratio: 3750/2500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-de20c90b-9d25-42b6-9fce-e792fbc86520 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-de20c90b-9d25-42b6-9fce-e792fbc86520 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3750px;
  }



  img.s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image {
    
    
    
    max-height: 3750px;
  }


.s-de20c90b-9d25-42b6-9fce-e792fbc86520 .shogun-image-content {
  
    align-items: center;
  
}

.s-de20c90b-9d25-42b6-9fce-e792fbc86520.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de20c90b-9d25-42b6-9fce-e792fbc86520 {
      --shg-aspect-ratio: calc(3750/2500); 
    }

    .s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container {
      position: relative;
    }

    .s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de20c90b-9d25-42b6-9fce-e792fbc86520 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3750px;
    }
  }

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

.shg-image-margin-container-s-de20c90b-9d25-42b6-9fce-e792fbc86520 {
  
  
  margin-top: 10px;
  
}

#s-de20c90b-9d25-42b6-9fce-e792fbc86520 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-de20c90b-9d25-42b6-9fce-e792fbc86520 .shg-image-content-wrapper {
      aspect-ratio: 3750/2500;
      min-width: 100%;
      height: auto;
    }

    #s-de20c90b-9d25-42b6-9fce-e792fbc86520 .shogun-image-link {
      aspect-ratio: 3750/2500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-de20c90b-9d25-42b6-9fce-e792fbc86520 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-de20c90b-9d25-42b6-9fce-e792fbc86520 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 3750px;
  }



  img.s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image {
    
    
    
    max-height: 3750px;
  }


.s-de20c90b-9d25-42b6-9fce-e792fbc86520 .shogun-image-content {
  
    align-items: center;
  
}

.s-de20c90b-9d25-42b6-9fce-e792fbc86520.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de20c90b-9d25-42b6-9fce-e792fbc86520 {
      --shg-aspect-ratio: calc(3750/2500); 
    }

    .s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container {
      position: relative;
    }

    .s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de20c90b-9d25-42b6-9fce-e792fbc86520.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de20c90b-9d25-42b6-9fce-e792fbc86520 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 3750px;
    }
  }

}
#s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 {
  margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: none;
border-radius: 5px;
max-width: 1200px;
aspect-ratio: 1200/800;
text-align: center;
}
@media (max-width: 767px){#s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 {
  margin-top: 10px;
}
}


.shg-image-margin-container-s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 .shg-image-content-wrapper {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }

    #s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 .shogun-image-link {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1200px;
  }



  img.s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 .shogun-image-content {
  
    align-items: center;
  
}

.s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 {
      --shg-aspect-ratio: calc(1200/800); 
    }

    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container {
      position: relative;
    }

    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 {
  
  
  
  
}

#s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 .shg-image-content-wrapper {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }

    #s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 .shogun-image-link {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1200px;
  }



  img.s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 .shogun-image-content {
  
    align-items: center;
  
}

.s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 {
      --shg-aspect-ratio: calc(1200/800); 
    }

    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container {
      position: relative;
    }

    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

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

.shg-image-margin-container-s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 {
  
  
  
  
}

#s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 .shg-image-content-wrapper {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }

    #s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 .shogun-image-link {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1200px;
  }



  img.s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 .shogun-image-content {
  
    align-items: center;
  
}

.s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 {
      --shg-aspect-ratio: calc(1200/800); 
    }

    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container {
      position: relative;
    }

    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

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

.shg-image-margin-container-s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 {
  
  
  
  
}

#s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 .shg-image-content-wrapper {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }

    #s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 .shogun-image-link {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1200px;
  }



  img.s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 .shogun-image-content {
  
    align-items: center;
  
}

.s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 {
      --shg-aspect-ratio: calc(1200/800); 
    }

    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container {
      position: relative;
    }

    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

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

.shg-image-margin-container-s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 {
  
  
  margin-top: 10px;
  
}

#s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 .shg-image-content-wrapper {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }

    #s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 .shogun-image-link {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1200px;
  }



  img.s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 .shogun-image-content {
  
    align-items: center;
  
}

.s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 {
      --shg-aspect-ratio: calc(1200/800); 
    }

    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container {
      position: relative;
    }

    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bf02d3b8-d2f6-42b3-94fb-9fa764eedfc1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1200px;
    }
  }

}
#s-646a9822-8894-4587-b517-66a7d8aaa25e {
  margin-top: 60px;
margin-left: 10%;
margin-bottom: 30px;
margin-right: 10%;
padding-top: 3%;
padding-left: 10%;
padding-bottom: 3%;
padding-right: 10%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(227, 227, 227, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-646a9822-8894-4587-b517-66a7d8aaa25e {
  margin-left: 2%;
margin-right: 2%;
}
}@media (max-width: 767px){#s-646a9822-8894-4587-b517-66a7d8aaa25e {
  margin-left: 2%;
margin-right: 2%;
padding-top: 5%;
padding-bottom: 5%;
}
}







#s-646a9822-8894-4587-b517-66a7d8aaa25e &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-646a9822-8894-4587-b517-66a7d8aaa25e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ecc2a7da-78f6-47f8-a415-8313463df392 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-ecc2a7da-78f6-47f8-a415-8313463df392"] &gt; .shg-row &gt; .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ecc2a7da-78f6-47f8-a415-8313463df392"] &gt; .shg-row &gt; .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-ecc2a7da-78f6-47f8-a415-8313463df392"] &gt; .shg-row &gt; .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-ecc2a7da-78f6-47f8-a415-8313463df392"] &gt; .shg-row &gt; .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-626d124b-8d9e-455c-846c-f980cb7ad497 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-626d124b-8d9e-455c-846c-f980cb7ad497 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-626d124b-8d9e-455c-846c-f980cb7ad497.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9d02a5a3-a431-4911-8be0-a4b4c44a00de {
  margin-left: auto;
margin-right: auto;
max-width: 45px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-9d02a5a3-a431-4911-8be0-a4b4c44a00de {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-9d02a5a3-a431-4911-8be0-a4b4c44a00de {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9d02a5a3-a431-4911-8be0-a4b4c44a00de .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9d02a5a3-a431-4911-8be0-a4b4c44a00de .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9d02a5a3-a431-4911-8be0-a4b4c44a00de .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9d02a5a3-a431-4911-8be0-a4b4c44a00de img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 45px;
  }



  img.s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image {
    
    
    
    max-height: 45px;
  }


.s-9d02a5a3-a431-4911-8be0-a4b4c44a00de .shogun-image-content {
  
    align-items: center;
  
}

.s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container {
      position: relative;
    }

    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de 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-9d02a5a3-a431-4911-8be0-a4b4c44a00de {
  
  
  
  
}

#s-9d02a5a3-a431-4911-8be0-a4b4c44a00de {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9d02a5a3-a431-4911-8be0-a4b4c44a00de .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9d02a5a3-a431-4911-8be0-a4b4c44a00de .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9d02a5a3-a431-4911-8be0-a4b4c44a00de .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9d02a5a3-a431-4911-8be0-a4b4c44a00de img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 45px;
  }



  img.s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image {
    
    
    
    max-height: 45px;
  }


.s-9d02a5a3-a431-4911-8be0-a4b4c44a00de .shogun-image-content {
  
    align-items: center;
  
}

.s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container {
      position: relative;
    }

    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de 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-9d02a5a3-a431-4911-8be0-a4b4c44a00de {
  
  
  
  
}

#s-9d02a5a3-a431-4911-8be0-a4b4c44a00de {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9d02a5a3-a431-4911-8be0-a4b4c44a00de .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9d02a5a3-a431-4911-8be0-a4b4c44a00de .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9d02a5a3-a431-4911-8be0-a4b4c44a00de .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9d02a5a3-a431-4911-8be0-a4b4c44a00de img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 45px;
  }



  img.s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image {
    
    
    
    max-height: 45px;
  }


.s-9d02a5a3-a431-4911-8be0-a4b4c44a00de .shogun-image-content {
  
    align-items: center;
  
}

.s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container {
      position: relative;
    }

    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de 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-9d02a5a3-a431-4911-8be0-a4b4c44a00de {
  
  
  
  
}

#s-9d02a5a3-a431-4911-8be0-a4b4c44a00de {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9d02a5a3-a431-4911-8be0-a4b4c44a00de .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9d02a5a3-a431-4911-8be0-a4b4c44a00de .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9d02a5a3-a431-4911-8be0-a4b4c44a00de .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9d02a5a3-a431-4911-8be0-a4b4c44a00de img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 45px;
  }



  img.s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image {
    
    
    
    max-height: 45px;
  }


.s-9d02a5a3-a431-4911-8be0-a4b4c44a00de .shogun-image-content {
  
    align-items: center;
  
}

.s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container {
      position: relative;
    }

    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de 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-9d02a5a3-a431-4911-8be0-a4b4c44a00de {
  
  
  
  
}

#s-9d02a5a3-a431-4911-8be0-a4b4c44a00de {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9d02a5a3-a431-4911-8be0-a4b4c44a00de .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9d02a5a3-a431-4911-8be0-a4b4c44a00de .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9d02a5a3-a431-4911-8be0-a4b4c44a00de .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9d02a5a3-a431-4911-8be0-a4b4c44a00de img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 45px;
  }



  img.s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image {
    
    
    
    max-height: 45px;
  }


.s-9d02a5a3-a431-4911-8be0-a4b4c44a00de .shogun-image-content {
  
    align-items: center;
  
}

.s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container {
      position: relative;
    }

    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d02a5a3-a431-4911-8be0-a4b4c44a00de img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 45px;
    }
  }

}
#s-2fe537b3-7d0b-42b0-84c1-66ba54e4f94a {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-2fe537b3-7d0b-42b0-84c1-66ba54e4f94a .shogun-heading-component h6 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-7a1243d2-0804-45ab-bae2-73e115900ffd {
  margin-left: auto;
margin-right: auto;
}

#s-931e54ad-aa13-4996-af6d-eef1cb5a6138 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-931e54ad-aa13-4996-af6d-eef1cb5a6138 &gt; .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-931e54ad-aa13-4996-af6d-eef1cb5a6138.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3973d46a-bd88-4ed1-8859-f124295ad931 {
  margin-left: auto;
margin-right: auto;
max-width: 45px;
aspect-ratio: 1784/1920;
text-align: center;
}
@media (max-width: 767px){#s-3973d46a-bd88-4ed1-8859-f124295ad931 {
  margin-top: 20px;
}
}


.shg-image-margin-container-s-3973d46a-bd88-4ed1-8859-f124295ad931 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-3973d46a-bd88-4ed1-8859-f124295ad931 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3973d46a-bd88-4ed1-8859-f124295ad931 .shg-image-content-wrapper {
      aspect-ratio: 1784/1920;
      min-width: 100%;
      height: auto;
    }

    #s-3973d46a-bd88-4ed1-8859-f124295ad931 .shogun-image-link {
      aspect-ratio: 1784/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3973d46a-bd88-4ed1-8859-f124295ad931 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3973d46a-bd88-4ed1-8859-f124295ad931 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 45px;
  }



  img.s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image {
    
    
    
    max-height: 45px;
  }


.s-3973d46a-bd88-4ed1-8859-f124295ad931 .shogun-image-content {
  
    align-items: center;
  
}

.s-3973d46a-bd88-4ed1-8859-f124295ad931.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3973d46a-bd88-4ed1-8859-f124295ad931 {
      --shg-aspect-ratio: calc(1784/1920); 
    }

    .s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container {
      position: relative;
    }

    .s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3973d46a-bd88-4ed1-8859-f124295ad931 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-3973d46a-bd88-4ed1-8859-f124295ad931 {
  
  
  
  
}

#s-3973d46a-bd88-4ed1-8859-f124295ad931 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3973d46a-bd88-4ed1-8859-f124295ad931 .shg-image-content-wrapper {
      aspect-ratio: 1784/1920;
      min-width: 100%;
      height: auto;
    }

    #s-3973d46a-bd88-4ed1-8859-f124295ad931 .shogun-image-link {
      aspect-ratio: 1784/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3973d46a-bd88-4ed1-8859-f124295ad931 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3973d46a-bd88-4ed1-8859-f124295ad931 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 45px;
  }



  img.s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image {
    
    
    
    max-height: 45px;
  }


.s-3973d46a-bd88-4ed1-8859-f124295ad931 .shogun-image-content {
  
    align-items: center;
  
}

.s-3973d46a-bd88-4ed1-8859-f124295ad931.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3973d46a-bd88-4ed1-8859-f124295ad931 {
      --shg-aspect-ratio: calc(1784/1920); 
    }

    .s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container {
      position: relative;
    }

    .s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3973d46a-bd88-4ed1-8859-f124295ad931 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-3973d46a-bd88-4ed1-8859-f124295ad931 {
  
  
  
  
}

#s-3973d46a-bd88-4ed1-8859-f124295ad931 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3973d46a-bd88-4ed1-8859-f124295ad931 .shg-image-content-wrapper {
      aspect-ratio: 1784/1920;
      min-width: 100%;
      height: auto;
    }

    #s-3973d46a-bd88-4ed1-8859-f124295ad931 .shogun-image-link {
      aspect-ratio: 1784/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3973d46a-bd88-4ed1-8859-f124295ad931 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3973d46a-bd88-4ed1-8859-f124295ad931 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 45px;
  }



  img.s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image {
    
    
    
    max-height: 45px;
  }


.s-3973d46a-bd88-4ed1-8859-f124295ad931 .shogun-image-content {
  
    align-items: center;
  
}

.s-3973d46a-bd88-4ed1-8859-f124295ad931.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3973d46a-bd88-4ed1-8859-f124295ad931 {
      --shg-aspect-ratio: calc(1784/1920); 
    }

    .s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container {
      position: relative;
    }

    .s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3973d46a-bd88-4ed1-8859-f124295ad931 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-3973d46a-bd88-4ed1-8859-f124295ad931 {
  
  
  
  
}

#s-3973d46a-bd88-4ed1-8859-f124295ad931 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3973d46a-bd88-4ed1-8859-f124295ad931 .shg-image-content-wrapper {
      aspect-ratio: 1784/1920;
      min-width: 100%;
      height: auto;
    }

    #s-3973d46a-bd88-4ed1-8859-f124295ad931 .shogun-image-link {
      aspect-ratio: 1784/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3973d46a-bd88-4ed1-8859-f124295ad931 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3973d46a-bd88-4ed1-8859-f124295ad931 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 45px;
  }



  img.s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image {
    
    
    
    max-height: 45px;
  }


.s-3973d46a-bd88-4ed1-8859-f124295ad931 .shogun-image-content {
  
    align-items: center;
  
}

.s-3973d46a-bd88-4ed1-8859-f124295ad931.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3973d46a-bd88-4ed1-8859-f124295ad931 {
      --shg-aspect-ratio: calc(1784/1920); 
    }

    .s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container {
      position: relative;
    }

    .s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3973d46a-bd88-4ed1-8859-f124295ad931 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-3973d46a-bd88-4ed1-8859-f124295ad931 {
  
  
  margin-top: 20px;
  
}

#s-3973d46a-bd88-4ed1-8859-f124295ad931 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3973d46a-bd88-4ed1-8859-f124295ad931 .shg-image-content-wrapper {
      aspect-ratio: 1784/1920;
      min-width: 100%;
      height: auto;
    }

    #s-3973d46a-bd88-4ed1-8859-f124295ad931 .shogun-image-link {
      aspect-ratio: 1784/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3973d46a-bd88-4ed1-8859-f124295ad931 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3973d46a-bd88-4ed1-8859-f124295ad931 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 45px;
  }



  img.s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image {
    
    
    
    max-height: 45px;
  }


.s-3973d46a-bd88-4ed1-8859-f124295ad931 .shogun-image-content {
  
    align-items: center;
  
}

.s-3973d46a-bd88-4ed1-8859-f124295ad931.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3973d46a-bd88-4ed1-8859-f124295ad931 {
      --shg-aspect-ratio: calc(1784/1920); 
    }

    .s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container {
      position: relative;
    }

    .s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3973d46a-bd88-4ed1-8859-f124295ad931.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3973d46a-bd88-4ed1-8859-f124295ad931 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 45px;
    }
  }

}
#s-2b310661-6a8a-40a6-b53f-ad05acc75a16 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-2b310661-6a8a-40a6-b53f-ad05acc75a16 .shogun-heading-component h6 {
  color: ;
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-bf5a0d5b-255a-4897-9d6a-601a91f62b3e {
  margin-left: auto;
margin-right: auto;
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}

.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty:not(.shopify-section *):not([id^="wistia"]) {
  display: inline-block;
}

/* User Content Animations --&gt; */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}

/* &lt;-- User Content Animations */

.shogun-form-error-msg,
.shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animate__animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-duration:var(--animate-duration);animation-duration:var(--animate-duration);-webkit-animation-fill-mode:both;animation-fill-mode:both}.animate__animated.animate__infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animate__animated.animate__repeat-1{-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-iteration-count:var(--animate-repeat);animation-iteration-count:var(--animate-repeat)}.animate__animated.animate__repeat-2{-webkit-animation-iteration-count:2;animation-iteration-count:2;-webkit-animation-iteration-count:calc(var(--animate-repeat)*2);animation-iteration-count:calc(var(--animate-repeat)*2)}.animate__animated.animate__repeat-3{-webkit-animation-iteration-count:3;animation-iteration-count:3;-webkit-animation-iteration-count:calc(var(--animate-repeat)*3);animation-iteration-count:calc(var(--animate-repeat)*3)}.animate__animated.animate__delay-1s{-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-delay:var(--animate-delay);animation-delay:var(--animate-delay)}.animate__animated.animate__delay-2s{-webkit-animation-delay:2s;animation-delay:2s;-webkit-animation-delay:calc(var(--animate-delay)*2);animation-delay:calc(var(--animate-delay)*2)}.animate__animated.animate__delay-3s{-webkit-animation-delay:3s;animation-delay:3s;-webkit-animation-delay:calc(var(--animate-delay)*3);animation-delay:calc(var(--animate-delay)*3)}.animate__animated.animate__delay-4s{-webkit-animation-delay:4s;animation-delay:4s;-webkit-animation-delay:calc(var(--animate-delay)*4);animation-delay:calc(var(--animate-delay)*4)}.animate__animated.animate__delay-5s{-webkit-animation-delay:5s;animation-delay:5s;-webkit-animation-delay:calc(var(--animate-delay)*5);animation-delay:calc(var(--animate-delay)*5)}.animate__animated.animate__faster{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-duration:calc(var(--animate-duration)/2);animation-duration:calc(var(--animate-duration)/2)}.animate__animated.animate__fast{-webkit-animation-duration:.8s;animation-duration:.8s;-webkit-animation-duration:calc(var(--animate-duration)*0.8);animation-duration:calc(var(--animate-duration)*0.8)}.animate__animated.animate__slow{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2)}.animate__animated.animate__slower{-webkit-animation-duration:3s;animation-duration:3s;-webkit-animation-duration:calc(var(--animate-duration)*3);animation-duration:calc(var(--animate-duration)*3)}@media (prefers-reduced-motion:reduce),print{.animate__animated{-webkit-animation-duration:1ms!important;animation-duration:1ms!important;-webkit-transition-duration:1ms!important;transition-duration:1ms!important;-webkit-animation-iteration-count:1!important;animation-iteration-count:1!important}.animate__animated[class*=Out]{opacity:0}}@-webkit-keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0) scaleY(.95);transform:translateZ(0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}@keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0) scaleY(.95);transform:translateZ(0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}.animate__bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.animate__flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__pulse{-webkit-animation-name:pulse;animation-name:pulse;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shakeX{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shakeX{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.animate__shakeX{-webkit-animation-name:shakeX;animation-name:shakeX}@-webkit-keyframes shakeY{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}@keyframes shakeY{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}.animate__shakeY{-webkit-animation-name:shakeY;animation-name:shakeY}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.animate__headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}.animate__swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}@keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.animate__jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}.animate__heartBeat{-webkit-animation-name:heartBeat;animation-name:heartBeat;-webkit-animation-duration:1.3s;animation-duration:1.3s;-webkit-animation-duration:calc(var(--animate-duration)*1.3);animation-duration:calc(var(--animate-duration)*1.3);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(.7);transform:translateY(-1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(.7);transform:translateY(-1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInDown{-webkit-animation-name:backInDown;animation-name:backInDown}@-webkit-keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInLeft{-webkit-animation-name:backInLeft;animation-name:backInLeft}@-webkit-keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInRight{-webkit-animation-name:backInRight;animation-name:backInRight}@-webkit-keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(.7);transform:translateY(1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(.7);transform:translateY(1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInUp{-webkit-animation-name:backInUp;animation-name:backInUp}@-webkit-keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(700px) scale(.7);transform:translateY(700px) scale(.7);opacity:.7}}@keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(700px) scale(.7);transform:translateY(700px) scale(.7);opacity:.7}}.animate__backOutDown{-webkit-animation-name:backOutDown;animation-name:backOutDown}@-webkit-keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}}@keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}}.animate__backOutLeft{-webkit-animation-name:backOutLeft;animation-name:backOutLeft}@-webkit-keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}}@keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}}.animate__backOutRight{-webkit-animation-name:backOutRight;animation-name:backOutRight}@-webkit-keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(-700px) scale(.7);transform:translateY(-700px) scale(.7);opacity:.7}}@keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(-700px) scale(.7);transform:translateY(-700px) scale(.7);opacity:.7}}.animate__backOutUp{-webkit-animation-name:backOutUp;animation-name:backOutUp}@-webkit-keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__bounceIn{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.animate__bounceOut{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(.985);transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(.985);transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}.animate__bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}.animate__bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}.animate__bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(.985);transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(.9);transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(.985);transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(.9);transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}.animate__bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate__fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeInTopLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInTopLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInTopLeft{-webkit-animation-name:fadeInTopLeft;animation-name:fadeInTopLeft}@-webkit-keyframes fadeInTopRight{0%{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInTopRight{0%{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInTopRight{-webkit-animation-name:fadeInTopRight;animation-name:fadeInTopRight}@-webkit-keyframes fadeInBottomLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInBottomLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInBottomLeft{-webkit-animation-name:fadeInBottomLeft;animation-name:fadeInBottomLeft}@-webkit-keyframes fadeInBottomRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInBottomRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInBottomRight{-webkit-animation-name:fadeInBottomRight;animation-name:fadeInBottomRight}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.animate__fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.animate__fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.animate__fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.animate__fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.animate__fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.animate__fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.animate__fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.animate__fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.animate__fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes fadeOutTopLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}@keyframes fadeOutTopLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}.animate__fadeOutTopLeft{-webkit-animation-name:fadeOutTopLeft;animation-name:fadeOutTopLeft}@-webkit-keyframes fadeOutTopRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}@keyframes fadeOutTopRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}.animate__fadeOutTopRight{-webkit-animation-name:fadeOutTopRight;animation-name:fadeOutTopRight}@-webkit-keyframes fadeOutBottomRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}@keyframes fadeOutBottomRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}.animate__fadeOutBottomRight{-webkit-animation-name:fadeOutBottomRight;animation-name:fadeOutBottomRight}@-webkit-keyframes fadeOutBottomLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}@keyframes fadeOutBottomLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}.animate__fadeOutBottomLeft{-webkit-animation-name:fadeOutBottomLeft;animation-name:fadeOutBottomLeft}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animate__animated.animate__flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.animate__flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.animate__flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}.animate__flipOutX{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}.animate__flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedInRight{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedInRight{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__lightSpeedInRight{-webkit-animation-name:lightSpeedInRight;animation-name:lightSpeedInRight;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedInLeft{0%{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedInLeft{0%{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__lightSpeedInLeft{-webkit-animation-name:lightSpeedInLeft;animation-name:lightSpeedInLeft;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.animate__lightSpeedOutRight{-webkit-animation-name:lightSpeedOutRight;animation-name:lightSpeedOutRight;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes lightSpeedOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}@keyframes lightSpeedOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}.animate__lightSpeedOutLeft{-webkit-animation-name:lightSpeedOutLeft;animation-name:lightSpeedOutLeft;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOut{0%{opacity:1}to{-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{opacity:1}to{-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.animate__rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateOutDownLeft{0%{opacity:1}to{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}@keyframes rotateOutDownLeft{0%{opacity:1}to{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}.animate__rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutDownRight{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutDownRight{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.animate__rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOutUpLeft{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutUpLeft{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.animate__rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutUpRight{0%{opacity:1}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{opacity:1}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.animate__rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.animate__hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2);-webkit-animation-name:hinge;animation-name:hinge;-webkit-transform-origin:top left;transform-origin:top left}@-webkit-keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.animate__jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}@keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}.animate__rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.animate__zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}.animate__zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}.animate__zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft;-webkit-transform-origin:left center;transform-origin:left center}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}.animate__zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight;-webkit-transform-origin:right center;transform-origin:right center}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.animate__slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.animate__slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.animate__slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.animate__slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}</pre></body></html>