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

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

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

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

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

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

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

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

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

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

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

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

#s-7fea0c25-23cb-472f-9110-b2cd02b55c13 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-7fea0c25-23cb-472f-9110-b2cd02b55c13 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7fea0c25-23cb-472f-9110-b2cd02b55c13.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

.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>div {
  pointer-events: auto;
}

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

.shogun-image-content>div {
  width: 100%;
}

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

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

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

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
max-width: 6936px;
aspect-ratio: 6936/876;
text-align: center;
}
@media (min-width: 1200px){#s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d {
  display: none;
}
#s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d, #wrap-s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d { display: none !important; }}@media (max-width: 767px){#s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d {
  display: none;
}
#s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d, #wrap-s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d { display: none !important; }}


.shg-image-margin-container-s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d .shg-image-content-wrapper {
      aspect-ratio: 6936/876;
      width: 100%;
      height: 100%;
    }

    #s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d .shogun-image-link {
      aspect-ratio: 6936/876;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image {
    
    
  }


.s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d .shogun-image-content {
  
    align-items: center;
  
}

.s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d {
      --shg-aspect-ratio: calc(6936/876); 
    }

    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container {
      position: relative;
    }

    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d {
  
  
  
  
}

#s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d .shg-image-content-wrapper {
      aspect-ratio: 6936/876;
      width: 100%;
      height: 100%;
    }

    #s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d .shogun-image-link {
      aspect-ratio: 6936/876;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image {
    
    
  }


.s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d .shogun-image-content {
  
    align-items: center;
  
}

.s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d {
      --shg-aspect-ratio: calc(6936/876); 
    }

    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container {
      position: relative;
    }

    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d {
  
  
  
  
}

#s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d .shg-image-content-wrapper {
      aspect-ratio: 6936/876;
      width: 100%;
      height: 100%;
    }

    #s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d .shogun-image-link {
      aspect-ratio: 6936/876;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image {
    
    
  }


.s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d .shogun-image-content {
  
    align-items: center;
  
}

.s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d {
      --shg-aspect-ratio: calc(6936/876); 
    }

    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container {
      position: relative;
    }

    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d {
  
  
  
  
}

#s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d .shg-image-content-wrapper {
      aspect-ratio: 6936/876;
      width: 100%;
      height: 100%;
    }

    #s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d .shogun-image-link {
      aspect-ratio: 6936/876;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image {
    
    
  }


.s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d .shogun-image-content {
  
    align-items: center;
  
}

.s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d {
      --shg-aspect-ratio: calc(6936/876); 
    }

    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container {
      position: relative;
    }

    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d {
  
  
  
  
}

#s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d .shg-image-content-wrapper {
      aspect-ratio: 6936/876;
      width: 100%;
      height: 100%;
    }

    #s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d .shogun-image-link {
      aspect-ratio: 6936/876;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image {
    
    
  }


.s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d .shogun-image-content {
  
    align-items: center;
  
}

.s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d {
      --shg-aspect-ratio: calc(6936/876); 
    }

    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container {
      position: relative;
    }

    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4eae2efb-b97c-432f-9ce8-b52ae8f7eb9d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-ba1acf58-fd41-4810-9866-cdb47bc57c24 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(82, 177, 215, 1);
}
@media (min-width: 1200px){#s-ba1acf58-fd41-4810-9866-cdb47bc57c24 {
  display: none;
}
#s-ba1acf58-fd41-4810-9866-cdb47bc57c24, #wrap-s-ba1acf58-fd41-4810-9866-cdb47bc57c24 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ba1acf58-fd41-4810-9866-cdb47bc57c24 {
  display: none;
}
#s-ba1acf58-fd41-4810-9866-cdb47bc57c24, #wrap-s-ba1acf58-fd41-4810-9866-cdb47bc57c24 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ba1acf58-fd41-4810-9866-cdb47bc57c24 {
  
}
}







#s-ba1acf58-fd41-4810-9866-cdb47bc57c24 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ba1acf58-fd41-4810-9866-cdb47bc57c24.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-theme-text-content p {
  
  
  
}

#s-eb47a5ce-7db0-40c0-aadf-8585fa903f01 {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
}

#s-52c1bf3c-2ced-47e2-a1fb-8df0463f3b5a {
  margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
}

#s-ebc74c88-41dc-4e3a-8305-56b4542e4feb {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-ebc74c88-41dc-4e3a-8305-56b4542e4feb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ebc74c88-41dc-4e3a-8305-56b4542e4feb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d989ddcd-29a0-4091-9d73-eca8c59dc4b8 {
  margin-left: auto;
margin-right: auto;
}

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

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

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

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

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

#s-75938117-2072-4b46-bcd2-198363d26a43 {
  margin-left: auto;
margin-right: auto;
background-color: rgba(242, 247, 249, 1);
}

@media (min-width: 0px) {
[id="s-75938117-2072-4b46-bcd2-198363d26a43"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-75938117-2072-4b46-bcd2-198363d26a43"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-75938117-2072-4b46-bcd2-198363d26a43"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-75938117-2072-4b46-bcd2-198363d26a43"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-4201fe0d-8218-4f36-b4cf-a466eb8c6c11 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(242, 247, 249, 1);
}








#s-4201fe0d-8218-4f36-b4cf-a466eb8c6c11 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4201fe0d-8218-4f36-b4cf-a466eb8c6c11.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-bcf5bdf6-a361-4ed2-a5ee-620c0cc99cf7 {
  margin-top: 20px;
margin-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-bcf5bdf6-a361-4ed2-a5ee-620c0cc99cf7 {
  display: none;
}
#s-bcf5bdf6-a361-4ed2-a5ee-620c0cc99cf7, #wrap-s-bcf5bdf6-a361-4ed2-a5ee-620c0cc99cf7 { display: none !important; }}
#s-6b6b8cb3-8578-41e3-9c46-3c55bebfc5de {
  margin-left: auto;
margin-right: auto;
}

#s-0775defe-2679-405c-9a32-59b320d556d4 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-0775defe-2679-405c-9a32-59b320d556d4 {
  display: none;
}
#s-0775defe-2679-405c-9a32-59b320d556d4, #wrap-s-0775defe-2679-405c-9a32-59b320d556d4 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0775defe-2679-405c-9a32-59b320d556d4 {
  display: none;
}
#s-0775defe-2679-405c-9a32-59b320d556d4, #wrap-s-0775defe-2679-405c-9a32-59b320d556d4 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0775defe-2679-405c-9a32-59b320d556d4 {
  display: none;
}
#s-0775defe-2679-405c-9a32-59b320d556d4, #wrap-s-0775defe-2679-405c-9a32-59b320d556d4 { display: none !important; }}
.shg-product-title-component h1,
.shg-product-title-component h2,
.shg-product-title-component h3,
.shg-product-title-component h4,
.shg-product-title-component h5,
.shg-product-title-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  
  
  text-transform: none;
  
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

.shg-product-title-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-7b37214b-6e7e-4296-8af4-85f8b2fd69a8 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7b37214b-6e7e-4296-8af4-85f8b2fd69a8 .shg-product-title-component h1 {
  
  font-weight:  normal ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 30px;
  
  
  
}

.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);
}

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

.shg-product-image-wrapper.visible {
  display: inline-block;
}

.shg-product-image-wrapper .shg-product-image-wrapper a {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.shg-product-image-wrapper .shg-image-zoom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  max-width: 100%;
  min-height: 100%;
}

.shg-c.shg-align-center .shg-image-zoom {
  margin: 0 auto;
}

.shg-c.shg-align-right .shg-image-zoom {
  margin-left: auto;
}

.shg-image-zoom .shg-image-zoom-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease-out;
  transform: scale(1);
}

/**
  Fix for IE11, as min-width does not works there.
**/
@media screen\0 {
  .shg-product-image-wrapper > .shogun-image {
    width: 100%;
  }
}

#s-05414faf-86e2-47a6-9301-b851e91ec46f {
  margin-top: 0%;
margin-left: 20%;
margin-bottom: 0%;
margin-right: 20%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
text-align: left;
background-color: rgba(0, 0, 0, 0);
}


.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f {
  max-width:  100%;
}

.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-image-zoom,
.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image,
.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-image-zoom,
.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image {
  aspect-ratio: 1:1;
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f {
  max-width:  100%;
}

.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-image-zoom,
.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image,
.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-image-zoom,
.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image {
  aspect-ratio: 1:1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f {
  max-width:  100%;
}

.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-image-zoom,
.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image,
.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-image-zoom,
.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image {
  aspect-ratio: 1:1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f {
  max-width:  100%;
}

.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-image-zoom,
.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image,
.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-image-zoom,
.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image {
  aspect-ratio: 1:1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f {
  max-width:  100%;
}

.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-image-zoom,
.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image,
.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f .shg-image-zoom,
.shg-c#s-05414faf-86e2-47a6-9301-b851e91ec46f img.shogun-image {
  aspect-ratio: 1:1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}
.shg-gallery-root {}

.shg-gallery-arrows-container {
  display: flex;
  align-items: center;
  position: relative;
}

.shg-gallery-dots-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.shg-gallery-scroll-container {
  position: relative;
}

.shg-gallery-thumb-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
}

.shg-gallery-thumb-image {
  max-width: 100%;
  display: inline-block;
  cursor: pointer;
}

.shg-gallery-thumb-image:hover {
  opacity: 0.6;
}

.shg-gallery-thumb-image-square {
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

.shg-gallery-image-hidden {
  display: none;
}

.shg-gallery-scroll-button {
  position: absolute;
  width: 3%;
  max-width: 48px;
  max-height: 48px;
}

.shg-left {
  left: 0;
  margin-left: 1%;
}

.shg-right {
  right: 0;
  margin-right: 1%;
}

.shg-gallery-dot {
  height: 14px;
  width: 14px;
  opacity: 0.5;
  border-radius: 100%;
  margin: 0 8px;
}

.shg-selected {
  opacity: 1;
}
#s-b54a1a2b-77d3-4359-8610-76b74f1b7da5 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-left: 15%;
padding-bottom: 20px;
padding-right: 15%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: none;
text-align: left;
}

#s-b54a1a2b-77d3-4359-8610-76b74f1b7da5 .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 20.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-b54a1a2b-77d3-4359-8610-76b74f1b7da5 .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-b54a1a2b-77d3-4359-8610-76b74f1b7da5 .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-b54a1a2b-77d3-4359-8610-76b74f1b7da5 .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-b54a1a2b-77d3-4359-8610-76b74f1b7da5 .shg-gallery-scroll-button {
  color: #FFF;
}

#s-b54a1a2b-77d3-4359-8610-76b74f1b7da5 .shg-gallery-dot {
  background-color: #FFF;
}

#s-e4ac815f-428c-4f1a-a7c3-ae8d13c33f95 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-e4ac815f-428c-4f1a-a7c3-ae8d13c33f95 {
  display: none;
}
#s-e4ac815f-428c-4f1a-a7c3-ae8d13c33f95, #wrap-s-e4ac815f-428c-4f1a-a7c3-ae8d13c33f95 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e4ac815f-428c-4f1a-a7c3-ae8d13c33f95 {
  display: none;
}
#s-e4ac815f-428c-4f1a-a7c3-ae8d13c33f95, #wrap-s-e4ac815f-428c-4f1a-a7c3-ae8d13c33f95 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e4ac815f-428c-4f1a-a7c3-ae8d13c33f95 {
  display: none;
}
#s-e4ac815f-428c-4f1a-a7c3-ae8d13c33f95, #wrap-s-e4ac815f-428c-4f1a-a7c3-ae8d13c33f95 { display: none !important; }}







#s-e4ac815f-428c-4f1a-a7c3-ae8d13c33f95 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e4ac815f-428c-4f1a-a7c3-ae8d13c33f95.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0d92f4ee-45eb-4061-993b-08b124707817 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

#s-ea97871b-0bed-42e6-9906-43bfc74dcdf2 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
text-align: center;
}

#s-ea97871b-0bed-42e6-9906-43bfc74dcdf2 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 30px;
  font-weight:  500 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-ea97871b-0bed-42e6-9906-43bfc74dcdf2 .shg-product-price {
  color: #000;
  font-weight:  500 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 30px;
}

#s-ea97871b-0bed-42e6-9906-43bfc74dcdf2 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-92081eb8-137f-451d-94e4-8b92964ca1e3 {
  margin-left: auto;
margin-right: auto;
padding-left: 10%;
padding-right: 10%;
}

@media (min-width: 0px) {
[id="s-92081eb8-137f-451d-94e4-8b92964ca1e3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-92081eb8-137f-451d-94e4-8b92964ca1e3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-92081eb8-137f-451d-94e4-8b92964ca1e3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-92081eb8-137f-451d-94e4-8b92964ca1e3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

.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-3277e251-21b0-4f5d-9665-99f7dd041274 {
  border-style: solid;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 15%;
padding-bottom: 15px;
padding-right: 15%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 10px;
background-color: rgba(44, 86, 125, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-3277e251-21b0-4f5d-9665-99f7dd041274:hover {border-radius: 10px !important;
background-color: rgba(21, 163, 230, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-3277e251-21b0-4f5d-9665-99f7dd041274:active {border-radius: 10px !important;
background-color: rgba(18, 101, 139, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}


#s-3277e251-21b0-4f5d-9665-99f7dd041274 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3277e251-21b0-4f5d-9665-99f7dd041274.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3277e251-21b0-4f5d-9665-99f7dd041274.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-3277e251-21b0-4f5d-9665-99f7dd041274.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-3f983320-3b82-4c51-b431-858b3885cdf4 {
  margin-top: 30px;
margin-left: 20%;
margin-bottom: 40px;
margin-right: 20%;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
text-align: left;
}

#s-3f983320-3b82-4c51-b431-858b3885cdf4 .shg-product-quantity-wrapper {
  display: flex;
}

#s-3f983320-3b82-4c51-b431-858b3885cdf4 .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-3f983320-3b82-4c51-b431-858b3885cdf4 .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-3f983320-3b82-4c51-b431-858b3885cdf4 .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-3f983320-3b82-4c51-b431-858b3885cdf4 .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }




#s-0b5ec503-012a-4160-8983-cc58aee0ef44 {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-0b5ec503-012a-4160-8983-cc58aee0ef44 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0b5ec503-012a-4160-8983-cc58aee0ef44.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2db1044b-7749-43f2-9ba3-4ce08c075844 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-right: 10%;
}

#s-a56b0868-4627-41ba-9578-1345bea1bb4c {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-right: 10%;
}

#s-c0c6fc9f-891c-464c-b0b9-a405c05f28f2 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-c0c6fc9f-891c-464c-b0b9-a405c05f28f2 {
  display: none;
}
#s-c0c6fc9f-891c-464c-b0b9-a405c05f28f2, #wrap-s-c0c6fc9f-891c-464c-b0b9-a405c05f28f2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c0c6fc9f-891c-464c-b0b9-a405c05f28f2 {
  display: none;
}
#s-c0c6fc9f-891c-464c-b0b9-a405c05f28f2, #wrap-s-c0c6fc9f-891c-464c-b0b9-a405c05f28f2 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c0c6fc9f-891c-464c-b0b9-a405c05f28f2 {
  
}
}@media (max-width: 767px){#s-c0c6fc9f-891c-464c-b0b9-a405c05f28f2 {
  display: none;
}
#s-c0c6fc9f-891c-464c-b0b9-a405c05f28f2, #wrap-s-c0c6fc9f-891c-464c-b0b9-a405c05f28f2 { display: none !important; }}







#s-c0c6fc9f-891c-464c-b0b9-a405c05f28f2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c0c6fc9f-891c-464c-b0b9-a405c05f28f2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ee17bffd-99cb-4eeb-8196-0229cca8354a {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

#s-aabfb6e7-af46-47d3-be82-994e396df70b {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-aabfb6e7-af46-47d3-be82-994e396df70b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 30px;
  font-weight:  500 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-aabfb6e7-af46-47d3-be82-994e396df70b .shg-product-price {
  color: #000;
  font-weight:  500 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 30px;
}

#s-aabfb6e7-af46-47d3-be82-994e396df70b .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-5c8bcc13-41ef-404f-ace6-bf1c6d7e0e37 {
  margin-left: auto;
margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-5c8bcc13-41ef-404f-ace6-bf1c6d7e0e37"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5c8bcc13-41ef-404f-ace6-bf1c6d7e0e37"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5c8bcc13-41ef-404f-ace6-bf1c6d7e0e37"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5c8bcc13-41ef-404f-ace6-bf1c6d7e0e37"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-93ae8e3e-ffed-485d-a000-e6e85e01bb3a {
  border-style: solid;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 15%;
padding-bottom: 15px;
padding-right: 15%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 10px;
background-color: rgba(44, 86, 125, 1);
text-align: left;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-93ae8e3e-ffed-485d-a000-e6e85e01bb3a:hover {border-radius: 10px !important;
background-color: rgba(21, 163, 230, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-93ae8e3e-ffed-485d-a000-e6e85e01bb3a:active {border-radius: 10px !important;
background-color: rgba(18, 101, 139, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}


#s-93ae8e3e-ffed-485d-a000-e6e85e01bb3a {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-93ae8e3e-ffed-485d-a000-e6e85e01bb3a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-93ae8e3e-ffed-485d-a000-e6e85e01bb3a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-93ae8e3e-ffed-485d-a000-e6e85e01bb3a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-83b676e4-34c8-416b-8264-26b125dfb173 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-align: left;
}

#s-83b676e4-34c8-416b-8264-26b125dfb173 .shg-product-quantity-wrapper {
  display: flex;
}

#s-83b676e4-34c8-416b-8264-26b125dfb173 .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-83b676e4-34c8-416b-8264-26b125dfb173 .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-83b676e4-34c8-416b-8264-26b125dfb173 .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-83b676e4-34c8-416b-8264-26b125dfb173 .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }




#s-3e564748-9ad0-4dc4-a8cd-9f298a826af0 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-3e564748-9ad0-4dc4-a8cd-9f298a826af0 {
  display: none;
}
#s-3e564748-9ad0-4dc4-a8cd-9f298a826af0, #wrap-s-3e564748-9ad0-4dc4-a8cd-9f298a826af0 { display: none !important; }}@media (max-width: 767px){#s-3e564748-9ad0-4dc4-a8cd-9f298a826af0 {
  display: none;
}
#s-3e564748-9ad0-4dc4-a8cd-9f298a826af0, #wrap-s-3e564748-9ad0-4dc4-a8cd-9f298a826af0 { display: none !important; }}
#s-3e564748-9ad0-4dc4-a8cd-9f298a826af0 .shg-product-quantity-wrapper {
  display: flex;
}

#s-3e564748-9ad0-4dc4-a8cd-9f298a826af0 .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-3e564748-9ad0-4dc4-a8cd-9f298a826af0 .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-3e564748-9ad0-4dc4-a8cd-9f298a826af0 .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-3e564748-9ad0-4dc4-a8cd-9f298a826af0 .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }




#s-eb020eaa-fbba-48f9-be92-e8bb94b2cdd7 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-eb020eaa-fbba-48f9-be92-e8bb94b2cdd7 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-eb020eaa-fbba-48f9-be92-e8bb94b2cdd7 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-eb020eaa-fbba-48f9-be92-e8bb94b2cdd7 {
  display: none;
}
#s-eb020eaa-fbba-48f9-be92-e8bb94b2cdd7, #wrap-s-eb020eaa-fbba-48f9-be92-e8bb94b2cdd7 { display: none !important; }}@media (max-width: 767px){#s-eb020eaa-fbba-48f9-be92-e8bb94b2cdd7 {
  display: none;
}
#s-eb020eaa-fbba-48f9-be92-e8bb94b2cdd7, #wrap-s-eb020eaa-fbba-48f9-be92-e8bb94b2cdd7 { display: none !important; }}







#s-eb020eaa-fbba-48f9-be92-e8bb94b2cdd7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-eb020eaa-fbba-48f9-be92-e8bb94b2cdd7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5e291b11-1c0d-48db-aab3-6ebe4a0044a2 {
  margin-top: 40px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

#s-d8a69876-1540-47f0-9ec8-82b0a1bec856 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-d8a69876-1540-47f0-9ec8-82b0a1bec856 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 30px;
  font-weight:  500 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-d8a69876-1540-47f0-9ec8-82b0a1bec856 .shg-product-price {
  color: #000;
  font-weight:  500 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 30px;
}

#s-d8a69876-1540-47f0-9ec8-82b0a1bec856 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-61fa11d7-127e-46ff-8757-94b9a53b7dea {
  margin-left: auto;
margin-bottom: 30px;
margin-right: 20%;
}

@media (min-width: 0px) {
[id="s-61fa11d7-127e-46ff-8757-94b9a53b7dea"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-61fa11d7-127e-46ff-8757-94b9a53b7dea"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-61fa11d7-127e-46ff-8757-94b9a53b7dea"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-61fa11d7-127e-46ff-8757-94b9a53b7dea"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-ca601e11-ae72-4655-a50b-d76a63c8cd3a {
  border-style: solid;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 15%;
padding-bottom: 15px;
padding-right: 15%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 10px;
background-color: rgba(44, 86, 125, 1);
text-align: left;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-ca601e11-ae72-4655-a50b-d76a63c8cd3a:hover {border-radius: 10px !important;
background-color: rgba(21, 163, 230, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-ca601e11-ae72-4655-a50b-d76a63c8cd3a:active {border-radius: 10px !important;
background-color: rgba(18, 101, 139, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}


#s-ca601e11-ae72-4655-a50b-d76a63c8cd3a {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-ca601e11-ae72-4655-a50b-d76a63c8cd3a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-ca601e11-ae72-4655-a50b-d76a63c8cd3a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-ca601e11-ae72-4655-a50b-d76a63c8cd3a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-bf96ebe6-2d82-4078-b265-d6cfc1694fdb {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-align: left;
}

#s-bf96ebe6-2d82-4078-b265-d6cfc1694fdb .shg-product-quantity-wrapper {
  display: flex;
}

#s-bf96ebe6-2d82-4078-b265-d6cfc1694fdb .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-bf96ebe6-2d82-4078-b265-d6cfc1694fdb .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-bf96ebe6-2d82-4078-b265-d6cfc1694fdb .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-bf96ebe6-2d82-4078-b265-d6cfc1694fdb .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }




#s-3ca81c86-b323-40d8-b355-99cb2dc1aa24 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-3ca81c86-b323-40d8-b355-99cb2dc1aa24 {
  
}
}@media (max-width: 767px){#s-3ca81c86-b323-40d8-b355-99cb2dc1aa24 {
  display: none;
}
#s-3ca81c86-b323-40d8-b355-99cb2dc1aa24, #wrap-s-3ca81c86-b323-40d8-b355-99cb2dc1aa24 { display: none !important; }}







#s-3ca81c86-b323-40d8-b355-99cb2dc1aa24 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3ca81c86-b323-40d8-b355-99cb2dc1aa24.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5bb57fab-76db-4b36-a783-8bb47ac15508 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
}

@media (min-width: 0px) {
[id="s-5bb57fab-76db-4b36-a783-8bb47ac15508"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5bb57fab-76db-4b36-a783-8bb47ac15508"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-5bb57fab-76db-4b36-a783-8bb47ac15508"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5bb57fab-76db-4b36-a783-8bb47ac15508"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-5bb57fab-76db-4b36-a783-8bb47ac15508"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5bb57fab-76db-4b36-a783-8bb47ac15508"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-5bb57fab-76db-4b36-a783-8bb47ac15508"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

}

#s-36201127-dc35-4d83-ba76-6313d2194d93 {
  margin-left: auto;
margin-right: auto;
max-width: 60%;
aspect-ratio: 288/301;
text-align: left;
}



.shg-image-margin-container-s-36201127-dc35-4d83-ba76-6313d2194d93 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-36201127-dc35-4d83-ba76-6313d2194d93 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-36201127-dc35-4d83-ba76-6313d2194d93 .shg-image-content-wrapper {
      aspect-ratio: 288/301;
      width: 100%;
      height: 100%;
    }

    #s-36201127-dc35-4d83-ba76-6313d2194d93 .shogun-image-link {
      aspect-ratio: 288/301;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-36201127-dc35-4d83-ba76-6313d2194d93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-36201127-dc35-4d83-ba76-6313d2194d93 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }




.s-36201127-dc35-4d83-ba76-6313d2194d93 .shogun-image-content {
  
    align-items: center;
  
}

.s-36201127-dc35-4d83-ba76-6313d2194d93.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-36201127-dc35-4d83-ba76-6313d2194d93 {
      --shg-aspect-ratio: calc(288/301); 
    }

    .s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container {
      position: relative;
    }

    .s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-36201127-dc35-4d83-ba76-6313d2194d93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-36201127-dc35-4d83-ba76-6313d2194d93 {
  
  
  
  
}

#s-36201127-dc35-4d83-ba76-6313d2194d93 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-36201127-dc35-4d83-ba76-6313d2194d93 .shg-image-content-wrapper {
      aspect-ratio: 288/301;
      width: 100%;
      height: 100%;
    }

    #s-36201127-dc35-4d83-ba76-6313d2194d93 .shogun-image-link {
      aspect-ratio: 288/301;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-36201127-dc35-4d83-ba76-6313d2194d93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-36201127-dc35-4d83-ba76-6313d2194d93 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }




.s-36201127-dc35-4d83-ba76-6313d2194d93 .shogun-image-content {
  
    align-items: center;
  
}

.s-36201127-dc35-4d83-ba76-6313d2194d93.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-36201127-dc35-4d83-ba76-6313d2194d93 {
      --shg-aspect-ratio: calc(288/301); 
    }

    .s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container {
      position: relative;
    }

    .s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-36201127-dc35-4d83-ba76-6313d2194d93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-36201127-dc35-4d83-ba76-6313d2194d93 {
  
  
  
  
}

#s-36201127-dc35-4d83-ba76-6313d2194d93 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-36201127-dc35-4d83-ba76-6313d2194d93 .shg-image-content-wrapper {
      aspect-ratio: 288/301;
      width: 100%;
      height: 100%;
    }

    #s-36201127-dc35-4d83-ba76-6313d2194d93 .shogun-image-link {
      aspect-ratio: 288/301;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-36201127-dc35-4d83-ba76-6313d2194d93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-36201127-dc35-4d83-ba76-6313d2194d93 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }




.s-36201127-dc35-4d83-ba76-6313d2194d93 .shogun-image-content {
  
    align-items: center;
  
}

.s-36201127-dc35-4d83-ba76-6313d2194d93.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-36201127-dc35-4d83-ba76-6313d2194d93 {
      --shg-aspect-ratio: calc(288/301); 
    }

    .s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container {
      position: relative;
    }

    .s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-36201127-dc35-4d83-ba76-6313d2194d93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-36201127-dc35-4d83-ba76-6313d2194d93 {
  
  
  
  
}

#s-36201127-dc35-4d83-ba76-6313d2194d93 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-36201127-dc35-4d83-ba76-6313d2194d93 .shg-image-content-wrapper {
      aspect-ratio: 288/301;
      width: 100%;
      height: 100%;
    }

    #s-36201127-dc35-4d83-ba76-6313d2194d93 .shogun-image-link {
      aspect-ratio: 288/301;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-36201127-dc35-4d83-ba76-6313d2194d93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-36201127-dc35-4d83-ba76-6313d2194d93 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }




.s-36201127-dc35-4d83-ba76-6313d2194d93 .shogun-image-content {
  
    align-items: center;
  
}

.s-36201127-dc35-4d83-ba76-6313d2194d93.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-36201127-dc35-4d83-ba76-6313d2194d93 {
      --shg-aspect-ratio: calc(288/301); 
    }

    .s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container {
      position: relative;
    }

    .s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-36201127-dc35-4d83-ba76-6313d2194d93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-36201127-dc35-4d83-ba76-6313d2194d93 {
  
  
  
  
}

#s-36201127-dc35-4d83-ba76-6313d2194d93 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-36201127-dc35-4d83-ba76-6313d2194d93 .shg-image-content-wrapper {
      aspect-ratio: 288/301;
      width: 100%;
      height: 100%;
    }

    #s-36201127-dc35-4d83-ba76-6313d2194d93 .shogun-image-link {
      aspect-ratio: 288/301;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-36201127-dc35-4d83-ba76-6313d2194d93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-36201127-dc35-4d83-ba76-6313d2194d93 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }




.s-36201127-dc35-4d83-ba76-6313d2194d93 .shogun-image-content {
  
    align-items: center;
  
}

.s-36201127-dc35-4d83-ba76-6313d2194d93.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-36201127-dc35-4d83-ba76-6313d2194d93 {
      --shg-aspect-ratio: calc(288/301); 
    }

    .s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container {
      position: relative;
    }

    .s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-36201127-dc35-4d83-ba76-6313d2194d93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-36201127-dc35-4d83-ba76-6313d2194d93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-cdca8834-4807-45e4-957b-5723672236ab {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-bottom: 20px;
}

#s-a16e7593-882f-40ba-ae24-da9f05c95a7d {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-a16e7593-882f-40ba-ae24-da9f05c95a7d {
  display: none;
}
#s-a16e7593-882f-40ba-ae24-da9f05c95a7d, #wrap-s-a16e7593-882f-40ba-ae24-da9f05c95a7d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a16e7593-882f-40ba-ae24-da9f05c95a7d {
  display: none;
}
#s-a16e7593-882f-40ba-ae24-da9f05c95a7d, #wrap-s-a16e7593-882f-40ba-ae24-da9f05c95a7d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a16e7593-882f-40ba-ae24-da9f05c95a7d {
  display: none;
}
#s-a16e7593-882f-40ba-ae24-da9f05c95a7d, #wrap-s-a16e7593-882f-40ba-ae24-da9f05c95a7d { display: none !important; }}@media (max-width: 767px){#s-a16e7593-882f-40ba-ae24-da9f05c95a7d {
  
}
}







#s-a16e7593-882f-40ba-ae24-da9f05c95a7d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a16e7593-882f-40ba-ae24-da9f05c95a7d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-39c54ac9-8956-4c55-ac80-d2f3da1a3117 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
}

@media (min-width: 0px) {
[id="s-39c54ac9-8956-4c55-ac80-d2f3da1a3117"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-39c54ac9-8956-4c55-ac80-d2f3da1a3117"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-39c54ac9-8956-4c55-ac80-d2f3da1a3117"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-39c54ac9-8956-4c55-ac80-d2f3da1a3117"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-39c54ac9-8956-4c55-ac80-d2f3da1a3117"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-39c54ac9-8956-4c55-ac80-d2f3da1a3117"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-39c54ac9-8956-4c55-ac80-d2f3da1a3117"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

}

#s-a58180e7-20cd-4070-9246-307ed77bf5c3 {
  margin-left: auto;
margin-right: auto;
max-width: 20%;
aspect-ratio: 288/301;
text-align: center;
}



.shg-image-margin-container-s-a58180e7-20cd-4070-9246-307ed77bf5c3 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-a58180e7-20cd-4070-9246-307ed77bf5c3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a58180e7-20cd-4070-9246-307ed77bf5c3 .shg-image-content-wrapper {
      aspect-ratio: 288/301;
      width: 100%;
      height: 100%;
    }

    #s-a58180e7-20cd-4070-9246-307ed77bf5c3 .shogun-image-link {
      aspect-ratio: 288/301;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a58180e7-20cd-4070-9246-307ed77bf5c3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a58180e7-20cd-4070-9246-307ed77bf5c3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }




.s-a58180e7-20cd-4070-9246-307ed77bf5c3 .shogun-image-content {
  
    align-items: center;
  
}

.s-a58180e7-20cd-4070-9246-307ed77bf5c3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a58180e7-20cd-4070-9246-307ed77bf5c3 {
      --shg-aspect-ratio: calc(288/301); 
    }

    .s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container {
      position: relative;
    }

    .s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a58180e7-20cd-4070-9246-307ed77bf5c3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-a58180e7-20cd-4070-9246-307ed77bf5c3 {
  
  
  
  
}

#s-a58180e7-20cd-4070-9246-307ed77bf5c3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a58180e7-20cd-4070-9246-307ed77bf5c3 .shg-image-content-wrapper {
      aspect-ratio: 288/301;
      width: 100%;
      height: 100%;
    }

    #s-a58180e7-20cd-4070-9246-307ed77bf5c3 .shogun-image-link {
      aspect-ratio: 288/301;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a58180e7-20cd-4070-9246-307ed77bf5c3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a58180e7-20cd-4070-9246-307ed77bf5c3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }




.s-a58180e7-20cd-4070-9246-307ed77bf5c3 .shogun-image-content {
  
    align-items: center;
  
}

.s-a58180e7-20cd-4070-9246-307ed77bf5c3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a58180e7-20cd-4070-9246-307ed77bf5c3 {
      --shg-aspect-ratio: calc(288/301); 
    }

    .s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container {
      position: relative;
    }

    .s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a58180e7-20cd-4070-9246-307ed77bf5c3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a58180e7-20cd-4070-9246-307ed77bf5c3 {
  
  
  
  
}

#s-a58180e7-20cd-4070-9246-307ed77bf5c3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a58180e7-20cd-4070-9246-307ed77bf5c3 .shg-image-content-wrapper {
      aspect-ratio: 288/301;
      width: 100%;
      height: 100%;
    }

    #s-a58180e7-20cd-4070-9246-307ed77bf5c3 .shogun-image-link {
      aspect-ratio: 288/301;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a58180e7-20cd-4070-9246-307ed77bf5c3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a58180e7-20cd-4070-9246-307ed77bf5c3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }




.s-a58180e7-20cd-4070-9246-307ed77bf5c3 .shogun-image-content {
  
    align-items: center;
  
}

.s-a58180e7-20cd-4070-9246-307ed77bf5c3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a58180e7-20cd-4070-9246-307ed77bf5c3 {
      --shg-aspect-ratio: calc(288/301); 
    }

    .s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container {
      position: relative;
    }

    .s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a58180e7-20cd-4070-9246-307ed77bf5c3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a58180e7-20cd-4070-9246-307ed77bf5c3 {
  
  
  
  
}

#s-a58180e7-20cd-4070-9246-307ed77bf5c3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a58180e7-20cd-4070-9246-307ed77bf5c3 .shg-image-content-wrapper {
      aspect-ratio: 288/301;
      width: 100%;
      height: 100%;
    }

    #s-a58180e7-20cd-4070-9246-307ed77bf5c3 .shogun-image-link {
      aspect-ratio: 288/301;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a58180e7-20cd-4070-9246-307ed77bf5c3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a58180e7-20cd-4070-9246-307ed77bf5c3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }




.s-a58180e7-20cd-4070-9246-307ed77bf5c3 .shogun-image-content {
  
    align-items: center;
  
}

.s-a58180e7-20cd-4070-9246-307ed77bf5c3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a58180e7-20cd-4070-9246-307ed77bf5c3 {
      --shg-aspect-ratio: calc(288/301); 
    }

    .s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container {
      position: relative;
    }

    .s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a58180e7-20cd-4070-9246-307ed77bf5c3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a58180e7-20cd-4070-9246-307ed77bf5c3 {
  
  
  
  
}

#s-a58180e7-20cd-4070-9246-307ed77bf5c3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a58180e7-20cd-4070-9246-307ed77bf5c3 .shg-image-content-wrapper {
      aspect-ratio: 288/301;
      width: 100%;
      height: 100%;
    }

    #s-a58180e7-20cd-4070-9246-307ed77bf5c3 .shogun-image-link {
      aspect-ratio: 288/301;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a58180e7-20cd-4070-9246-307ed77bf5c3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a58180e7-20cd-4070-9246-307ed77bf5c3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }




.s-a58180e7-20cd-4070-9246-307ed77bf5c3 .shogun-image-content {
  
    align-items: center;
  
}

.s-a58180e7-20cd-4070-9246-307ed77bf5c3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a58180e7-20cd-4070-9246-307ed77bf5c3 {
      --shg-aspect-ratio: calc(288/301); 
    }

    .s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container {
      position: relative;
    }

    .s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a58180e7-20cd-4070-9246-307ed77bf5c3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a58180e7-20cd-4070-9246-307ed77bf5c3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-1117c004-4dc5-43ec-9c5c-bf6d3d26c366 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-bottom: 20px;
}

#s-33d16717-10ab-448d-909c-ab4d7b0dbd85 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-33d16717-10ab-448d-909c-ab4d7b0dbd85 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-33d16717-10ab-448d-909c-ab4d7b0dbd85.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-299da519-de98-4768-857e-8cdd3ee529ed {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-left: 5%;
padding-bottom: 40px;
padding-right: 5%;
background-color: rgba(29, 169, 217, 1);
}

@media (min-width: 0px) {
[id="s-299da519-de98-4768-857e-8cdd3ee529ed"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-299da519-de98-4768-857e-8cdd3ee529ed"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 30.0px);
}

}

@media (min-width: 992px) {
[id="s-299da519-de98-4768-857e-8cdd3ee529ed"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 30.0px);
}

}

@media (min-width: 1200px) {
[id="s-299da519-de98-4768-857e-8cdd3ee529ed"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 30.0px);
}

}

#s-0bb86813-596e-4845-89fc-c0ab26200f11 {
  margin-top: 30px;
margin-left: 20%;
margin-bottom: 10px;
margin-right: 20%;
max-width: 60%;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-0bb86813-596e-4845-89fc-c0ab26200f11 {
  margin-left: 20%;
  margin-right: 20%;
  margin-top: 30px;
  margin-bottom: 10px;
}

#s-0bb86813-596e-4845-89fc-c0ab26200f11 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0bb86813-596e-4845-89fc-c0ab26200f11 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      width: 100%;
      height: 100%;
    }

    #s-0bb86813-596e-4845-89fc-c0ab26200f11 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0bb86813-596e-4845-89fc-c0ab26200f11 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0bb86813-596e-4845-89fc-c0ab26200f11 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image {
    
    
  }


.s-0bb86813-596e-4845-89fc-c0ab26200f11 .shogun-image-content {
  
    align-items: center;
  
}

.s-0bb86813-596e-4845-89fc-c0ab26200f11.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0bb86813-596e-4845-89fc-c0ab26200f11 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container {
      position: relative;
    }

    .s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0bb86813-596e-4845-89fc-c0ab26200f11 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-0bb86813-596e-4845-89fc-c0ab26200f11 {
  
  
  
  
}

#s-0bb86813-596e-4845-89fc-c0ab26200f11 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0bb86813-596e-4845-89fc-c0ab26200f11 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      width: 100%;
      height: 100%;
    }

    #s-0bb86813-596e-4845-89fc-c0ab26200f11 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0bb86813-596e-4845-89fc-c0ab26200f11 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0bb86813-596e-4845-89fc-c0ab26200f11 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image {
    
    
  }


.s-0bb86813-596e-4845-89fc-c0ab26200f11 .shogun-image-content {
  
    align-items: center;
  
}

.s-0bb86813-596e-4845-89fc-c0ab26200f11.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0bb86813-596e-4845-89fc-c0ab26200f11 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container {
      position: relative;
    }

    .s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0bb86813-596e-4845-89fc-c0ab26200f11 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-0bb86813-596e-4845-89fc-c0ab26200f11 {
  
  
  
  
}

#s-0bb86813-596e-4845-89fc-c0ab26200f11 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0bb86813-596e-4845-89fc-c0ab26200f11 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      width: 100%;
      height: 100%;
    }

    #s-0bb86813-596e-4845-89fc-c0ab26200f11 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0bb86813-596e-4845-89fc-c0ab26200f11 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0bb86813-596e-4845-89fc-c0ab26200f11 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image {
    
    
  }


.s-0bb86813-596e-4845-89fc-c0ab26200f11 .shogun-image-content {
  
    align-items: center;
  
}

.s-0bb86813-596e-4845-89fc-c0ab26200f11.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0bb86813-596e-4845-89fc-c0ab26200f11 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container {
      position: relative;
    }

    .s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0bb86813-596e-4845-89fc-c0ab26200f11 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-0bb86813-596e-4845-89fc-c0ab26200f11 {
  
  
  
  
}

#s-0bb86813-596e-4845-89fc-c0ab26200f11 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0bb86813-596e-4845-89fc-c0ab26200f11 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      width: 100%;
      height: 100%;
    }

    #s-0bb86813-596e-4845-89fc-c0ab26200f11 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0bb86813-596e-4845-89fc-c0ab26200f11 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0bb86813-596e-4845-89fc-c0ab26200f11 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image {
    
    
  }


.s-0bb86813-596e-4845-89fc-c0ab26200f11 .shogun-image-content {
  
    align-items: center;
  
}

.s-0bb86813-596e-4845-89fc-c0ab26200f11.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0bb86813-596e-4845-89fc-c0ab26200f11 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container {
      position: relative;
    }

    .s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0bb86813-596e-4845-89fc-c0ab26200f11 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-0bb86813-596e-4845-89fc-c0ab26200f11 {
  
  
  
  
}

#s-0bb86813-596e-4845-89fc-c0ab26200f11 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0bb86813-596e-4845-89fc-c0ab26200f11 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      width: 100%;
      height: 100%;
    }

    #s-0bb86813-596e-4845-89fc-c0ab26200f11 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0bb86813-596e-4845-89fc-c0ab26200f11 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0bb86813-596e-4845-89fc-c0ab26200f11 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image {
    
    
  }


.s-0bb86813-596e-4845-89fc-c0ab26200f11 .shogun-image-content {
  
    align-items: center;
  
}

.s-0bb86813-596e-4845-89fc-c0ab26200f11.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0bb86813-596e-4845-89fc-c0ab26200f11 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container {
      position: relative;
    }

    .s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0bb86813-596e-4845-89fc-c0ab26200f11.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0bb86813-596e-4845-89fc-c0ab26200f11 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a {
  margin-top: 30px;
margin-left: 20%;
margin-bottom: 10px;
margin-right: 20%;
max-width: 60%;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a {
  margin-left: 20%;
  margin-right: 20%;
  margin-top: 30px;
  margin-bottom: 10px;
}

#s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      width: 100%;
      height: 100%;
    }

    #s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image {
    
    
  }


.s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a .shogun-image-content {
  
    align-items: center;
  
}

.s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container {
      position: relative;
    }

    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a {
  
  
  
  
}

#s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      width: 100%;
      height: 100%;
    }

    #s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image {
    
    
  }


.s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a .shogun-image-content {
  
    align-items: center;
  
}

.s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container {
      position: relative;
    }

    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a {
  
  
  
  
}

#s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      width: 100%;
      height: 100%;
    }

    #s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image {
    
    
  }


.s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a .shogun-image-content {
  
    align-items: center;
  
}

.s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container {
      position: relative;
    }

    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a {
  
  
  
  
}

#s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      width: 100%;
      height: 100%;
    }

    #s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image {
    
    
  }


.s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a .shogun-image-content {
  
    align-items: center;
  
}

.s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container {
      position: relative;
    }

    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a {
  
  
  
  
}

#s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      width: 100%;
      height: 100%;
    }

    #s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image {
    
    
  }


.s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a .shogun-image-content {
  
    align-items: center;
  
}

.s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container {
      position: relative;
    }

    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e22e5ee8-45c0-4756-8a38-1ce215d4a83a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d {
  margin-top: 30px;
margin-left: 20%;
margin-bottom: 10px;
margin-right: 20%;
max-width: 60%;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d {
  margin-left: 20%;
  margin-right: 20%;
  margin-top: 30px;
  margin-bottom: 10px;
}

#s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      width: 100%;
      height: 100%;
    }

    #s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image {
    
    
  }


.s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d .shogun-image-content {
  
    align-items: center;
  
}

.s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container {
      position: relative;
    }

    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d {
  
  
  
  
}

#s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      width: 100%;
      height: 100%;
    }

    #s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image {
    
    
  }


.s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d .shogun-image-content {
  
    align-items: center;
  
}

.s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container {
      position: relative;
    }

    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d {
  
  
  
  
}

#s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      width: 100%;
      height: 100%;
    }

    #s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image {
    
    
  }


.s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d .shogun-image-content {
  
    align-items: center;
  
}

.s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container {
      position: relative;
    }

    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d {
  
  
  
  
}

#s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      width: 100%;
      height: 100%;
    }

    #s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image {
    
    
  }


.s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d .shogun-image-content {
  
    align-items: center;
  
}

.s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container {
      position: relative;
    }

    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d {
  
  
  
  
}

#s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      width: 100%;
      height: 100%;
    }

    #s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image {
    
    
  }


.s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d .shogun-image-content {
  
    align-items: center;
  
}

.s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container {
      position: relative;
    }

    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c370a2ed-3aa0-4853-9ba6-c1733cf72a5d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 {
  margin-top: 30px;
margin-left: 20%;
margin-bottom: 10px;
margin-right: 20%;
max-width: 60%;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 {
  margin-left: 20%;
  margin-right: 20%;
  margin-top: 30px;
  margin-bottom: 10px;
}

#s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      width: 100%;
      height: 100%;
    }

    #s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image {
    
    
  }


.s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container {
      position: relative;
    }

    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 {
  
  
  
  
}

#s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      width: 100%;
      height: 100%;
    }

    #s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image {
    
    
  }


.s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container {
      position: relative;
    }

    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 {
  
  
  
  
}

#s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      width: 100%;
      height: 100%;
    }

    #s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image {
    
    
  }


.s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container {
      position: relative;
    }

    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 {
  
  
  
  
}

#s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      width: 100%;
      height: 100%;
    }

    #s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image {
    
    
  }


.s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container {
      position: relative;
    }

    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 {
  
  
  
  
}

#s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      width: 100%;
      height: 100%;
    }

    #s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image {
    
    
  }


.s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container {
      position: relative;
    }

    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d20c0f9a-135d-4ac1-b6d1-172435ae47f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-839155e1-fe66-4f56-89f8-7d3b67dcf115 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-839155e1-fe66-4f56-89f8-7d3b67dcf115 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-839155e1-fe66-4f56-89f8-7d3b67dcf115.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed {
  margin-left: auto;
margin-right: auto;
max-width: 6940px;
aspect-ratio: 6940/2608;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed {
  display: none;
}
#s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed, #wrap-s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed { display: none !important; }}@media (max-width: 767px){#s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed {
  display: none;
}
#s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed, #wrap-s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed { display: none !important; }}


.shg-image-margin-container-s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed .shg-image-content-wrapper {
      aspect-ratio: 6940/2608;
      width: 100%;
      height: 100%;
    }

    #s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed .shogun-image-link {
      aspect-ratio: 6940/2608;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image {
    
    
  }


.s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed .shogun-image-content {
  
    align-items: center;
  
}

.s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed {
      --shg-aspect-ratio: calc(6940/2608); 
    }

    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container {
      position: relative;
    }

    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed {
  
  
  
  
}

#s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed .shg-image-content-wrapper {
      aspect-ratio: 6940/2608;
      width: 100%;
      height: 100%;
    }

    #s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed .shogun-image-link {
      aspect-ratio: 6940/2608;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image {
    
    
  }


.s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed .shogun-image-content {
  
    align-items: center;
  
}

.s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed {
      --shg-aspect-ratio: calc(6940/2608); 
    }

    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container {
      position: relative;
    }

    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed {
  
  
  
  
}

#s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed .shg-image-content-wrapper {
      aspect-ratio: 6940/2608;
      width: 100%;
      height: 100%;
    }

    #s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed .shogun-image-link {
      aspect-ratio: 6940/2608;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image {
    
    
  }


.s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed .shogun-image-content {
  
    align-items: center;
  
}

.s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed {
      --shg-aspect-ratio: calc(6940/2608); 
    }

    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container {
      position: relative;
    }

    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed {
  
  
  
  
}

#s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed .shg-image-content-wrapper {
      aspect-ratio: 6940/2608;
      width: 100%;
      height: 100%;
    }

    #s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed .shogun-image-link {
      aspect-ratio: 6940/2608;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image {
    
    
  }


.s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed .shogun-image-content {
  
    align-items: center;
  
}

.s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed {
      --shg-aspect-ratio: calc(6940/2608); 
    }

    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container {
      position: relative;
    }

    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed {
  
  
  
  
}

#s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed .shg-image-content-wrapper {
      aspect-ratio: 6940/2608;
      width: 100%;
      height: 100%;
    }

    #s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed .shogun-image-link {
      aspect-ratio: 6940/2608;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image {
    
    
  }


.s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed .shogun-image-content {
  
    align-items: center;
  
}

.s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed {
      --shg-aspect-ratio: calc(6940/2608); 
    }

    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container {
      position: relative;
    }

    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b4aed5c3-dc9b-4fb8-91fe-b4d904bd17ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 {
  margin-left: auto;
margin-right: auto;
max-width: 4840px;
aspect-ratio: 4840/4512;
text-align: center;
}
@media (min-width: 1200px){#s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 {
  display: none;
}
#s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6, #wrap-s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 {
  display: none;
}
#s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6, #wrap-s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 { display: none !important; }}@media (max-width: 767px){#s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 {
  display: none;
}
#s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6, #wrap-s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 { display: none !important; }}


.shg-image-margin-container-s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 .shg-image-content-wrapper {
      aspect-ratio: 4840/4512;
      width: 100%;
      height: 100%;
    }

    #s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 .shogun-image-link {
      aspect-ratio: 4840/4512;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image {
    
    
  }


.s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 .shogun-image-content {
  
    align-items: center;
  
}

.s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 {
      --shg-aspect-ratio: calc(4840/4512); 
    }

    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container {
      position: relative;
    }

    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 {
  
  
  
  
}

#s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 .shg-image-content-wrapper {
      aspect-ratio: 4840/4512;
      width: 100%;
      height: 100%;
    }

    #s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 .shogun-image-link {
      aspect-ratio: 4840/4512;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image {
    
    
  }


.s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 .shogun-image-content {
  
    align-items: center;
  
}

.s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 {
      --shg-aspect-ratio: calc(4840/4512); 
    }

    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container {
      position: relative;
    }

    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 {
  
  
  
  
}

#s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 .shg-image-content-wrapper {
      aspect-ratio: 4840/4512;
      width: 100%;
      height: 100%;
    }

    #s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 .shogun-image-link {
      aspect-ratio: 4840/4512;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image {
    
    
  }


.s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 .shogun-image-content {
  
    align-items: center;
  
}

.s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 {
      --shg-aspect-ratio: calc(4840/4512); 
    }

    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container {
      position: relative;
    }

    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 {
  
  
  
  
}

#s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 .shg-image-content-wrapper {
      aspect-ratio: 4840/4512;
      width: 100%;
      height: 100%;
    }

    #s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 .shogun-image-link {
      aspect-ratio: 4840/4512;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image {
    
    
  }


.s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 .shogun-image-content {
  
    align-items: center;
  
}

.s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 {
      --shg-aspect-ratio: calc(4840/4512); 
    }

    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container {
      position: relative;
    }

    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 {
  
  
  
  
}

#s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 .shg-image-content-wrapper {
      aspect-ratio: 4840/4512;
      width: 100%;
      height: 100%;
    }

    #s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 .shogun-image-link {
      aspect-ratio: 4840/4512;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image {
    
    
  }


.s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 .shogun-image-content {
  
    align-items: center;
  
}

.s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 {
      --shg-aspect-ratio: calc(4840/4512); 
    }

    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container {
      position: relative;
    }

    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dbe7eab2-3de8-4cbf-a17c-4a55eeff5ef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-fce77d3e-cab1-4006-b769-f32a18b8d5aa {
  margin-left: auto;
margin-right: auto;
max-width: 1720px;
aspect-ratio: 1720/6152;
text-align: center;
}
@media (min-width: 1200px){#s-fce77d3e-cab1-4006-b769-f32a18b8d5aa {
  display: none;
}
#s-fce77d3e-cab1-4006-b769-f32a18b8d5aa, #wrap-s-fce77d3e-cab1-4006-b769-f32a18b8d5aa { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fce77d3e-cab1-4006-b769-f32a18b8d5aa {
  display: none;
}
#s-fce77d3e-cab1-4006-b769-f32a18b8d5aa, #wrap-s-fce77d3e-cab1-4006-b769-f32a18b8d5aa { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-fce77d3e-cab1-4006-b769-f32a18b8d5aa {
  display: none;
}
#s-fce77d3e-cab1-4006-b769-f32a18b8d5aa, #wrap-s-fce77d3e-cab1-4006-b769-f32a18b8d5aa { display: none !important; }}


.shg-image-margin-container-s-fce77d3e-cab1-4006-b769-f32a18b8d5aa {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-fce77d3e-cab1-4006-b769-f32a18b8d5aa {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fce77d3e-cab1-4006-b769-f32a18b8d5aa .shg-image-content-wrapper {
      aspect-ratio: 1720/6152;
      width: 100%;
      height: 100%;
    }

    #s-fce77d3e-cab1-4006-b769-f32a18b8d5aa .shogun-image-link {
      aspect-ratio: 1720/6152;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fce77d3e-cab1-4006-b769-f32a18b8d5aa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fce77d3e-cab1-4006-b769-f32a18b8d5aa img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image {
    
    
  }


.s-fce77d3e-cab1-4006-b769-f32a18b8d5aa .shogun-image-content {
  
    align-items: center;
  
}

.s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa {
      --shg-aspect-ratio: calc(1720/6152); 
    }

    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container {
      position: relative;
    }

    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-fce77d3e-cab1-4006-b769-f32a18b8d5aa {
  
  
  
  
}

#s-fce77d3e-cab1-4006-b769-f32a18b8d5aa {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fce77d3e-cab1-4006-b769-f32a18b8d5aa .shg-image-content-wrapper {
      aspect-ratio: 1720/6152;
      width: 100%;
      height: 100%;
    }

    #s-fce77d3e-cab1-4006-b769-f32a18b8d5aa .shogun-image-link {
      aspect-ratio: 1720/6152;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fce77d3e-cab1-4006-b769-f32a18b8d5aa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fce77d3e-cab1-4006-b769-f32a18b8d5aa img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image {
    
    
  }


.s-fce77d3e-cab1-4006-b769-f32a18b8d5aa .shogun-image-content {
  
    align-items: center;
  
}

.s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa {
      --shg-aspect-ratio: calc(1720/6152); 
    }

    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container {
      position: relative;
    }

    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-fce77d3e-cab1-4006-b769-f32a18b8d5aa {
  
  
  
  
}

#s-fce77d3e-cab1-4006-b769-f32a18b8d5aa {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fce77d3e-cab1-4006-b769-f32a18b8d5aa .shg-image-content-wrapper {
      aspect-ratio: 1720/6152;
      width: 100%;
      height: 100%;
    }

    #s-fce77d3e-cab1-4006-b769-f32a18b8d5aa .shogun-image-link {
      aspect-ratio: 1720/6152;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fce77d3e-cab1-4006-b769-f32a18b8d5aa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fce77d3e-cab1-4006-b769-f32a18b8d5aa img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image {
    
    
  }


.s-fce77d3e-cab1-4006-b769-f32a18b8d5aa .shogun-image-content {
  
    align-items: center;
  
}

.s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa {
      --shg-aspect-ratio: calc(1720/6152); 
    }

    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container {
      position: relative;
    }

    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-fce77d3e-cab1-4006-b769-f32a18b8d5aa {
  
  
  
  
}

#s-fce77d3e-cab1-4006-b769-f32a18b8d5aa {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fce77d3e-cab1-4006-b769-f32a18b8d5aa .shg-image-content-wrapper {
      aspect-ratio: 1720/6152;
      width: 100%;
      height: 100%;
    }

    #s-fce77d3e-cab1-4006-b769-f32a18b8d5aa .shogun-image-link {
      aspect-ratio: 1720/6152;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fce77d3e-cab1-4006-b769-f32a18b8d5aa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fce77d3e-cab1-4006-b769-f32a18b8d5aa img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image {
    
    
  }


.s-fce77d3e-cab1-4006-b769-f32a18b8d5aa .shogun-image-content {
  
    align-items: center;
  
}

.s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa {
      --shg-aspect-ratio: calc(1720/6152); 
    }

    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container {
      position: relative;
    }

    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-fce77d3e-cab1-4006-b769-f32a18b8d5aa {
  
  
  
  
}

#s-fce77d3e-cab1-4006-b769-f32a18b8d5aa {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fce77d3e-cab1-4006-b769-f32a18b8d5aa .shg-image-content-wrapper {
      aspect-ratio: 1720/6152;
      width: 100%;
      height: 100%;
    }

    #s-fce77d3e-cab1-4006-b769-f32a18b8d5aa .shogun-image-link {
      aspect-ratio: 1720/6152;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fce77d3e-cab1-4006-b769-f32a18b8d5aa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fce77d3e-cab1-4006-b769-f32a18b8d5aa img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image {
    
    
  }


.s-fce77d3e-cab1-4006-b769-f32a18b8d5aa .shogun-image-content {
  
    align-items: center;
  
}

.s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa {
      --shg-aspect-ratio: calc(1720/6152); 
    }

    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container {
      position: relative;
    }

    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fce77d3e-cab1-4006-b769-f32a18b8d5aa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-60fa6027-88d1-415d-b455-14821d4d1282 {
  margin-left: auto;
margin-right: auto;
max-width: 6920px;
aspect-ratio: 6920/4264;
text-align: center;
}
@media (max-width: 767px){#s-60fa6027-88d1-415d-b455-14821d4d1282 {
  display: none;
}
#s-60fa6027-88d1-415d-b455-14821d4d1282, #wrap-s-60fa6027-88d1-415d-b455-14821d4d1282 { display: none !important; }}


.shg-image-margin-container-s-60fa6027-88d1-415d-b455-14821d4d1282 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-60fa6027-88d1-415d-b455-14821d4d1282 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-60fa6027-88d1-415d-b455-14821d4d1282 .shg-image-content-wrapper {
      aspect-ratio: 6920/4264;
      width: 100%;
      height: 100%;
    }

    #s-60fa6027-88d1-415d-b455-14821d4d1282 .shogun-image-link {
      aspect-ratio: 6920/4264;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-60fa6027-88d1-415d-b455-14821d4d1282 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-60fa6027-88d1-415d-b455-14821d4d1282 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image {
    
    
  }


.s-60fa6027-88d1-415d-b455-14821d4d1282 .shogun-image-content {
  
    align-items: center;
  
}

.s-60fa6027-88d1-415d-b455-14821d4d1282.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60fa6027-88d1-415d-b455-14821d4d1282 {
      --shg-aspect-ratio: calc(6920/4264); 
    }

    .s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container {
      position: relative;
    }

    .s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60fa6027-88d1-415d-b455-14821d4d1282 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-60fa6027-88d1-415d-b455-14821d4d1282 {
  
  
  
  
}

#s-60fa6027-88d1-415d-b455-14821d4d1282 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-60fa6027-88d1-415d-b455-14821d4d1282 .shg-image-content-wrapper {
      aspect-ratio: 6920/4264;
      width: 100%;
      height: 100%;
    }

    #s-60fa6027-88d1-415d-b455-14821d4d1282 .shogun-image-link {
      aspect-ratio: 6920/4264;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-60fa6027-88d1-415d-b455-14821d4d1282 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-60fa6027-88d1-415d-b455-14821d4d1282 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image {
    
    
  }


.s-60fa6027-88d1-415d-b455-14821d4d1282 .shogun-image-content {
  
    align-items: center;
  
}

.s-60fa6027-88d1-415d-b455-14821d4d1282.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60fa6027-88d1-415d-b455-14821d4d1282 {
      --shg-aspect-ratio: calc(6920/4264); 
    }

    .s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container {
      position: relative;
    }

    .s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60fa6027-88d1-415d-b455-14821d4d1282 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-60fa6027-88d1-415d-b455-14821d4d1282 {
  
  
  
  
}

#s-60fa6027-88d1-415d-b455-14821d4d1282 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-60fa6027-88d1-415d-b455-14821d4d1282 .shg-image-content-wrapper {
      aspect-ratio: 6920/4264;
      width: 100%;
      height: 100%;
    }

    #s-60fa6027-88d1-415d-b455-14821d4d1282 .shogun-image-link {
      aspect-ratio: 6920/4264;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-60fa6027-88d1-415d-b455-14821d4d1282 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-60fa6027-88d1-415d-b455-14821d4d1282 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image {
    
    
  }


.s-60fa6027-88d1-415d-b455-14821d4d1282 .shogun-image-content {
  
    align-items: center;
  
}

.s-60fa6027-88d1-415d-b455-14821d4d1282.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60fa6027-88d1-415d-b455-14821d4d1282 {
      --shg-aspect-ratio: calc(6920/4264); 
    }

    .s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container {
      position: relative;
    }

    .s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60fa6027-88d1-415d-b455-14821d4d1282 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-60fa6027-88d1-415d-b455-14821d4d1282 {
  
  
  
  
}

#s-60fa6027-88d1-415d-b455-14821d4d1282 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-60fa6027-88d1-415d-b455-14821d4d1282 .shg-image-content-wrapper {
      aspect-ratio: 6920/4264;
      width: 100%;
      height: 100%;
    }

    #s-60fa6027-88d1-415d-b455-14821d4d1282 .shogun-image-link {
      aspect-ratio: 6920/4264;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-60fa6027-88d1-415d-b455-14821d4d1282 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-60fa6027-88d1-415d-b455-14821d4d1282 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image {
    
    
  }


.s-60fa6027-88d1-415d-b455-14821d4d1282 .shogun-image-content {
  
    align-items: center;
  
}

.s-60fa6027-88d1-415d-b455-14821d4d1282.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60fa6027-88d1-415d-b455-14821d4d1282 {
      --shg-aspect-ratio: calc(6920/4264); 
    }

    .s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container {
      position: relative;
    }

    .s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60fa6027-88d1-415d-b455-14821d4d1282 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-60fa6027-88d1-415d-b455-14821d4d1282 {
  
  
  
  
}

#s-60fa6027-88d1-415d-b455-14821d4d1282 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-60fa6027-88d1-415d-b455-14821d4d1282 .shg-image-content-wrapper {
      aspect-ratio: 6920/4264;
      width: 100%;
      height: 100%;
    }

    #s-60fa6027-88d1-415d-b455-14821d4d1282 .shogun-image-link {
      aspect-ratio: 6920/4264;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-60fa6027-88d1-415d-b455-14821d4d1282 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-60fa6027-88d1-415d-b455-14821d4d1282 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image {
    
    
  }


.s-60fa6027-88d1-415d-b455-14821d4d1282 .shogun-image-content {
  
    align-items: center;
  
}

.s-60fa6027-88d1-415d-b455-14821d4d1282.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60fa6027-88d1-415d-b455-14821d4d1282 {
      --shg-aspect-ratio: calc(6920/4264); 
    }

    .s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container {
      position: relative;
    }

    .s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60fa6027-88d1-415d-b455-14821d4d1282.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60fa6027-88d1-415d-b455-14821d4d1282 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-d9a4ab58-059e-4067-ba6b-f010f3954997 {
  margin-left: auto;
margin-right: auto;
max-width: 1720px;
aspect-ratio: 1720/3524;
text-align: center;
}
@media (min-width: 1200px){#s-d9a4ab58-059e-4067-ba6b-f010f3954997 {
  display: none;
}
#s-d9a4ab58-059e-4067-ba6b-f010f3954997, #wrap-s-d9a4ab58-059e-4067-ba6b-f010f3954997 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d9a4ab58-059e-4067-ba6b-f010f3954997 {
  display: none;
}
#s-d9a4ab58-059e-4067-ba6b-f010f3954997, #wrap-s-d9a4ab58-059e-4067-ba6b-f010f3954997 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d9a4ab58-059e-4067-ba6b-f010f3954997 {
  display: none;
}
#s-d9a4ab58-059e-4067-ba6b-f010f3954997, #wrap-s-d9a4ab58-059e-4067-ba6b-f010f3954997 { display: none !important; }}


.shg-image-margin-container-s-d9a4ab58-059e-4067-ba6b-f010f3954997 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-d9a4ab58-059e-4067-ba6b-f010f3954997 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9a4ab58-059e-4067-ba6b-f010f3954997 .shg-image-content-wrapper {
      aspect-ratio: 1720/3524;
      width: 100%;
      height: 100%;
    }

    #s-d9a4ab58-059e-4067-ba6b-f010f3954997 .shogun-image-link {
      aspect-ratio: 1720/3524;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9a4ab58-059e-4067-ba6b-f010f3954997 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9a4ab58-059e-4067-ba6b-f010f3954997 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image {
    
    
  }


.s-d9a4ab58-059e-4067-ba6b-f010f3954997 .shogun-image-content {
  
    align-items: center;
  
}

.s-d9a4ab58-059e-4067-ba6b-f010f3954997.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d9a4ab58-059e-4067-ba6b-f010f3954997 {
      --shg-aspect-ratio: calc(1720/3524); 
    }

    .s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container {
      position: relative;
    }

    .s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9a4ab58-059e-4067-ba6b-f010f3954997 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-d9a4ab58-059e-4067-ba6b-f010f3954997 {
  
  
  
  
}

#s-d9a4ab58-059e-4067-ba6b-f010f3954997 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9a4ab58-059e-4067-ba6b-f010f3954997 .shg-image-content-wrapper {
      aspect-ratio: 1720/3524;
      width: 100%;
      height: 100%;
    }

    #s-d9a4ab58-059e-4067-ba6b-f010f3954997 .shogun-image-link {
      aspect-ratio: 1720/3524;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9a4ab58-059e-4067-ba6b-f010f3954997 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9a4ab58-059e-4067-ba6b-f010f3954997 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image {
    
    
  }


.s-d9a4ab58-059e-4067-ba6b-f010f3954997 .shogun-image-content {
  
    align-items: center;
  
}

.s-d9a4ab58-059e-4067-ba6b-f010f3954997.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d9a4ab58-059e-4067-ba6b-f010f3954997 {
      --shg-aspect-ratio: calc(1720/3524); 
    }

    .s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container {
      position: relative;
    }

    .s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9a4ab58-059e-4067-ba6b-f010f3954997 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d9a4ab58-059e-4067-ba6b-f010f3954997 {
  
  
  
  
}

#s-d9a4ab58-059e-4067-ba6b-f010f3954997 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9a4ab58-059e-4067-ba6b-f010f3954997 .shg-image-content-wrapper {
      aspect-ratio: 1720/3524;
      width: 100%;
      height: 100%;
    }

    #s-d9a4ab58-059e-4067-ba6b-f010f3954997 .shogun-image-link {
      aspect-ratio: 1720/3524;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9a4ab58-059e-4067-ba6b-f010f3954997 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9a4ab58-059e-4067-ba6b-f010f3954997 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image {
    
    
  }


.s-d9a4ab58-059e-4067-ba6b-f010f3954997 .shogun-image-content {
  
    align-items: center;
  
}

.s-d9a4ab58-059e-4067-ba6b-f010f3954997.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d9a4ab58-059e-4067-ba6b-f010f3954997 {
      --shg-aspect-ratio: calc(1720/3524); 
    }

    .s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container {
      position: relative;
    }

    .s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9a4ab58-059e-4067-ba6b-f010f3954997 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d9a4ab58-059e-4067-ba6b-f010f3954997 {
  
  
  
  
}

#s-d9a4ab58-059e-4067-ba6b-f010f3954997 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9a4ab58-059e-4067-ba6b-f010f3954997 .shg-image-content-wrapper {
      aspect-ratio: 1720/3524;
      width: 100%;
      height: 100%;
    }

    #s-d9a4ab58-059e-4067-ba6b-f010f3954997 .shogun-image-link {
      aspect-ratio: 1720/3524;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9a4ab58-059e-4067-ba6b-f010f3954997 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9a4ab58-059e-4067-ba6b-f010f3954997 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image {
    
    
  }


.s-d9a4ab58-059e-4067-ba6b-f010f3954997 .shogun-image-content {
  
    align-items: center;
  
}

.s-d9a4ab58-059e-4067-ba6b-f010f3954997.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d9a4ab58-059e-4067-ba6b-f010f3954997 {
      --shg-aspect-ratio: calc(1720/3524); 
    }

    .s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container {
      position: relative;
    }

    .s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9a4ab58-059e-4067-ba6b-f010f3954997 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d9a4ab58-059e-4067-ba6b-f010f3954997 {
  
  
  
  
}

#s-d9a4ab58-059e-4067-ba6b-f010f3954997 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9a4ab58-059e-4067-ba6b-f010f3954997 .shg-image-content-wrapper {
      aspect-ratio: 1720/3524;
      width: 100%;
      height: 100%;
    }

    #s-d9a4ab58-059e-4067-ba6b-f010f3954997 .shogun-image-link {
      aspect-ratio: 1720/3524;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9a4ab58-059e-4067-ba6b-f010f3954997 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9a4ab58-059e-4067-ba6b-f010f3954997 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image {
    
    
  }


.s-d9a4ab58-059e-4067-ba6b-f010f3954997 .shogun-image-content {
  
    align-items: center;
  
}

.s-d9a4ab58-059e-4067-ba6b-f010f3954997.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d9a4ab58-059e-4067-ba6b-f010f3954997 {
      --shg-aspect-ratio: calc(1720/3524); 
    }

    .s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container {
      position: relative;
    }

    .s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9a4ab58-059e-4067-ba6b-f010f3954997.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9a4ab58-059e-4067-ba6b-f010f3954997 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-4542090a-5d66-4f9d-beba-b585d4abcd7a {
  margin-top: 35px;
margin-bottom: 35px;
min-height: 50px;
}








#s-4542090a-5d66-4f9d-beba-b585d4abcd7a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4542090a-5d66-4f9d-beba-b585d4abcd7a.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;
  
  
  text-transform: none;
  
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

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

#s-4fb1a4be-b3fe-4b67-b747-8cbee0e23282 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4fb1a4be-b3fe-4b67-b747-8cbee0e23282 .shogun-heading-component h1 {
  color: rgba(44, 86, 125, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



.shogun-image-container {
  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;
}

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

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

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

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

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

.shogun-image-content > div {
  width: 100%;
}

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

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

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

.shogun-image.hover {
  opacity: 0;
  z-index: 200;
  position: absolute;
  left: 0;
  top: 0;
}

.shogun-image.hover:hover {
  opacity: 1;
}

#s-ffa60d88-4262-4889-94ac-0551bf521a78 {
  margin-bottom: 10px;
text-align: center;
}







  #s-ffa60d88-4262-4889-94ac-0551bf521a78 img.shogun-image {
    

    
    
    
  }


#s-ffa60d88-4262-4889-94ac-0551bf521a78 .shogun-image-content {
  
    align-items: center;
  
}

#s-7c81a53b-f2dd-484e-8ee3-a4d3893ebbf3 {
  padding-left: 10%;
padding-right: 10%;
}
@media (min-width: 768px) and (max-width: 991px){#s-7c81a53b-f2dd-484e-8ee3-a4d3893ebbf3 {
  display: none;
}
#s-7c81a53b-f2dd-484e-8ee3-a4d3893ebbf3, #wrap-s-7c81a53b-f2dd-484e-8ee3-a4d3893ebbf3 { display: none !important; }}
@media (min-width: 0px) {
[id="s-7c81a53b-f2dd-484e-8ee3-a4d3893ebbf3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7c81a53b-f2dd-484e-8ee3-a4d3893ebbf3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-7c81a53b-f2dd-484e-8ee3-a4d3893ebbf3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-7c81a53b-f2dd-484e-8ee3-a4d3893ebbf3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-12b79c23-361e-4a00-8b31-a6974443ea36 {
  min-height: 50px;
}








#s-12b79c23-361e-4a00-8b31-a6974443ea36 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-12b79c23-361e-4a00-8b31-a6974443ea36.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-09ee804c-4a11-4698-87ef-f972b181c453 {
  min-height: 50px;
}








#s-09ee804c-4a11-4698-87ef-f972b181c453 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-09ee804c-4a11-4698-87ef-f972b181c453.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f4ac0082-57e4-4df1-82ee-f99965943b66 {
  max-width: 1146px;
aspect-ratio: 1146/774;
text-align: center;
}



.shg-image-margin-container-s-f4ac0082-57e4-4df1-82ee-f99965943b66 {
  
  
  
  
}

#s-f4ac0082-57e4-4df1-82ee-f99965943b66 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f4ac0082-57e4-4df1-82ee-f99965943b66 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-f4ac0082-57e4-4df1-82ee-f99965943b66 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f4ac0082-57e4-4df1-82ee-f99965943b66 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f4ac0082-57e4-4df1-82ee-f99965943b66 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image {
    
    
  }


.s-f4ac0082-57e4-4df1-82ee-f99965943b66 .shogun-image-content {
  
    align-items: center;
  
}

.s-f4ac0082-57e4-4df1-82ee-f99965943b66.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f4ac0082-57e4-4df1-82ee-f99965943b66 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container {
      position: relative;
    }

    .s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f4ac0082-57e4-4df1-82ee-f99965943b66 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-f4ac0082-57e4-4df1-82ee-f99965943b66 {
  
  
  
  
}

#s-f4ac0082-57e4-4df1-82ee-f99965943b66 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f4ac0082-57e4-4df1-82ee-f99965943b66 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-f4ac0082-57e4-4df1-82ee-f99965943b66 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f4ac0082-57e4-4df1-82ee-f99965943b66 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f4ac0082-57e4-4df1-82ee-f99965943b66 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image {
    
    
  }


.s-f4ac0082-57e4-4df1-82ee-f99965943b66 .shogun-image-content {
  
    align-items: center;
  
}

.s-f4ac0082-57e4-4df1-82ee-f99965943b66.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f4ac0082-57e4-4df1-82ee-f99965943b66 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container {
      position: relative;
    }

    .s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f4ac0082-57e4-4df1-82ee-f99965943b66 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-f4ac0082-57e4-4df1-82ee-f99965943b66 {
  
  
  
  
}

#s-f4ac0082-57e4-4df1-82ee-f99965943b66 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f4ac0082-57e4-4df1-82ee-f99965943b66 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-f4ac0082-57e4-4df1-82ee-f99965943b66 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f4ac0082-57e4-4df1-82ee-f99965943b66 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f4ac0082-57e4-4df1-82ee-f99965943b66 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image {
    
    
  }


.s-f4ac0082-57e4-4df1-82ee-f99965943b66 .shogun-image-content {
  
    align-items: center;
  
}

.s-f4ac0082-57e4-4df1-82ee-f99965943b66.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f4ac0082-57e4-4df1-82ee-f99965943b66 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container {
      position: relative;
    }

    .s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f4ac0082-57e4-4df1-82ee-f99965943b66 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-f4ac0082-57e4-4df1-82ee-f99965943b66 {
  
  
  
  
}

#s-f4ac0082-57e4-4df1-82ee-f99965943b66 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f4ac0082-57e4-4df1-82ee-f99965943b66 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-f4ac0082-57e4-4df1-82ee-f99965943b66 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f4ac0082-57e4-4df1-82ee-f99965943b66 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f4ac0082-57e4-4df1-82ee-f99965943b66 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image {
    
    
  }


.s-f4ac0082-57e4-4df1-82ee-f99965943b66 .shogun-image-content {
  
    align-items: center;
  
}

.s-f4ac0082-57e4-4df1-82ee-f99965943b66.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f4ac0082-57e4-4df1-82ee-f99965943b66 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container {
      position: relative;
    }

    .s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f4ac0082-57e4-4df1-82ee-f99965943b66 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-f4ac0082-57e4-4df1-82ee-f99965943b66 {
  
  
  
  
}

#s-f4ac0082-57e4-4df1-82ee-f99965943b66 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f4ac0082-57e4-4df1-82ee-f99965943b66 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-f4ac0082-57e4-4df1-82ee-f99965943b66 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f4ac0082-57e4-4df1-82ee-f99965943b66 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f4ac0082-57e4-4df1-82ee-f99965943b66 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image {
    
    
  }


.s-f4ac0082-57e4-4df1-82ee-f99965943b66 .shogun-image-content {
  
    align-items: center;
  
}

.s-f4ac0082-57e4-4df1-82ee-f99965943b66.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f4ac0082-57e4-4df1-82ee-f99965943b66 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container {
      position: relative;
    }

    .s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f4ac0082-57e4-4df1-82ee-f99965943b66.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f4ac0082-57e4-4df1-82ee-f99965943b66 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-efaa6119-139a-459f-82da-de14aae223ae {
  margin-top: 20px;
margin-bottom: 0px;
}

#s-2b18b9e4-2406-4d42-a4e9-4f9ee8a1e1b9 {
  margin-top: 0px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
}

#s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 {
  max-width: 1146px;
aspect-ratio: 1146/774;
text-align: center;
}



.shg-image-margin-container-s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 {
  
  
  
  
}

#s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image {
    
    
  }


.s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 .shogun-image-content {
  
    align-items: center;
  
}

.s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container {
      position: relative;
    }

    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 {
  
  
  
  
}

#s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image {
    
    
  }


.s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 .shogun-image-content {
  
    align-items: center;
  
}

.s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container {
      position: relative;
    }

    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 {
  
  
  
  
}

#s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image {
    
    
  }


.s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 .shogun-image-content {
  
    align-items: center;
  
}

.s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container {
      position: relative;
    }

    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 {
  
  
  
  
}

#s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image {
    
    
  }


.s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 .shogun-image-content {
  
    align-items: center;
  
}

.s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container {
      position: relative;
    }

    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 {
  
  
  
  
}

#s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image {
    
    
  }


.s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 .shogun-image-content {
  
    align-items: center;
  
}

.s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container {
      position: relative;
    }

    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44e1a1cb-44c1-4356-ac1a-2ce3b608e783 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-cfc2326b-a03e-496a-b970-995634bba9ea {
  margin-top: 0px;
margin-bottom: 0px;
padding-left: 10%;
padding-right: 10%;
}

#s-06be27d5-46dd-4f0b-9dc5-37f6b6af98e3 {
  margin-left: 5%;
margin-bottom: 10px;
margin-right: 5%;
}

#s-8b318e53-d461-4b54-9fe0-1c3d7aa395c9 {
  margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
}

#s-c8aa6a8d-5900-4531-a530-e6149d307d0f {
  max-width: 1146px;
aspect-ratio: 1146/774;
text-align: center;
}



.shg-image-margin-container-s-c8aa6a8d-5900-4531-a530-e6149d307d0f {
  
  
  
  
}

#s-c8aa6a8d-5900-4531-a530-e6149d307d0f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c8aa6a8d-5900-4531-a530-e6149d307d0f .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-c8aa6a8d-5900-4531-a530-e6149d307d0f .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c8aa6a8d-5900-4531-a530-e6149d307d0f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c8aa6a8d-5900-4531-a530-e6149d307d0f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image {
    
    
  }


.s-c8aa6a8d-5900-4531-a530-e6149d307d0f .shogun-image-content {
  
    align-items: center;
  
}

.s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container {
      position: relative;
    }

    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-c8aa6a8d-5900-4531-a530-e6149d307d0f {
  
  
  
  
}

#s-c8aa6a8d-5900-4531-a530-e6149d307d0f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c8aa6a8d-5900-4531-a530-e6149d307d0f .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-c8aa6a8d-5900-4531-a530-e6149d307d0f .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c8aa6a8d-5900-4531-a530-e6149d307d0f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c8aa6a8d-5900-4531-a530-e6149d307d0f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image {
    
    
  }


.s-c8aa6a8d-5900-4531-a530-e6149d307d0f .shogun-image-content {
  
    align-items: center;
  
}

.s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container {
      position: relative;
    }

    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c8aa6a8d-5900-4531-a530-e6149d307d0f {
  
  
  
  
}

#s-c8aa6a8d-5900-4531-a530-e6149d307d0f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c8aa6a8d-5900-4531-a530-e6149d307d0f .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-c8aa6a8d-5900-4531-a530-e6149d307d0f .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c8aa6a8d-5900-4531-a530-e6149d307d0f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c8aa6a8d-5900-4531-a530-e6149d307d0f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image {
    
    
  }


.s-c8aa6a8d-5900-4531-a530-e6149d307d0f .shogun-image-content {
  
    align-items: center;
  
}

.s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container {
      position: relative;
    }

    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c8aa6a8d-5900-4531-a530-e6149d307d0f {
  
  
  
  
}

#s-c8aa6a8d-5900-4531-a530-e6149d307d0f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c8aa6a8d-5900-4531-a530-e6149d307d0f .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-c8aa6a8d-5900-4531-a530-e6149d307d0f .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c8aa6a8d-5900-4531-a530-e6149d307d0f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c8aa6a8d-5900-4531-a530-e6149d307d0f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image {
    
    
  }


.s-c8aa6a8d-5900-4531-a530-e6149d307d0f .shogun-image-content {
  
    align-items: center;
  
}

.s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container {
      position: relative;
    }

    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c8aa6a8d-5900-4531-a530-e6149d307d0f {
  
  
  
  
}

#s-c8aa6a8d-5900-4531-a530-e6149d307d0f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c8aa6a8d-5900-4531-a530-e6149d307d0f .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-c8aa6a8d-5900-4531-a530-e6149d307d0f .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c8aa6a8d-5900-4531-a530-e6149d307d0f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c8aa6a8d-5900-4531-a530-e6149d307d0f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image {
    
    
  }


.s-c8aa6a8d-5900-4531-a530-e6149d307d0f .shogun-image-content {
  
    align-items: center;
  
}

.s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container {
      position: relative;
    }

    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c8aa6a8d-5900-4531-a530-e6149d307d0f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-de559f72-faed-49bc-9f7d-5dea21e944c0 {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-762715d3-5d5b-4672-be1b-c0119e29af38 {
  margin-top: 0px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 5%;
}

#s-7b659445-4314-4d59-b0e1-d8ff4ac0f7cd {
  padding-left: 1%;
padding-right: 1%;
}
@media (min-width: 1200px){#s-7b659445-4314-4d59-b0e1-d8ff4ac0f7cd {
  display: none;
}
#s-7b659445-4314-4d59-b0e1-d8ff4ac0f7cd, #wrap-s-7b659445-4314-4d59-b0e1-d8ff4ac0f7cd { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7b659445-4314-4d59-b0e1-d8ff4ac0f7cd {
  display: none;
}
#s-7b659445-4314-4d59-b0e1-d8ff4ac0f7cd, #wrap-s-7b659445-4314-4d59-b0e1-d8ff4ac0f7cd { display: none !important; }}@media (max-width: 767px){#s-7b659445-4314-4d59-b0e1-d8ff4ac0f7cd {
  display: none;
}
#s-7b659445-4314-4d59-b0e1-d8ff4ac0f7cd, #wrap-s-7b659445-4314-4d59-b0e1-d8ff4ac0f7cd { display: none !important; }}
@media (min-width: 0px) {
[id="s-7b659445-4314-4d59-b0e1-d8ff4ac0f7cd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7b659445-4314-4d59-b0e1-d8ff4ac0f7cd"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-7b659445-4314-4d59-b0e1-d8ff4ac0f7cd"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-7b659445-4314-4d59-b0e1-d8ff4ac0f7cd"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-5306f784-1ba7-4a2f-bdaf-befc83de3b84 {
  min-height: 50px;
}








#s-5306f784-1ba7-4a2f-bdaf-befc83de3b84 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5306f784-1ba7-4a2f-bdaf-befc83de3b84.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d53be7b8-8aac-488c-b5fa-d1dd22c11e3e {
  min-height: 50px;
}








#s-d53be7b8-8aac-488c-b5fa-d1dd22c11e3e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d53be7b8-8aac-488c-b5fa-d1dd22c11e3e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a1c6edc5-16bd-448e-806e-ae2739af5393 {
  max-width: 1146px;
aspect-ratio: 1146/774;
text-align: center;
}



.shg-image-margin-container-s-a1c6edc5-16bd-448e-806e-ae2739af5393 {
  
  
  
  
}

#s-a1c6edc5-16bd-448e-806e-ae2739af5393 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a1c6edc5-16bd-448e-806e-ae2739af5393 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-a1c6edc5-16bd-448e-806e-ae2739af5393 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a1c6edc5-16bd-448e-806e-ae2739af5393 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a1c6edc5-16bd-448e-806e-ae2739af5393 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image {
    
    
  }


.s-a1c6edc5-16bd-448e-806e-ae2739af5393 .shogun-image-content {
  
    align-items: center;
  
}

.s-a1c6edc5-16bd-448e-806e-ae2739af5393.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1c6edc5-16bd-448e-806e-ae2739af5393 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container {
      position: relative;
    }

    .s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1c6edc5-16bd-448e-806e-ae2739af5393 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-a1c6edc5-16bd-448e-806e-ae2739af5393 {
  
  
  
  
}

#s-a1c6edc5-16bd-448e-806e-ae2739af5393 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a1c6edc5-16bd-448e-806e-ae2739af5393 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-a1c6edc5-16bd-448e-806e-ae2739af5393 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a1c6edc5-16bd-448e-806e-ae2739af5393 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a1c6edc5-16bd-448e-806e-ae2739af5393 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image {
    
    
  }


.s-a1c6edc5-16bd-448e-806e-ae2739af5393 .shogun-image-content {
  
    align-items: center;
  
}

.s-a1c6edc5-16bd-448e-806e-ae2739af5393.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1c6edc5-16bd-448e-806e-ae2739af5393 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container {
      position: relative;
    }

    .s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1c6edc5-16bd-448e-806e-ae2739af5393 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a1c6edc5-16bd-448e-806e-ae2739af5393 {
  
  
  
  
}

#s-a1c6edc5-16bd-448e-806e-ae2739af5393 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a1c6edc5-16bd-448e-806e-ae2739af5393 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-a1c6edc5-16bd-448e-806e-ae2739af5393 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a1c6edc5-16bd-448e-806e-ae2739af5393 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a1c6edc5-16bd-448e-806e-ae2739af5393 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image {
    
    
  }


.s-a1c6edc5-16bd-448e-806e-ae2739af5393 .shogun-image-content {
  
    align-items: center;
  
}

.s-a1c6edc5-16bd-448e-806e-ae2739af5393.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1c6edc5-16bd-448e-806e-ae2739af5393 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container {
      position: relative;
    }

    .s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1c6edc5-16bd-448e-806e-ae2739af5393 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a1c6edc5-16bd-448e-806e-ae2739af5393 {
  
  
  
  
}

#s-a1c6edc5-16bd-448e-806e-ae2739af5393 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a1c6edc5-16bd-448e-806e-ae2739af5393 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-a1c6edc5-16bd-448e-806e-ae2739af5393 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a1c6edc5-16bd-448e-806e-ae2739af5393 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a1c6edc5-16bd-448e-806e-ae2739af5393 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image {
    
    
  }


.s-a1c6edc5-16bd-448e-806e-ae2739af5393 .shogun-image-content {
  
    align-items: center;
  
}

.s-a1c6edc5-16bd-448e-806e-ae2739af5393.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1c6edc5-16bd-448e-806e-ae2739af5393 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container {
      position: relative;
    }

    .s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1c6edc5-16bd-448e-806e-ae2739af5393 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a1c6edc5-16bd-448e-806e-ae2739af5393 {
  
  
  
  
}

#s-a1c6edc5-16bd-448e-806e-ae2739af5393 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a1c6edc5-16bd-448e-806e-ae2739af5393 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-a1c6edc5-16bd-448e-806e-ae2739af5393 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a1c6edc5-16bd-448e-806e-ae2739af5393 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a1c6edc5-16bd-448e-806e-ae2739af5393 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image {
    
    
  }


.s-a1c6edc5-16bd-448e-806e-ae2739af5393 .shogun-image-content {
  
    align-items: center;
  
}

.s-a1c6edc5-16bd-448e-806e-ae2739af5393.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1c6edc5-16bd-448e-806e-ae2739af5393 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container {
      position: relative;
    }

    .s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1c6edc5-16bd-448e-806e-ae2739af5393.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1c6edc5-16bd-448e-806e-ae2739af5393 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-e841801d-c5e7-40b1-bc8f-36164ee219e4 {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-7a9b971a-10fb-45b8-a0cf-aa33d0b23beb {
  margin-top: 0px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
}

#s-a57300c9-3907-4e91-97fc-6ade6ea23872 {
  max-width: 1146px;
aspect-ratio: 1146/774;
text-align: center;
}



.shg-image-margin-container-s-a57300c9-3907-4e91-97fc-6ade6ea23872 {
  
  
  
  
}

#s-a57300c9-3907-4e91-97fc-6ade6ea23872 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a57300c9-3907-4e91-97fc-6ade6ea23872 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-a57300c9-3907-4e91-97fc-6ade6ea23872 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a57300c9-3907-4e91-97fc-6ade6ea23872 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a57300c9-3907-4e91-97fc-6ade6ea23872 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image {
    
    
  }


.s-a57300c9-3907-4e91-97fc-6ade6ea23872 .shogun-image-content {
  
    align-items: center;
  
}

.s-a57300c9-3907-4e91-97fc-6ade6ea23872.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a57300c9-3907-4e91-97fc-6ade6ea23872 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container {
      position: relative;
    }

    .s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a57300c9-3907-4e91-97fc-6ade6ea23872 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-a57300c9-3907-4e91-97fc-6ade6ea23872 {
  
  
  
  
}

#s-a57300c9-3907-4e91-97fc-6ade6ea23872 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a57300c9-3907-4e91-97fc-6ade6ea23872 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-a57300c9-3907-4e91-97fc-6ade6ea23872 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a57300c9-3907-4e91-97fc-6ade6ea23872 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a57300c9-3907-4e91-97fc-6ade6ea23872 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image {
    
    
  }


.s-a57300c9-3907-4e91-97fc-6ade6ea23872 .shogun-image-content {
  
    align-items: center;
  
}

.s-a57300c9-3907-4e91-97fc-6ade6ea23872.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a57300c9-3907-4e91-97fc-6ade6ea23872 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container {
      position: relative;
    }

    .s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a57300c9-3907-4e91-97fc-6ade6ea23872 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a57300c9-3907-4e91-97fc-6ade6ea23872 {
  
  
  
  
}

#s-a57300c9-3907-4e91-97fc-6ade6ea23872 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a57300c9-3907-4e91-97fc-6ade6ea23872 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-a57300c9-3907-4e91-97fc-6ade6ea23872 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a57300c9-3907-4e91-97fc-6ade6ea23872 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a57300c9-3907-4e91-97fc-6ade6ea23872 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image {
    
    
  }


.s-a57300c9-3907-4e91-97fc-6ade6ea23872 .shogun-image-content {
  
    align-items: center;
  
}

.s-a57300c9-3907-4e91-97fc-6ade6ea23872.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a57300c9-3907-4e91-97fc-6ade6ea23872 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container {
      position: relative;
    }

    .s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a57300c9-3907-4e91-97fc-6ade6ea23872 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a57300c9-3907-4e91-97fc-6ade6ea23872 {
  
  
  
  
}

#s-a57300c9-3907-4e91-97fc-6ade6ea23872 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a57300c9-3907-4e91-97fc-6ade6ea23872 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-a57300c9-3907-4e91-97fc-6ade6ea23872 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a57300c9-3907-4e91-97fc-6ade6ea23872 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a57300c9-3907-4e91-97fc-6ade6ea23872 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image {
    
    
  }


.s-a57300c9-3907-4e91-97fc-6ade6ea23872 .shogun-image-content {
  
    align-items: center;
  
}

.s-a57300c9-3907-4e91-97fc-6ade6ea23872.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a57300c9-3907-4e91-97fc-6ade6ea23872 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container {
      position: relative;
    }

    .s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a57300c9-3907-4e91-97fc-6ade6ea23872 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a57300c9-3907-4e91-97fc-6ade6ea23872 {
  
  
  
  
}

#s-a57300c9-3907-4e91-97fc-6ade6ea23872 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a57300c9-3907-4e91-97fc-6ade6ea23872 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-a57300c9-3907-4e91-97fc-6ade6ea23872 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a57300c9-3907-4e91-97fc-6ade6ea23872 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a57300c9-3907-4e91-97fc-6ade6ea23872 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image {
    
    
  }


.s-a57300c9-3907-4e91-97fc-6ade6ea23872 .shogun-image-content {
  
    align-items: center;
  
}

.s-a57300c9-3907-4e91-97fc-6ade6ea23872.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a57300c9-3907-4e91-97fc-6ade6ea23872 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container {
      position: relative;
    }

    .s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a57300c9-3907-4e91-97fc-6ade6ea23872.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a57300c9-3907-4e91-97fc-6ade6ea23872 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-b41d800d-3ef6-4b9d-bb13-4436fff9d224 {
  margin-top: 0px;
margin-bottom: 0px;
padding-left: 10%;
padding-right: 10%;
}

#s-ad225093-248c-41d0-84f2-793427b07686 {
  margin-left: 5%;
margin-bottom: 10px;
margin-right: 5%;
}

#s-b9b7c3fe-0180-418b-bcde-22cee217bde8 {
  margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
}

#s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 {
  max-width: 1146px;
aspect-ratio: 1146/774;
text-align: center;
}



.shg-image-margin-container-s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 {
  
  
  
  
}

#s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image {
    
    
  }


.s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 .shogun-image-content {
  
    align-items: center;
  
}

.s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container {
      position: relative;
    }

    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 {
  
  
  
  
}

#s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image {
    
    
  }


.s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 .shogun-image-content {
  
    align-items: center;
  
}

.s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container {
      position: relative;
    }

    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 {
  
  
  
  
}

#s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image {
    
    
  }


.s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 .shogun-image-content {
  
    align-items: center;
  
}

.s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container {
      position: relative;
    }

    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 {
  
  
  
  
}

#s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image {
    
    
  }


.s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 .shogun-image-content {
  
    align-items: center;
  
}

.s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container {
      position: relative;
    }

    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 {
  
  
  
  
}

#s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 .shg-image-content-wrapper {
      aspect-ratio: 1146/774;
      width: 100%;
      height: 100%;
    }

    #s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 .shogun-image-link {
      aspect-ratio: 1146/774;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image {
    
    
  }


.s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 .shogun-image-content {
  
    align-items: center;
  
}

.s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 {
      --shg-aspect-ratio: calc(1146/774); 
    }

    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container {
      position: relative;
    }

    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8c15cc09-e668-4889-ac5b-a0b49a7ee009 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-d57c204e-2100-46d3-9397-abd5fdf64e53 {
  margin-top: 0px;
margin-left: 5%;
margin-bottom: 0px;
}

#s-ba55d208-7a09-4692-90cf-05a91e8fda99 {
  margin-top: 0px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 5%;
}

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

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

#s-c6013e0f-04be-47a7-bb55-af44480da53a hr {
  border-top: 2px solid rgba(221, 221, 221, 0);
}

#s-69fc7a05-34f8-4688-bee0-39444742c567 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-69fc7a05-34f8-4688-bee0-39444742c567 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-69fc7a05-34f8-4688-bee0-39444742c567.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-840fdb71-412f-4943-a0f1-777486569e5f {
  margin-top: 40px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-840fdb71-412f-4943-a0f1-777486569e5f .shogun-heading-component h1 {
  color: rgba(44, 86, 125, 1);
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  
  line-height: 1.5em;
  letter-spacing: 4px;
  
}



#s-a59ef997-5d9c-4888-b43a-fbcba67dfd9d {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
}

@media (min-width: 0px) {
[id="s-a59ef997-5d9c-4888-b43a-fbcba67dfd9d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 25.0px);
}

}

@media (min-width: 768px) {
[id="s-a59ef997-5d9c-4888-b43a-fbcba67dfd9d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 37.5px);
}

}

@media (min-width: 992px) {
[id="s-a59ef997-5d9c-4888-b43a-fbcba67dfd9d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 37.5px);
}

}

@media (min-width: 1200px) {
[id="s-a59ef997-5d9c-4888-b43a-fbcba67dfd9d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 37.5px);
}

}

#s-c2df1307-80b8-4d4e-913b-1a6421a6542f {
  margin-left: auto;
margin-right: auto;
}

#s-02971bb5-8ac8-4577-93ee-fb1995d3d82d {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-02971bb5-8ac8-4577-93ee-fb1995d3d82d .shg-product-title-component h1 {
  
  font-weight:  500 ;
  font-family: Poppins;
  
  font-size: 20px;
  
  
  
}

#s-2a026cd8-ff87-44e4-95c3-a4660ab0eb0d {
  text-align: center;
}

#s-b7704742-7728-4716-83fb-69acddac879b {
  margin-left: auto;
margin-right: auto;
text-align: left;
}


.shg-c#s-b7704742-7728-4716-83fb-69acddac879b {
  max-width:  100%;
}

.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-image-zoom,
.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image,
.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-image-zoom,
.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-b7704742-7728-4716-83fb-69acddac879b {
  max-width:  100%;
}

.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-image-zoom,
.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image,
.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-image-zoom,
.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-b7704742-7728-4716-83fb-69acddac879b {
  max-width:  100%;
}

.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-image-zoom,
.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image,
.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-image-zoom,
.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-b7704742-7728-4716-83fb-69acddac879b {
  max-width:  100%;
}

.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-image-zoom,
.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image,
.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-image-zoom,
.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-b7704742-7728-4716-83fb-69acddac879b {
  max-width:  100%;
}

.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-image-zoom,
.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image,
.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-b7704742-7728-4716-83fb-69acddac879b .shg-image-zoom,
.shg-c#s-b7704742-7728-4716-83fb-69acddac879b img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-f12d3f9b-8efb-4789-8ad4-59c7fc0ce894 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-f12d3f9b-8efb-4789-8ad4-59c7fc0ce894 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 24px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-f12d3f9b-8efb-4789-8ad4-59c7fc0ce894 .shg-product-price {
  color: #000;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 24px;
}

#s-f12d3f9b-8efb-4789-8ad4-59c7fc0ce894 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-72c9c443-1b80-416e-b1e8-b6c23fd01a4d {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 10px;
background-color: rgba(44, 86, 125, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-72c9c443-1b80-416e-b1e8-b6c23fd01a4d:hover {border-radius: 10px !important;
background-color: rgba(120, 196, 222, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(44, 86, 125, 1) !important;}#s-72c9c443-1b80-416e-b1e8-b6c23fd01a4d:active {border-radius: 10px !important;
background-color: rgba(18, 101, 139, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}


#s-72c9c443-1b80-416e-b1e8-b6c23fd01a4d {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-72c9c443-1b80-416e-b1e8-b6c23fd01a4d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-72c9c443-1b80-416e-b1e8-b6c23fd01a4d.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-72c9c443-1b80-416e-b1e8-b6c23fd01a4d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-8629b7e6-6a57-4a63-a03e-070ccf6ef1e3 {
  margin-left: auto;
margin-right: auto;
}

#s-0d23e09b-cfc9-4745-bd24-5b1f8d2e72ff {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-0d23e09b-cfc9-4745-bd24-5b1f8d2e72ff .shg-product-title-component h1 {
  
  font-weight:  500 ;
  font-family: Poppins;
  
  font-size: 20px;
  
  
  
}

#s-a7722958-f439-43eb-bacb-26acb93a51bb {
  text-align: center;
}

#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d {
  margin-left: auto;
margin-right: auto;
text-align: left;
}


.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d {
  max-width:  100%;
}

.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-image-zoom,
.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image,
.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-image-zoom,
.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d {
  max-width:  100%;
}

.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-image-zoom,
.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image,
.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-image-zoom,
.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d {
  max-width:  100%;
}

.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-image-zoom,
.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image,
.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-image-zoom,
.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d {
  max-width:  100%;
}

.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-image-zoom,
.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image,
.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-image-zoom,
.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d {
  max-width:  100%;
}

.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-image-zoom,
.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image,
.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d .shg-image-zoom,
.shg-c#s-4aff9f22-49be-4814-bc3a-d0a03f51e46d img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-1a4f7469-f1c7-4032-bce2-d5f4344875af {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-1a4f7469-f1c7-4032-bce2-d5f4344875af .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 24px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-1a4f7469-f1c7-4032-bce2-d5f4344875af .shg-product-price {
  color: #000;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 24px;
}

#s-1a4f7469-f1c7-4032-bce2-d5f4344875af .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-8f5b768c-1bda-48b3-9485-fcfee83e8705 {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 10px;
background-color: rgba(44, 86, 125, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-8f5b768c-1bda-48b3-9485-fcfee83e8705:hover {border-radius: 10px !important;
background-color: rgba(120, 196, 222, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(44, 86, 125, 1) !important;}#s-8f5b768c-1bda-48b3-9485-fcfee83e8705:active {border-radius: 10px !important;
background-color: rgba(18, 101, 139, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}


#s-8f5b768c-1bda-48b3-9485-fcfee83e8705 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-8f5b768c-1bda-48b3-9485-fcfee83e8705.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8f5b768c-1bda-48b3-9485-fcfee83e8705.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-8f5b768c-1bda-48b3-9485-fcfee83e8705.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-e062f374-f595-40bc-9250-cc624e4b82dd {
  margin-left: auto;
margin-right: auto;
}

#s-c1bc8311-4298-4c73-9d3f-cab4bf6fd2a8 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-c1bc8311-4298-4c73-9d3f-cab4bf6fd2a8 {
  display: none;
}
#s-c1bc8311-4298-4c73-9d3f-cab4bf6fd2a8, #wrap-s-c1bc8311-4298-4c73-9d3f-cab4bf6fd2a8 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c1bc8311-4298-4c73-9d3f-cab4bf6fd2a8 {
  display: none;
}
#s-c1bc8311-4298-4c73-9d3f-cab4bf6fd2a8, #wrap-s-c1bc8311-4298-4c73-9d3f-cab4bf6fd2a8 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c1bc8311-4298-4c73-9d3f-cab4bf6fd2a8 {
  display: none;
}
#s-c1bc8311-4298-4c73-9d3f-cab4bf6fd2a8, #wrap-s-c1bc8311-4298-4c73-9d3f-cab4bf6fd2a8 { display: none !important; }}
#s-c1bc8311-4298-4c73-9d3f-cab4bf6fd2a8 hr {
  border-top: 0px solid #ddd;
}

#s-ca1be70c-89df-4b0f-8b2c-9eca9b369520 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-ca1be70c-89df-4b0f-8b2c-9eca9b369520 .shg-product-title-component h1 {
  
  font-weight:  500 ;
  font-family: Poppins;
  
  font-size: 20px;
  
  
  
}

#s-69ef8e51-5492-4cf9-ac31-9acd4cae7c3a {
  text-align: center;
}

#s-6319bc40-a9cc-4ad3-8328-138791605385 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}


.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 {
  max-width:  100%;
}

.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-image-zoom,
.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image,
.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-image-zoom,
.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 {
  max-width:  100%;
}

.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-image-zoom,
.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image,
.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-image-zoom,
.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 {
  max-width:  100%;
}

.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-image-zoom,
.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image,
.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-image-zoom,
.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 {
  max-width:  100%;
}

.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-image-zoom,
.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image,
.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-image-zoom,
.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 {
  max-width:  100%;
}

.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-image-zoom,
.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image,
.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 .shg-image-zoom,
.shg-c#s-6319bc40-a9cc-4ad3-8328-138791605385 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-c8103293-fc64-4c36-b8af-29f1030e598f {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-c8103293-fc64-4c36-b8af-29f1030e598f .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 24px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-c8103293-fc64-4c36-b8af-29f1030e598f .shg-product-price {
  color: #000;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 24px;
}

#s-c8103293-fc64-4c36-b8af-29f1030e598f .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-459d8d1e-7d88-4a06-97a1-58385660858a {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 10px;
background-color: rgba(44, 86, 125, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-459d8d1e-7d88-4a06-97a1-58385660858a:hover {border-radius: 10px !important;
background-color: rgba(120, 196, 222, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(44, 86, 125, 1) !important;}#s-459d8d1e-7d88-4a06-97a1-58385660858a:active {border-radius: 10px !important;
background-color: rgba(18, 101, 139, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}


#s-459d8d1e-7d88-4a06-97a1-58385660858a {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-459d8d1e-7d88-4a06-97a1-58385660858a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-459d8d1e-7d88-4a06-97a1-58385660858a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-459d8d1e-7d88-4a06-97a1-58385660858a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-023fda59-8739-4a7e-8fda-ae532d534f6b {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-023fda59-8739-4a7e-8fda-ae532d534f6b {
  display: none;
}
#s-023fda59-8739-4a7e-8fda-ae532d534f6b, #wrap-s-023fda59-8739-4a7e-8fda-ae532d534f6b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-023fda59-8739-4a7e-8fda-ae532d534f6b {
  display: none;
}
#s-023fda59-8739-4a7e-8fda-ae532d534f6b, #wrap-s-023fda59-8739-4a7e-8fda-ae532d534f6b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-023fda59-8739-4a7e-8fda-ae532d534f6b {
  display: none;
}
#s-023fda59-8739-4a7e-8fda-ae532d534f6b, #wrap-s-023fda59-8739-4a7e-8fda-ae532d534f6b { display: none !important; }}
#s-023fda59-8739-4a7e-8fda-ae532d534f6b hr {
  border-top: 0px solid #ddd;
}

#s-92c523be-0877-494f-83e3-47f3b8238781 {
  margin-left: auto;
margin-right: auto;
}

#s-72c66e87-57d8-48af-9433-9e57d7c39fca {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-72c66e87-57d8-48af-9433-9e57d7c39fca .shg-product-title-component h1 {
  
  font-weight:  500 ;
  font-family: Poppins;
  
  font-size: 20px;
  
  
  
}

#s-a50966f1-81de-45b8-9d52-4b113ae2298a {
  text-align: center;
}

#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}


.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 {
  max-width:  100%;
}

.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-image-zoom,
.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image,
.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-image-zoom,
.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 {
  max-width:  100%;
}

.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-image-zoom,
.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image,
.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-image-zoom,
.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 {
  max-width:  100%;
}

.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-image-zoom,
.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image,
.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-image-zoom,
.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 {
  max-width:  100%;
}

.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-image-zoom,
.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image,
.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-image-zoom,
.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 {
  max-width:  100%;
}

.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-image-zoom,
.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image {
  max-width: 800px !important;
  
}

.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image,
.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 .shg-image-zoom,
.shg-c#s-6a92ba02-f1cc-4cee-b94a-b6e90df38be3 img.shogun-image {
  aspect-ratio: 1/1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-0a28d4b3-d670-4ebb-b2b8-e7db980e2ad2 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-0a28d4b3-d670-4ebb-b2b8-e7db980e2ad2 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 24px;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-0a28d4b3-d670-4ebb-b2b8-e7db980e2ad2 .shg-product-price {
  color: #000;
  font-weight:  600 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 24px;
}

#s-0a28d4b3-d670-4ebb-b2b8-e7db980e2ad2 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-f1942d60-8fe1-4ee7-b66e-1b00f8f7075e {
  border-style: solid;
margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 10px;
background-color: rgba(44, 86, 125, 1);
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-f1942d60-8fe1-4ee7-b66e-1b00f8f7075e:hover {border-radius: 10px !important;
background-color: rgba(120, 196, 222, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(44, 86, 125, 1) !important;}#s-f1942d60-8fe1-4ee7-b66e-1b00f8f7075e:active {border-radius: 10px !important;
background-color: rgba(18, 101, 139, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}


#s-f1942d60-8fe1-4ee7-b66e-1b00f8f7075e {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f1942d60-8fe1-4ee7-b66e-1b00f8f7075e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f1942d60-8fe1-4ee7-b66e-1b00f8f7075e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-f1942d60-8fe1-4ee7-b66e-1b00f8f7075e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-727988fc-c2b0-4c7c-82d6-ef92a0f4b162 {
  margin-left: 7%;
margin-right: 7%;
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}

.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty:not(.shopify-section *):not([id^="wistia"]) {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}

/* <-- User Content Animations */

.shogun-form-error-msg,
.shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}
