.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;
  /**
   * This is part of an IE11 fallback to avoid flex introducing
   * huge amount of weird space on the bottom on the section element.
   */
  min-height: 1px;
}

.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-463c73a0-b8dc-4f8e-abaf-576906250dce {
  min-height: 50px;
}
@media (min-width: 1200px){#s-463c73a0-b8dc-4f8e-abaf-576906250dce {
  display: none;
}
#s-463c73a0-b8dc-4f8e-abaf-576906250dce, #wrap-s-463c73a0-b8dc-4f8e-abaf-576906250dce { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-463c73a0-b8dc-4f8e-abaf-576906250dce {
  display: none;
}
#s-463c73a0-b8dc-4f8e-abaf-576906250dce, #wrap-s-463c73a0-b8dc-4f8e-abaf-576906250dce { display: none !important; }}







#s-463c73a0-b8dc-4f8e-abaf-576906250dce > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-463c73a0-b8dc-4f8e-abaf-576906250dce.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-a562b559-8b72-4c2f-8683-98b75f363a0c {
  max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-a562b559-8b72-4c2f-8683-98b75f363a0c img.shogun-image,
  #s-a562b559-8b72-4c2f-8683-98b75f363a0c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a562b559-8b72-4c2f-8683-98b75f363a0c {
    width: 100%;
    height: auto;
  }

  #s-a562b559-8b72-4c2f-8683-98b75f363a0c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image {
    
    
  }


.s-a562b559-8b72-4c2f-8683-98b75f363a0c .shogun-image-content {
  
    align-items: center;
  
}

.s-a562b559-8b72-4c2f-8683-98b75f363a0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a562b559-8b72-4c2f-8683-98b75f363a0c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image-container {
      position: relative;
    }

    .s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a562b559-8b72-4c2f-8683-98b75f363a0c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-a562b559-8b72-4c2f-8683-98b75f363a0c img.shogun-image,
  #s-a562b559-8b72-4c2f-8683-98b75f363a0c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a562b559-8b72-4c2f-8683-98b75f363a0c {
    width: 100%;
    height: auto;
  }

  #s-a562b559-8b72-4c2f-8683-98b75f363a0c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image {
    
    
  }


.s-a562b559-8b72-4c2f-8683-98b75f363a0c .shogun-image-content {
  
    align-items: center;
  
}

.s-a562b559-8b72-4c2f-8683-98b75f363a0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a562b559-8b72-4c2f-8683-98b75f363a0c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image-container {
      position: relative;
    }

    .s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a562b559-8b72-4c2f-8683-98b75f363a0c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-a562b559-8b72-4c2f-8683-98b75f363a0c img.shogun-image,
  #s-a562b559-8b72-4c2f-8683-98b75f363a0c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a562b559-8b72-4c2f-8683-98b75f363a0c {
    width: 100%;
    height: auto;
  }

  #s-a562b559-8b72-4c2f-8683-98b75f363a0c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image {
    
    
  }


.s-a562b559-8b72-4c2f-8683-98b75f363a0c .shogun-image-content {
  
    align-items: center;
  
}

.s-a562b559-8b72-4c2f-8683-98b75f363a0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a562b559-8b72-4c2f-8683-98b75f363a0c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image-container {
      position: relative;
    }

    .s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a562b559-8b72-4c2f-8683-98b75f363a0c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-a562b559-8b72-4c2f-8683-98b75f363a0c img.shogun-image,
  #s-a562b559-8b72-4c2f-8683-98b75f363a0c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a562b559-8b72-4c2f-8683-98b75f363a0c {
    width: 100%;
    height: auto;
  }

  #s-a562b559-8b72-4c2f-8683-98b75f363a0c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image {
    
    
  }


.s-a562b559-8b72-4c2f-8683-98b75f363a0c .shogun-image-content {
  
    align-items: center;
  
}

.s-a562b559-8b72-4c2f-8683-98b75f363a0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a562b559-8b72-4c2f-8683-98b75f363a0c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image-container {
      position: relative;
    }

    .s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a562b559-8b72-4c2f-8683-98b75f363a0c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-a562b559-8b72-4c2f-8683-98b75f363a0c img.shogun-image,
  #s-a562b559-8b72-4c2f-8683-98b75f363a0c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a562b559-8b72-4c2f-8683-98b75f363a0c {
    width: 100%;
    height: auto;
  }

  #s-a562b559-8b72-4c2f-8683-98b75f363a0c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image {
    
    
  }


.s-a562b559-8b72-4c2f-8683-98b75f363a0c .shogun-image-content {
  
    align-items: center;
  
}

.s-a562b559-8b72-4c2f-8683-98b75f363a0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a562b559-8b72-4c2f-8683-98b75f363a0c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image-container {
      position: relative;
    }

    .s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a562b559-8b72-4c2f-8683-98b75f363a0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a562b559-8b72-4c2f-8683-98b75f363a0c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-41396c6d-04e8-4ac4-9117-a11990f901a7 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-41396c6d-04e8-4ac4-9117-a11990f901a7 {
  display: none;
}
#s-41396c6d-04e8-4ac4-9117-a11990f901a7, #wrap-s-41396c6d-04e8-4ac4-9117-a11990f901a7 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-41396c6d-04e8-4ac4-9117-a11990f901a7 {
  display: none;
}
#s-41396c6d-04e8-4ac4-9117-a11990f901a7, #wrap-s-41396c6d-04e8-4ac4-9117-a11990f901a7 { display: none !important; }}







#s-41396c6d-04e8-4ac4-9117-a11990f901a7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-41396c6d-04e8-4ac4-9117-a11990f901a7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

.shg-btn-text {
  font-weight: normal;
  font-family: Assistant, sans-serif;
}

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

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

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

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

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

#s-75bfe407-e34e-42fb-8398-fcc0bbb4b8f2 {
  margin-top: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-75bfe407-e34e-42fb-8398-fcc0bbb4b8f2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-75bfe407-e34e-42fb-8398-fcc0bbb4b8f2:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-75bfe407-e34e-42fb-8398-fcc0bbb4b8f2-root {
    text-align: center;
  }


#s-75bfe407-e34e-42fb-8398-fcc0bbb4b8f2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-75bfe407-e34e-42fb-8398-fcc0bbb4b8f2-root {
    text-align: center;
  }


#s-75bfe407-e34e-42fb-8398-fcc0bbb4b8f2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-75bfe407-e34e-42fb-8398-fcc0bbb4b8f2-root {
    text-align: center;
  }


#s-75bfe407-e34e-42fb-8398-fcc0bbb4b8f2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-75bfe407-e34e-42fb-8398-fcc0bbb4b8f2-root {
    text-align: center;
  }


#s-75bfe407-e34e-42fb-8398-fcc0bbb4b8f2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-75bfe407-e34e-42fb-8398-fcc0bbb4b8f2-root {
    text-align: center;
  }


#s-75bfe407-e34e-42fb-8398-fcc0bbb4b8f2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-346c142f-2734-4225-9e62-424cbc2acdd2 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(184, 214, 216, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-346c142f-2734-4225-9e62-424cbc2acdd2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-346c142f-2734-4225-9e62-424cbc2acdd2:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-346c142f-2734-4225-9e62-424cbc2acdd2 {
  display: none;
}
#s-346c142f-2734-4225-9e62-424cbc2acdd2, #wrap-s-346c142f-2734-4225-9e62-424cbc2acdd2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-346c142f-2734-4225-9e62-424cbc2acdd2 {
  display: none;
}
#s-346c142f-2734-4225-9e62-424cbc2acdd2, #wrap-s-346c142f-2734-4225-9e62-424cbc2acdd2 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-346c142f-2734-4225-9e62-424cbc2acdd2 {
  
}
}

  #s-346c142f-2734-4225-9e62-424cbc2acdd2-root {
    text-align: center;
  }


#s-346c142f-2734-4225-9e62-424cbc2acdd2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-346c142f-2734-4225-9e62-424cbc2acdd2-root {
    text-align: center;
  }


#s-346c142f-2734-4225-9e62-424cbc2acdd2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-346c142f-2734-4225-9e62-424cbc2acdd2-root {
    text-align: center;
  }


#s-346c142f-2734-4225-9e62-424cbc2acdd2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-346c142f-2734-4225-9e62-424cbc2acdd2-root {
    text-align: center;
  }


#s-346c142f-2734-4225-9e62-424cbc2acdd2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-346c142f-2734-4225-9e62-424cbc2acdd2-root {
    text-align: center;
  }


#s-346c142f-2734-4225-9e62-424cbc2acdd2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-0893ad86-69f5-4c46-9b26-2c2aae00514a {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-0893ad86-69f5-4c46-9b26-2c2aae00514a {
  display: none;
}
#s-0893ad86-69f5-4c46-9b26-2c2aae00514a, #wrap-s-0893ad86-69f5-4c46-9b26-2c2aae00514a { display: none !important; }}@media (max-width: 767px){#s-0893ad86-69f5-4c46-9b26-2c2aae00514a {
  display: none;
}
#s-0893ad86-69f5-4c46-9b26-2c2aae00514a, #wrap-s-0893ad86-69f5-4c46-9b26-2c2aae00514a { display: none !important; }}







#s-0893ad86-69f5-4c46-9b26-2c2aae00514a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0893ad86-69f5-4c46-9b26-2c2aae00514a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7b37d501-f1d9-4147-b0e3-6657be61a895 {
  max-width: 1640px;
aspect-ratio: 1640/720;
text-align: center;
}





  #s-7b37d501-f1d9-4147-b0e3-6657be61a895 img.shogun-image,
  #s-7b37d501-f1d9-4147-b0e3-6657be61a895 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7b37d501-f1d9-4147-b0e3-6657be61a895 {
    width: 100%;
    height: auto;
  }

  #s-7b37d501-f1d9-4147-b0e3-6657be61a895 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image {
    
    
  }


.s-7b37d501-f1d9-4147-b0e3-6657be61a895 .shogun-image-content {
  
    align-items: center;
  
}

.s-7b37d501-f1d9-4147-b0e3-6657be61a895.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7b37d501-f1d9-4147-b0e3-6657be61a895 {
      --shg-aspect-ratio: calc(1640/720); 
    }

    .s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image-container {
      position: relative;
    }

    .s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7b37d501-f1d9-4147-b0e3-6657be61a895 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-7b37d501-f1d9-4147-b0e3-6657be61a895 img.shogun-image,
  #s-7b37d501-f1d9-4147-b0e3-6657be61a895 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7b37d501-f1d9-4147-b0e3-6657be61a895 {
    width: 100%;
    height: auto;
  }

  #s-7b37d501-f1d9-4147-b0e3-6657be61a895 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image {
    
    
  }


.s-7b37d501-f1d9-4147-b0e3-6657be61a895 .shogun-image-content {
  
    align-items: center;
  
}

.s-7b37d501-f1d9-4147-b0e3-6657be61a895.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7b37d501-f1d9-4147-b0e3-6657be61a895 {
      --shg-aspect-ratio: calc(1640/720); 
    }

    .s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image-container {
      position: relative;
    }

    .s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7b37d501-f1d9-4147-b0e3-6657be61a895 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-7b37d501-f1d9-4147-b0e3-6657be61a895 img.shogun-image,
  #s-7b37d501-f1d9-4147-b0e3-6657be61a895 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7b37d501-f1d9-4147-b0e3-6657be61a895 {
    width: 100%;
    height: auto;
  }

  #s-7b37d501-f1d9-4147-b0e3-6657be61a895 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image {
    
    
  }


.s-7b37d501-f1d9-4147-b0e3-6657be61a895 .shogun-image-content {
  
    align-items: center;
  
}

.s-7b37d501-f1d9-4147-b0e3-6657be61a895.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7b37d501-f1d9-4147-b0e3-6657be61a895 {
      --shg-aspect-ratio: calc(1640/720); 
    }

    .s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image-container {
      position: relative;
    }

    .s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7b37d501-f1d9-4147-b0e3-6657be61a895 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-7b37d501-f1d9-4147-b0e3-6657be61a895 img.shogun-image,
  #s-7b37d501-f1d9-4147-b0e3-6657be61a895 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7b37d501-f1d9-4147-b0e3-6657be61a895 {
    width: 100%;
    height: auto;
  }

  #s-7b37d501-f1d9-4147-b0e3-6657be61a895 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image {
    
    
  }


.s-7b37d501-f1d9-4147-b0e3-6657be61a895 .shogun-image-content {
  
    align-items: center;
  
}

.s-7b37d501-f1d9-4147-b0e3-6657be61a895.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7b37d501-f1d9-4147-b0e3-6657be61a895 {
      --shg-aspect-ratio: calc(1640/720); 
    }

    .s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image-container {
      position: relative;
    }

    .s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7b37d501-f1d9-4147-b0e3-6657be61a895 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-7b37d501-f1d9-4147-b0e3-6657be61a895 img.shogun-image,
  #s-7b37d501-f1d9-4147-b0e3-6657be61a895 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7b37d501-f1d9-4147-b0e3-6657be61a895 {
    width: 100%;
    height: auto;
  }

  #s-7b37d501-f1d9-4147-b0e3-6657be61a895 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image {
    
    
  }


.s-7b37d501-f1d9-4147-b0e3-6657be61a895 .shogun-image-content {
  
    align-items: center;
  
}

.s-7b37d501-f1d9-4147-b0e3-6657be61a895.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7b37d501-f1d9-4147-b0e3-6657be61a895 {
      --shg-aspect-ratio: calc(1640/720); 
    }

    .s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image-container {
      position: relative;
    }

    .s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7b37d501-f1d9-4147-b0e3-6657be61a895.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7b37d501-f1d9-4147-b0e3-6657be61a895 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-6327b9be-aee4-4597-b411-1f275cba41af {
  margin-top: 20px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(3, 3, 3, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-6327b9be-aee4-4597-b411-1f275cba41af:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6327b9be-aee4-4597-b411-1f275cba41af:active {border-style: solid !important;
border-color: rgba(43, 32, 99, 1) !important;
background-color: rgba(22, 35, 116, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-6327b9be-aee4-4597-b411-1f275cba41af {
  display: none;
}
#s-6327b9be-aee4-4597-b411-1f275cba41af, #wrap-s-6327b9be-aee4-4597-b411-1f275cba41af { display: none !important; }}@media (max-width: 767px){#s-6327b9be-aee4-4597-b411-1f275cba41af {
  display: none;
}
#s-6327b9be-aee4-4597-b411-1f275cba41af, #wrap-s-6327b9be-aee4-4597-b411-1f275cba41af { display: none !important; }}

  #s-6327b9be-aee4-4597-b411-1f275cba41af-root {
    text-align: center;
  }


#s-6327b9be-aee4-4597-b411-1f275cba41af.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6327b9be-aee4-4597-b411-1f275cba41af-root {
    text-align: center;
  }


#s-6327b9be-aee4-4597-b411-1f275cba41af.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6327b9be-aee4-4597-b411-1f275cba41af-root {
    text-align: center;
  }


#s-6327b9be-aee4-4597-b411-1f275cba41af.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6327b9be-aee4-4597-b411-1f275cba41af-root {
    text-align: center;
  }


#s-6327b9be-aee4-4597-b411-1f275cba41af.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6327b9be-aee4-4597-b411-1f275cba41af-root {
    text-align: center;
  }


#s-6327b9be-aee4-4597-b411-1f275cba41af.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-e67c68d8-b34b-49ef-95c5-7e8d5df94a08 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(184, 214, 216, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-e67c68d8-b34b-49ef-95c5-7e8d5df94a08:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e67c68d8-b34b-49ef-95c5-7e8d5df94a08:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-e67c68d8-b34b-49ef-95c5-7e8d5df94a08 {
  display: none;
}
#s-e67c68d8-b34b-49ef-95c5-7e8d5df94a08, #wrap-s-e67c68d8-b34b-49ef-95c5-7e8d5df94a08 { display: none !important; }}@media (max-width: 767px){#s-e67c68d8-b34b-49ef-95c5-7e8d5df94a08 {
  display: none;
}
#s-e67c68d8-b34b-49ef-95c5-7e8d5df94a08, #wrap-s-e67c68d8-b34b-49ef-95c5-7e8d5df94a08 { display: none !important; }}

  #s-e67c68d8-b34b-49ef-95c5-7e8d5df94a08-root {
    text-align: center;
  }


#s-e67c68d8-b34b-49ef-95c5-7e8d5df94a08.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-e67c68d8-b34b-49ef-95c5-7e8d5df94a08-root {
    text-align: center;
  }


#s-e67c68d8-b34b-49ef-95c5-7e8d5df94a08.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e67c68d8-b34b-49ef-95c5-7e8d5df94a08-root {
    text-align: center;
  }


#s-e67c68d8-b34b-49ef-95c5-7e8d5df94a08.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e67c68d8-b34b-49ef-95c5-7e8d5df94a08-root {
    text-align: center;
  }


#s-e67c68d8-b34b-49ef-95c5-7e8d5df94a08.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-e67c68d8-b34b-49ef-95c5-7e8d5df94a08-root {
    text-align: center;
  }


#s-e67c68d8-b34b-49ef-95c5-7e8d5df94a08.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-b90a4ee0-9446-441f-89f8-1ca720db0c4d {
  margin-top: 15px;
margin-bottom: 15px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(30, 38, 58, 1);
text-align: center;
text-decoration: none;
}
#s-b90a4ee0-9446-441f-89f8-1ca720db0c4d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b90a4ee0-9446-441f-89f8-1ca720db0c4d:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-b90a4ee0-9446-441f-89f8-1ca720db0c4d {
  display: none;
}
#s-b90a4ee0-9446-441f-89f8-1ca720db0c4d, #wrap-s-b90a4ee0-9446-441f-89f8-1ca720db0c4d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b90a4ee0-9446-441f-89f8-1ca720db0c4d {
  display: none;
}
#s-b90a4ee0-9446-441f-89f8-1ca720db0c4d, #wrap-s-b90a4ee0-9446-441f-89f8-1ca720db0c4d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b90a4ee0-9446-441f-89f8-1ca720db0c4d {
  display: none;
}
#s-b90a4ee0-9446-441f-89f8-1ca720db0c4d, #wrap-s-b90a4ee0-9446-441f-89f8-1ca720db0c4d { display: none !important; }}@media (max-width: 767px){#s-b90a4ee0-9446-441f-89f8-1ca720db0c4d {
  display: none;
}
#s-b90a4ee0-9446-441f-89f8-1ca720db0c4d, #wrap-s-b90a4ee0-9446-441f-89f8-1ca720db0c4d { display: none !important; }}

  #s-b90a4ee0-9446-441f-89f8-1ca720db0c4d-root {
    text-align: center;
  }


#s-b90a4ee0-9446-441f-89f8-1ca720db0c4d.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b90a4ee0-9446-441f-89f8-1ca720db0c4d-root {
    text-align: center;
  }


#s-b90a4ee0-9446-441f-89f8-1ca720db0c4d.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b90a4ee0-9446-441f-89f8-1ca720db0c4d-root {
    text-align: center;
  }


#s-b90a4ee0-9446-441f-89f8-1ca720db0c4d.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b90a4ee0-9446-441f-89f8-1ca720db0c4d-root {
    text-align: center;
  }


#s-b90a4ee0-9446-441f-89f8-1ca720db0c4d.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b90a4ee0-9446-441f-89f8-1ca720db0c4d-root {
    text-align: center;
  }


#s-b90a4ee0-9446-441f-89f8-1ca720db0c4d.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}
#s-27829838-089f-4ce4-b303-6a18826cad32 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-27829838-089f-4ce4-b303-6a18826cad32 {
  display: none;
}
#s-27829838-089f-4ce4-b303-6a18826cad32, #wrap-s-27829838-089f-4ce4-b303-6a18826cad32 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-27829838-089f-4ce4-b303-6a18826cad32 {
  display: none;
}
#s-27829838-089f-4ce4-b303-6a18826cad32, #wrap-s-27829838-089f-4ce4-b303-6a18826cad32 { display: none !important; }}







#s-27829838-089f-4ce4-b303-6a18826cad32 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-27829838-089f-4ce4-b303-6a18826cad32.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-78a256d3-176d-49f9-a8e3-1e6d1092877c {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 2160px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-78a256d3-176d-49f9-a8e3-1e6d1092877c img.shogun-image,
  #s-78a256d3-176d-49f9-a8e3-1e6d1092877c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-78a256d3-176d-49f9-a8e3-1e6d1092877c {
    width: 100%;
    height: auto;
  }

  #s-78a256d3-176d-49f9-a8e3-1e6d1092877c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image {
    
    
  }


.s-78a256d3-176d-49f9-a8e3-1e6d1092877c .shogun-image-content {
  
    align-items: center;
  
}

.s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image-container {
      position: relative;
    }

    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-78a256d3-176d-49f9-a8e3-1e6d1092877c img.shogun-image,
  #s-78a256d3-176d-49f9-a8e3-1e6d1092877c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-78a256d3-176d-49f9-a8e3-1e6d1092877c {
    width: 100%;
    height: auto;
  }

  #s-78a256d3-176d-49f9-a8e3-1e6d1092877c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image {
    
    
  }


.s-78a256d3-176d-49f9-a8e3-1e6d1092877c .shogun-image-content {
  
    align-items: center;
  
}

.s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image-container {
      position: relative;
    }

    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-78a256d3-176d-49f9-a8e3-1e6d1092877c img.shogun-image,
  #s-78a256d3-176d-49f9-a8e3-1e6d1092877c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-78a256d3-176d-49f9-a8e3-1e6d1092877c {
    width: 100%;
    height: auto;
  }

  #s-78a256d3-176d-49f9-a8e3-1e6d1092877c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image {
    
    
  }


.s-78a256d3-176d-49f9-a8e3-1e6d1092877c .shogun-image-content {
  
    align-items: center;
  
}

.s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image-container {
      position: relative;
    }

    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-78a256d3-176d-49f9-a8e3-1e6d1092877c img.shogun-image,
  #s-78a256d3-176d-49f9-a8e3-1e6d1092877c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-78a256d3-176d-49f9-a8e3-1e6d1092877c {
    width: 100%;
    height: auto;
  }

  #s-78a256d3-176d-49f9-a8e3-1e6d1092877c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image {
    
    
  }


.s-78a256d3-176d-49f9-a8e3-1e6d1092877c .shogun-image-content {
  
    align-items: center;
  
}

.s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image-container {
      position: relative;
    }

    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-78a256d3-176d-49f9-a8e3-1e6d1092877c img.shogun-image,
  #s-78a256d3-176d-49f9-a8e3-1e6d1092877c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-78a256d3-176d-49f9-a8e3-1e6d1092877c {
    width: 100%;
    height: auto;
  }

  #s-78a256d3-176d-49f9-a8e3-1e6d1092877c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image {
    
    
  }


.s-78a256d3-176d-49f9-a8e3-1e6d1092877c .shogun-image-content {
  
    align-items: center;
  
}

.s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image-container {
      position: relative;
    }

    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78a256d3-176d-49f9-a8e3-1e6d1092877c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-e9e1dee4-8647-4245-9b94-ad2120f947f7 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 400px;
background-position: center center;
}
@media (min-width: 1200px){#s-e9e1dee4-8647-4245-9b94-ad2120f947f7 {
  display: none;
}
#s-e9e1dee4-8647-4245-9b94-ad2120f947f7, #wrap-s-e9e1dee4-8647-4245-9b94-ad2120f947f7 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e9e1dee4-8647-4245-9b94-ad2120f947f7 {
  display: none;
}
#s-e9e1dee4-8647-4245-9b94-ad2120f947f7, #wrap-s-e9e1dee4-8647-4245-9b94-ad2120f947f7 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e9e1dee4-8647-4245-9b94-ad2120f947f7 {
  margin-top: 10px;
}
}@media (max-width: 767px){#s-e9e1dee4-8647-4245-9b94-ad2120f947f7 {
  min-height: 300px;
}
}







#s-e9e1dee4-8647-4245-9b94-ad2120f947f7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e9e1dee4-8647-4245-9b94-ad2120f947f7 {
  cursor: pointer;
}#s-e9e1dee4-8647-4245-9b94-ad2120f947f7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ca4cde18-0581-4932-adf6-ebf24b17ddfa {
  min-height: 50px;
}








#s-ca4cde18-0581-4932-adf6-ebf24b17ddfa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ca4cde18-0581-4932-adf6-ebf24b17ddfa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4aac2431-f008-46cd-845e-ec1d70b77d4e {
  max-width: 2665px;
aspect-ratio: 2665/1177;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-4aac2431-f008-46cd-845e-ec1d70b77d4e {
  display: none;
}
#s-4aac2431-f008-46cd-845e-ec1d70b77d4e, #wrap-s-4aac2431-f008-46cd-845e-ec1d70b77d4e { display: none !important; }}@media (max-width: 767px){#s-4aac2431-f008-46cd-845e-ec1d70b77d4e {
  display: none;
}
#s-4aac2431-f008-46cd-845e-ec1d70b77d4e, #wrap-s-4aac2431-f008-46cd-845e-ec1d70b77d4e { display: none !important; }}




  #s-4aac2431-f008-46cd-845e-ec1d70b77d4e img.shogun-image,
  #s-4aac2431-f008-46cd-845e-ec1d70b77d4e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4aac2431-f008-46cd-845e-ec1d70b77d4e {
    width: 100%;
    height: auto;
  }

  #s-4aac2431-f008-46cd-845e-ec1d70b77d4e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image {
    
    
  }


.s-4aac2431-f008-46cd-845e-ec1d70b77d4e .shogun-image-content {
  
    align-items: center;
  
}

.s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e {
      --shg-aspect-ratio: calc(2665/1177); 
    }

    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image-container {
      position: relative;
    }

    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-4aac2431-f008-46cd-845e-ec1d70b77d4e img.shogun-image,
  #s-4aac2431-f008-46cd-845e-ec1d70b77d4e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4aac2431-f008-46cd-845e-ec1d70b77d4e {
    width: 100%;
    height: auto;
  }

  #s-4aac2431-f008-46cd-845e-ec1d70b77d4e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image {
    
    
  }


.s-4aac2431-f008-46cd-845e-ec1d70b77d4e .shogun-image-content {
  
    align-items: center;
  
}

.s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e {
      --shg-aspect-ratio: calc(2665/1177); 
    }

    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image-container {
      position: relative;
    }

    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-4aac2431-f008-46cd-845e-ec1d70b77d4e img.shogun-image,
  #s-4aac2431-f008-46cd-845e-ec1d70b77d4e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4aac2431-f008-46cd-845e-ec1d70b77d4e {
    width: 100%;
    height: auto;
  }

  #s-4aac2431-f008-46cd-845e-ec1d70b77d4e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image {
    
    
  }


.s-4aac2431-f008-46cd-845e-ec1d70b77d4e .shogun-image-content {
  
    align-items: center;
  
}

.s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e {
      --shg-aspect-ratio: calc(2665/1177); 
    }

    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image-container {
      position: relative;
    }

    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-4aac2431-f008-46cd-845e-ec1d70b77d4e img.shogun-image,
  #s-4aac2431-f008-46cd-845e-ec1d70b77d4e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4aac2431-f008-46cd-845e-ec1d70b77d4e {
    width: 100%;
    height: auto;
  }

  #s-4aac2431-f008-46cd-845e-ec1d70b77d4e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image {
    
    
  }


.s-4aac2431-f008-46cd-845e-ec1d70b77d4e .shogun-image-content {
  
    align-items: center;
  
}

.s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e {
      --shg-aspect-ratio: calc(2665/1177); 
    }

    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image-container {
      position: relative;
    }

    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-4aac2431-f008-46cd-845e-ec1d70b77d4e img.shogun-image,
  #s-4aac2431-f008-46cd-845e-ec1d70b77d4e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4aac2431-f008-46cd-845e-ec1d70b77d4e {
    width: 100%;
    height: auto;
  }

  #s-4aac2431-f008-46cd-845e-ec1d70b77d4e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image {
    
    
  }


.s-4aac2431-f008-46cd-845e-ec1d70b77d4e .shogun-image-content {
  
    align-items: center;
  
}

.s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e {
      --shg-aspect-ratio: calc(2665/1177); 
    }

    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image-container {
      position: relative;
    }

    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4aac2431-f008-46cd-845e-ec1d70b77d4e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
.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;
}

#s-5bf5ad3b-f9fe-4123-8a6b-ab33537c1059 {
  margin-top: 10px;
margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-5bf5ad3b-f9fe-4123-8a6b-ab33537c1059 {
  display: none;
}
#s-5bf5ad3b-f9fe-4123-8a6b-ab33537c1059, #wrap-s-5bf5ad3b-f9fe-4123-8a6b-ab33537c1059 { display: none !important; }}
@media (min-width: 0px) {
[id="s-5bf5ad3b-f9fe-4123-8a6b-ab33537c1059"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5bf5ad3b-f9fe-4123-8a6b-ab33537c1059"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-5bf5ad3b-f9fe-4123-8a6b-ab33537c1059"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-5bf5ad3b-f9fe-4123-8a6b-ab33537c1059"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-5bf5ad3b-f9fe-4123-8a6b-ab33537c1059"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-5bf5ad3b-f9fe-4123-8a6b-ab33537c1059"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-5bf5ad3b-f9fe-4123-8a6b-ab33537c1059"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

}

#s-f3080cdd-0118-4a8c-b1b6-eeda8aed422a {
  background-repeat: no-repeat;
background-size: cover;
min-height: 450px;
background-position: center center;
}
@media (min-width: 1200px){#s-f3080cdd-0118-4a8c-b1b6-eeda8aed422a {
  min-height: 450px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f3080cdd-0118-4a8c-b1b6-eeda8aed422a {
  display: none;
}
#s-f3080cdd-0118-4a8c-b1b6-eeda8aed422a, #wrap-s-f3080cdd-0118-4a8c-b1b6-eeda8aed422a { display: none !important; }}@media (max-width: 767px){#s-f3080cdd-0118-4a8c-b1b6-eeda8aed422a {
  display: none;
}
#s-f3080cdd-0118-4a8c-b1b6-eeda8aed422a, #wrap-s-f3080cdd-0118-4a8c-b1b6-eeda8aed422a { display: none !important; }}







#s-f3080cdd-0118-4a8c-b1b6-eeda8aed422a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f3080cdd-0118-4a8c-b1b6-eeda8aed422a {
  cursor: pointer;
}#s-f3080cdd-0118-4a8c-b1b6-eeda8aed422a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bba63adc-3c77-4ad0-949b-57585933adb0 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 450px;
background-position: center center;
}
@media (min-width: 1200px){#s-bba63adc-3c77-4ad0-949b-57585933adb0 {
  min-height: 450px;
}
}@media (max-width: 767px){#s-bba63adc-3c77-4ad0-949b-57585933adb0 {
  margin-left: 2%;
margin-right: 2%;
min-height: 400px;
}
}







#s-bba63adc-3c77-4ad0-949b-57585933adb0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bba63adc-3c77-4ad0-949b-57585933adb0 {
  cursor: pointer;
}#s-bba63adc-3c77-4ad0-949b-57585933adb0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a1a7fd3d-6995-4e46-96c8-cf2855eb4fca {
  min-height: 50px;
}
@media (min-width: 1200px){#s-a1a7fd3d-6995-4e46-96c8-cf2855eb4fca {
  display: none;
}
#s-a1a7fd3d-6995-4e46-96c8-cf2855eb4fca, #wrap-s-a1a7fd3d-6995-4e46-96c8-cf2855eb4fca { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a1a7fd3d-6995-4e46-96c8-cf2855eb4fca {
  display: none;
}
#s-a1a7fd3d-6995-4e46-96c8-cf2855eb4fca, #wrap-s-a1a7fd3d-6995-4e46-96c8-cf2855eb4fca { display: none !important; }}@media (max-width: 767px){#s-a1a7fd3d-6995-4e46-96c8-cf2855eb4fca {
  display: none;
}
#s-a1a7fd3d-6995-4e46-96c8-cf2855eb4fca, #wrap-s-a1a7fd3d-6995-4e46-96c8-cf2855eb4fca { display: none !important; }}







#s-a1a7fd3d-6995-4e46-96c8-cf2855eb4fca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a1a7fd3d-6995-4e46-96c8-cf2855eb4fca.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-12e3036b-2ffb-4046-8122-a903039f0407 {
  max-width: 1890px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-12e3036b-2ffb-4046-8122-a903039f0407 img.shogun-image,
  #s-12e3036b-2ffb-4046-8122-a903039f0407 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-12e3036b-2ffb-4046-8122-a903039f0407 {
    width: 100%;
    height: auto;
  }

  #s-12e3036b-2ffb-4046-8122-a903039f0407 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image {
    
    
  }


.s-12e3036b-2ffb-4046-8122-a903039f0407 .shogun-image-content {
  
    align-items: center;
  
}

.s-12e3036b-2ffb-4046-8122-a903039f0407.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-12e3036b-2ffb-4046-8122-a903039f0407 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image-container {
      position: relative;
    }

    .s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-12e3036b-2ffb-4046-8122-a903039f0407 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-12e3036b-2ffb-4046-8122-a903039f0407 img.shogun-image,
  #s-12e3036b-2ffb-4046-8122-a903039f0407 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-12e3036b-2ffb-4046-8122-a903039f0407 {
    width: 100%;
    height: auto;
  }

  #s-12e3036b-2ffb-4046-8122-a903039f0407 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image {
    
    
  }


.s-12e3036b-2ffb-4046-8122-a903039f0407 .shogun-image-content {
  
    align-items: center;
  
}

.s-12e3036b-2ffb-4046-8122-a903039f0407.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-12e3036b-2ffb-4046-8122-a903039f0407 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image-container {
      position: relative;
    }

    .s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-12e3036b-2ffb-4046-8122-a903039f0407 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-12e3036b-2ffb-4046-8122-a903039f0407 img.shogun-image,
  #s-12e3036b-2ffb-4046-8122-a903039f0407 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-12e3036b-2ffb-4046-8122-a903039f0407 {
    width: 100%;
    height: auto;
  }

  #s-12e3036b-2ffb-4046-8122-a903039f0407 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image {
    
    
  }


.s-12e3036b-2ffb-4046-8122-a903039f0407 .shogun-image-content {
  
    align-items: center;
  
}

.s-12e3036b-2ffb-4046-8122-a903039f0407.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-12e3036b-2ffb-4046-8122-a903039f0407 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image-container {
      position: relative;
    }

    .s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-12e3036b-2ffb-4046-8122-a903039f0407 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-12e3036b-2ffb-4046-8122-a903039f0407 img.shogun-image,
  #s-12e3036b-2ffb-4046-8122-a903039f0407 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-12e3036b-2ffb-4046-8122-a903039f0407 {
    width: 100%;
    height: auto;
  }

  #s-12e3036b-2ffb-4046-8122-a903039f0407 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image {
    
    
  }


.s-12e3036b-2ffb-4046-8122-a903039f0407 .shogun-image-content {
  
    align-items: center;
  
}

.s-12e3036b-2ffb-4046-8122-a903039f0407.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-12e3036b-2ffb-4046-8122-a903039f0407 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image-container {
      position: relative;
    }

    .s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-12e3036b-2ffb-4046-8122-a903039f0407 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-12e3036b-2ffb-4046-8122-a903039f0407 img.shogun-image,
  #s-12e3036b-2ffb-4046-8122-a903039f0407 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-12e3036b-2ffb-4046-8122-a903039f0407 {
    width: 100%;
    height: auto;
  }

  #s-12e3036b-2ffb-4046-8122-a903039f0407 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image {
    
    
  }


.s-12e3036b-2ffb-4046-8122-a903039f0407 .shogun-image-content {
  
    align-items: center;
  
}

.s-12e3036b-2ffb-4046-8122-a903039f0407.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-12e3036b-2ffb-4046-8122-a903039f0407 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image-container {
      position: relative;
    }

    .s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-12e3036b-2ffb-4046-8122-a903039f0407.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-12e3036b-2ffb-4046-8122-a903039f0407 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-fe7df268-bdde-4a09-b2d8-6a348f0dc21e {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 10px;
margin-bottom: 10px;
min-height: 300px;
background-position: center center;
}
@media (min-width: 1200px){#s-fe7df268-bdde-4a09-b2d8-6a348f0dc21e {
  display: none;
}
#s-fe7df268-bdde-4a09-b2d8-6a348f0dc21e, #wrap-s-fe7df268-bdde-4a09-b2d8-6a348f0dc21e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fe7df268-bdde-4a09-b2d8-6a348f0dc21e {
  display: none;
}
#s-fe7df268-bdde-4a09-b2d8-6a348f0dc21e, #wrap-s-fe7df268-bdde-4a09-b2d8-6a348f0dc21e { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-fe7df268-bdde-4a09-b2d8-6a348f0dc21e {
  margin-top: 20px;
margin-bottom: 20px;
}
}@media (max-width: 767px){#s-fe7df268-bdde-4a09-b2d8-6a348f0dc21e {
  min-height: 200px;
}
}







#s-fe7df268-bdde-4a09-b2d8-6a348f0dc21e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fe7df268-bdde-4a09-b2d8-6a348f0dc21e {
  cursor: pointer;
}#s-fe7df268-bdde-4a09-b2d8-6a348f0dc21e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6194720c-e412-4897-bc9f-27a92457ecb1 {
  min-height: 50px;
}








#s-6194720c-e412-4897-bc9f-27a92457ecb1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6194720c-e412-4897-bc9f-27a92457ecb1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cb75c2cb-2f8c-4c08-89cf-c90b0d91b5b2 {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-cb75c2cb-2f8c-4c08-89cf-c90b0d91b5b2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cb75c2cb-2f8c-4c08-89cf-c90b0d91b5b2"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-cb75c2cb-2f8c-4c08-89cf-c90b0d91b5b2"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-cb75c2cb-2f8c-4c08-89cf-c90b0d91b5b2"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-5e171569-e8e3-4aff-b54b-bba91158bd4a {
  max-width: 688px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-5e171569-e8e3-4aff-b54b-bba91158bd4a img.shogun-image,
  #s-5e171569-e8e3-4aff-b54b-bba91158bd4a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5e171569-e8e3-4aff-b54b-bba91158bd4a {
    width: 100%;
    height: auto;
  }

  #s-5e171569-e8e3-4aff-b54b-bba91158bd4a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image {
    
    
  }


.s-5e171569-e8e3-4aff-b54b-bba91158bd4a .shogun-image-content {
  
    align-items: center;
  
}

.s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image-container {
      position: relative;
    }

    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-5e171569-e8e3-4aff-b54b-bba91158bd4a img.shogun-image,
  #s-5e171569-e8e3-4aff-b54b-bba91158bd4a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5e171569-e8e3-4aff-b54b-bba91158bd4a {
    width: 100%;
    height: auto;
  }

  #s-5e171569-e8e3-4aff-b54b-bba91158bd4a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image {
    
    
  }


.s-5e171569-e8e3-4aff-b54b-bba91158bd4a .shogun-image-content {
  
    align-items: center;
  
}

.s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image-container {
      position: relative;
    }

    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-5e171569-e8e3-4aff-b54b-bba91158bd4a img.shogun-image,
  #s-5e171569-e8e3-4aff-b54b-bba91158bd4a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5e171569-e8e3-4aff-b54b-bba91158bd4a {
    width: 100%;
    height: auto;
  }

  #s-5e171569-e8e3-4aff-b54b-bba91158bd4a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image {
    
    
  }


.s-5e171569-e8e3-4aff-b54b-bba91158bd4a .shogun-image-content {
  
    align-items: center;
  
}

.s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image-container {
      position: relative;
    }

    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-5e171569-e8e3-4aff-b54b-bba91158bd4a img.shogun-image,
  #s-5e171569-e8e3-4aff-b54b-bba91158bd4a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5e171569-e8e3-4aff-b54b-bba91158bd4a {
    width: 100%;
    height: auto;
  }

  #s-5e171569-e8e3-4aff-b54b-bba91158bd4a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image {
    
    
  }


.s-5e171569-e8e3-4aff-b54b-bba91158bd4a .shogun-image-content {
  
    align-items: center;
  
}

.s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image-container {
      position: relative;
    }

    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-5e171569-e8e3-4aff-b54b-bba91158bd4a img.shogun-image,
  #s-5e171569-e8e3-4aff-b54b-bba91158bd4a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5e171569-e8e3-4aff-b54b-bba91158bd4a {
    width: 100%;
    height: auto;
  }

  #s-5e171569-e8e3-4aff-b54b-bba91158bd4a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image {
    
    
  }


.s-5e171569-e8e3-4aff-b54b-bba91158bd4a .shogun-image-content {
  
    align-items: center;
  
}

.s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image-container {
      position: relative;
    }

    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e171569-e8e3-4aff-b54b-bba91158bd4a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-266da13d-42e7-459c-bf2a-dadef754427c {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 1620px;
aspect-ratio: 1/1;
text-align: center;
}
@media (max-width: 767px){#s-266da13d-42e7-459c-bf2a-dadef754427c {
  margin-top: 10px;
margin-bottom: 10px;
}
}




  #s-266da13d-42e7-459c-bf2a-dadef754427c img.shogun-image,
  #s-266da13d-42e7-459c-bf2a-dadef754427c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-266da13d-42e7-459c-bf2a-dadef754427c {
    width: 100%;
    height: auto;
  }

  #s-266da13d-42e7-459c-bf2a-dadef754427c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image {
    
    
  }


.s-266da13d-42e7-459c-bf2a-dadef754427c .shogun-image-content {
  
    align-items: center;
  
}

.s-266da13d-42e7-459c-bf2a-dadef754427c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-266da13d-42e7-459c-bf2a-dadef754427c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image-container {
      position: relative;
    }

    .s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-266da13d-42e7-459c-bf2a-dadef754427c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-266da13d-42e7-459c-bf2a-dadef754427c img.shogun-image,
  #s-266da13d-42e7-459c-bf2a-dadef754427c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-266da13d-42e7-459c-bf2a-dadef754427c {
    width: 100%;
    height: auto;
  }

  #s-266da13d-42e7-459c-bf2a-dadef754427c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image {
    
    
  }


.s-266da13d-42e7-459c-bf2a-dadef754427c .shogun-image-content {
  
    align-items: center;
  
}

.s-266da13d-42e7-459c-bf2a-dadef754427c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-266da13d-42e7-459c-bf2a-dadef754427c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image-container {
      position: relative;
    }

    .s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-266da13d-42e7-459c-bf2a-dadef754427c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-266da13d-42e7-459c-bf2a-dadef754427c img.shogun-image,
  #s-266da13d-42e7-459c-bf2a-dadef754427c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-266da13d-42e7-459c-bf2a-dadef754427c {
    width: 100%;
    height: auto;
  }

  #s-266da13d-42e7-459c-bf2a-dadef754427c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image {
    
    
  }


.s-266da13d-42e7-459c-bf2a-dadef754427c .shogun-image-content {
  
    align-items: center;
  
}

.s-266da13d-42e7-459c-bf2a-dadef754427c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-266da13d-42e7-459c-bf2a-dadef754427c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image-container {
      position: relative;
    }

    .s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-266da13d-42e7-459c-bf2a-dadef754427c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-266da13d-42e7-459c-bf2a-dadef754427c img.shogun-image,
  #s-266da13d-42e7-459c-bf2a-dadef754427c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-266da13d-42e7-459c-bf2a-dadef754427c {
    width: 100%;
    height: auto;
  }

  #s-266da13d-42e7-459c-bf2a-dadef754427c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image {
    
    
  }


.s-266da13d-42e7-459c-bf2a-dadef754427c .shogun-image-content {
  
    align-items: center;
  
}

.s-266da13d-42e7-459c-bf2a-dadef754427c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-266da13d-42e7-459c-bf2a-dadef754427c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image-container {
      position: relative;
    }

    .s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-266da13d-42e7-459c-bf2a-dadef754427c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-266da13d-42e7-459c-bf2a-dadef754427c img.shogun-image,
  #s-266da13d-42e7-459c-bf2a-dadef754427c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-266da13d-42e7-459c-bf2a-dadef754427c {
    width: 100%;
    height: auto;
  }

  #s-266da13d-42e7-459c-bf2a-dadef754427c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image {
    
    
  }


.s-266da13d-42e7-459c-bf2a-dadef754427c .shogun-image-content {
  
    align-items: center;
  
}

.s-266da13d-42e7-459c-bf2a-dadef754427c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-266da13d-42e7-459c-bf2a-dadef754427c {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image-container {
      position: relative;
    }

    .s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-266da13d-42e7-459c-bf2a-dadef754427c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-266da13d-42e7-459c-bf2a-dadef754427c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-f490bbc5-aa22-4d80-b456-b8ae0f747487 {
  max-width: 688px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-f490bbc5-aa22-4d80-b456-b8ae0f747487 img.shogun-image,
  #s-f490bbc5-aa22-4d80-b456-b8ae0f747487 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f490bbc5-aa22-4d80-b456-b8ae0f747487 {
    width: 100%;
    height: auto;
  }

  #s-f490bbc5-aa22-4d80-b456-b8ae0f747487 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image {
    
    
  }


.s-f490bbc5-aa22-4d80-b456-b8ae0f747487 .shogun-image-content {
  
    align-items: center;
  
}

.s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image-container {
      position: relative;
    }

    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-f490bbc5-aa22-4d80-b456-b8ae0f747487 img.shogun-image,
  #s-f490bbc5-aa22-4d80-b456-b8ae0f747487 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f490bbc5-aa22-4d80-b456-b8ae0f747487 {
    width: 100%;
    height: auto;
  }

  #s-f490bbc5-aa22-4d80-b456-b8ae0f747487 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image {
    
    
  }


.s-f490bbc5-aa22-4d80-b456-b8ae0f747487 .shogun-image-content {
  
    align-items: center;
  
}

.s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image-container {
      position: relative;
    }

    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-f490bbc5-aa22-4d80-b456-b8ae0f747487 img.shogun-image,
  #s-f490bbc5-aa22-4d80-b456-b8ae0f747487 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f490bbc5-aa22-4d80-b456-b8ae0f747487 {
    width: 100%;
    height: auto;
  }

  #s-f490bbc5-aa22-4d80-b456-b8ae0f747487 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image {
    
    
  }


.s-f490bbc5-aa22-4d80-b456-b8ae0f747487 .shogun-image-content {
  
    align-items: center;
  
}

.s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image-container {
      position: relative;
    }

    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-f490bbc5-aa22-4d80-b456-b8ae0f747487 img.shogun-image,
  #s-f490bbc5-aa22-4d80-b456-b8ae0f747487 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f490bbc5-aa22-4d80-b456-b8ae0f747487 {
    width: 100%;
    height: auto;
  }

  #s-f490bbc5-aa22-4d80-b456-b8ae0f747487 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image {
    
    
  }


.s-f490bbc5-aa22-4d80-b456-b8ae0f747487 .shogun-image-content {
  
    align-items: center;
  
}

.s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image-container {
      position: relative;
    }

    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-f490bbc5-aa22-4d80-b456-b8ae0f747487 img.shogun-image,
  #s-f490bbc5-aa22-4d80-b456-b8ae0f747487 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f490bbc5-aa22-4d80-b456-b8ae0f747487 {
    width: 100%;
    height: auto;
  }

  #s-f490bbc5-aa22-4d80-b456-b8ae0f747487 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image {
    
    
  }


.s-f490bbc5-aa22-4d80-b456-b8ae0f747487 .shogun-image-content {
  
    align-items: center;
  
}

.s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image-container {
      position: relative;
    }

    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f490bbc5-aa22-4d80-b456-b8ae0f747487 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-c5bf70a5-32e4-4a8a-aea6-84bd48fc388c {
  min-height: 50px;
}
@media (max-width: 767px){#s-c5bf70a5-32e4-4a8a-aea6-84bd48fc388c {
  display: none;
}
#s-c5bf70a5-32e4-4a8a-aea6-84bd48fc388c, #wrap-s-c5bf70a5-32e4-4a8a-aea6-84bd48fc388c { display: none !important; }}







#s-c5bf70a5-32e4-4a8a-aea6-84bd48fc388c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c5bf70a5-32e4-4a8a-aea6-84bd48fc388c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 991px){#s-3c0b62ba-a549-4f18-a6de-f8bf256ee230 {
  display: none;
}
#s-3c0b62ba-a549-4f18-a6de-f8bf256ee230, #wrap-s-3c0b62ba-a549-4f18-a6de-f8bf256ee230 { display: none !important; }}
@media (min-width: 0px) {
[id="s-3c0b62ba-a549-4f18-a6de-f8bf256ee230"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3c0b62ba-a549-4f18-a6de-f8bf256ee230"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-3c0b62ba-a549-4f18-a6de-f8bf256ee230"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-3c0b62ba-a549-4f18-a6de-f8bf256ee230"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-3c0b62ba-a549-4f18-a6de-f8bf256ee230"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-3c0b62ba-a549-4f18-a6de-f8bf256ee230"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-3c0b62ba-a549-4f18-a6de-f8bf256ee230"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

}

#s-825616c1-252f-41b9-8763-6ef58cd434e8 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 10px;
margin-bottom: 10px;
min-height: 380px;
background-position: center center;
}
@media (max-width: 767px){#s-825616c1-252f-41b9-8763-6ef58cd434e8 {
  display: none;
}
#s-825616c1-252f-41b9-8763-6ef58cd434e8, #wrap-s-825616c1-252f-41b9-8763-6ef58cd434e8 { display: none !important; }}







#s-825616c1-252f-41b9-8763-6ef58cd434e8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-825616c1-252f-41b9-8763-6ef58cd434e8 {
  cursor: pointer;
}#s-825616c1-252f-41b9-8763-6ef58cd434e8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7ef754dc-320a-4550-bb22-193279ceb8e9 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 10px;
margin-bottom: 10px;
min-height: 450px;
background-position: center center;
}
@media (max-width: 767px){#s-7ef754dc-320a-4550-bb22-193279ceb8e9 {
  
}
}
#s-7ef754dc-320a-4550-bb22-193279ceb8e9 {
  background-image: url(https://i.shgcdn.com/8342fec8-59f1-4ba3-bcbb-a8291b9a7337/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-7ef754dc-320a-4550-bb22-193279ceb8e9 {
  background-image: url(https://i.shgcdn.com/8342fec8-59f1-4ba3-bcbb-a8291b9a7337/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/480x/);
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-7ef754dc-320a-4550-bb22-193279ceb8e9 {
  background-image: url(https://i.shgcdn.com/8342fec8-59f1-4ba3-bcbb-a8291b9a7337/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/960x/);
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-7ef754dc-320a-4550-bb22-193279ceb8e9 {
  background-image: url(https://i.shgcdn.com/8342fec8-59f1-4ba3-bcbb-a8291b9a7337/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/768x/);
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-7ef754dc-320a-4550-bb22-193279ceb8e9 {
  background-image: url(https://i.shgcdn.com/8342fec8-59f1-4ba3-bcbb-a8291b9a7337/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1536x/);
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-7ef754dc-320a-4550-bb22-193279ceb8e9 {
  background-image: url(https://i.shgcdn.com/8342fec8-59f1-4ba3-bcbb-a8291b9a7337/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1024x/);
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-7ef754dc-320a-4550-bb22-193279ceb8e9 {
  background-image: url(https://i.shgcdn.com/8342fec8-59f1-4ba3-bcbb-a8291b9a7337/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-7ef754dc-320a-4550-bb22-193279ceb8e9 {
  background-image: url(https://i.shgcdn.com/8342fec8-59f1-4ba3-bcbb-a8291b9a7337/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1200x/);
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-7ef754dc-320a-4550-bb22-193279ceb8e9 {
  background-image: url(https://i.shgcdn.com/8342fec8-59f1-4ba3-bcbb-a8291b9a7337/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}

}







#s-7ef754dc-320a-4550-bb22-193279ceb8e9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7ef754dc-320a-4550-bb22-193279ceb8e9 {
  cursor: pointer;
}#s-7ef754dc-320a-4550-bb22-193279ceb8e9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-328527ab-7fff-4bb6-972c-404b98331519 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-328527ab-7fff-4bb6-972c-404b98331519 {
  display: none;
}
#s-328527ab-7fff-4bb6-972c-404b98331519, #wrap-s-328527ab-7fff-4bb6-972c-404b98331519 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-328527ab-7fff-4bb6-972c-404b98331519 {
  display: none;
}
#s-328527ab-7fff-4bb6-972c-404b98331519, #wrap-s-328527ab-7fff-4bb6-972c-404b98331519 { display: none !important; }}@media (max-width: 767px){#s-328527ab-7fff-4bb6-972c-404b98331519 {
  display: none;
}
#s-328527ab-7fff-4bb6-972c-404b98331519, #wrap-s-328527ab-7fff-4bb6-972c-404b98331519 { display: none !important; }}







#s-328527ab-7fff-4bb6-972c-404b98331519 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-328527ab-7fff-4bb6-972c-404b98331519.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3eea5050-4ddd-42d2-a69a-32c97512f2be {
  max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-3eea5050-4ddd-42d2-a69a-32c97512f2be img.shogun-image,
  #s-3eea5050-4ddd-42d2-a69a-32c97512f2be .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3eea5050-4ddd-42d2-a69a-32c97512f2be {
    width: 100%;
    height: auto;
  }

  #s-3eea5050-4ddd-42d2-a69a-32c97512f2be img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image {
    
    
  }


.s-3eea5050-4ddd-42d2-a69a-32c97512f2be .shogun-image-content {
  
    align-items: center;
  
}

.s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image-container {
      position: relative;
    }

    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-3eea5050-4ddd-42d2-a69a-32c97512f2be img.shogun-image,
  #s-3eea5050-4ddd-42d2-a69a-32c97512f2be .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3eea5050-4ddd-42d2-a69a-32c97512f2be {
    width: 100%;
    height: auto;
  }

  #s-3eea5050-4ddd-42d2-a69a-32c97512f2be img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image {
    
    
  }


.s-3eea5050-4ddd-42d2-a69a-32c97512f2be .shogun-image-content {
  
    align-items: center;
  
}

.s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image-container {
      position: relative;
    }

    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-3eea5050-4ddd-42d2-a69a-32c97512f2be img.shogun-image,
  #s-3eea5050-4ddd-42d2-a69a-32c97512f2be .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3eea5050-4ddd-42d2-a69a-32c97512f2be {
    width: 100%;
    height: auto;
  }

  #s-3eea5050-4ddd-42d2-a69a-32c97512f2be img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image {
    
    
  }


.s-3eea5050-4ddd-42d2-a69a-32c97512f2be .shogun-image-content {
  
    align-items: center;
  
}

.s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image-container {
      position: relative;
    }

    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-3eea5050-4ddd-42d2-a69a-32c97512f2be img.shogun-image,
  #s-3eea5050-4ddd-42d2-a69a-32c97512f2be .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3eea5050-4ddd-42d2-a69a-32c97512f2be {
    width: 100%;
    height: auto;
  }

  #s-3eea5050-4ddd-42d2-a69a-32c97512f2be img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image {
    
    
  }


.s-3eea5050-4ddd-42d2-a69a-32c97512f2be .shogun-image-content {
  
    align-items: center;
  
}

.s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image-container {
      position: relative;
    }

    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-3eea5050-4ddd-42d2-a69a-32c97512f2be img.shogun-image,
  #s-3eea5050-4ddd-42d2-a69a-32c97512f2be .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3eea5050-4ddd-42d2-a69a-32c97512f2be {
    width: 100%;
    height: auto;
  }

  #s-3eea5050-4ddd-42d2-a69a-32c97512f2be img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image {
    
    
  }


.s-3eea5050-4ddd-42d2-a69a-32c97512f2be .shogun-image-content {
  
    align-items: center;
  
}

.s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image-container {
      position: relative;
    }

    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3eea5050-4ddd-42d2-a69a-32c97512f2be img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-45806419-75dd-479d-9a0d-e12194b3d905 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-45806419-75dd-479d-9a0d-e12194b3d905 {
  display: none;
}
#s-45806419-75dd-479d-9a0d-e12194b3d905, #wrap-s-45806419-75dd-479d-9a0d-e12194b3d905 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-45806419-75dd-479d-9a0d-e12194b3d905 {
  display: none;
}
#s-45806419-75dd-479d-9a0d-e12194b3d905, #wrap-s-45806419-75dd-479d-9a0d-e12194b3d905 { display: none !important; }}@media (max-width: 767px){#s-45806419-75dd-479d-9a0d-e12194b3d905 {
  display: none;
}
#s-45806419-75dd-479d-9a0d-e12194b3d905, #wrap-s-45806419-75dd-479d-9a0d-e12194b3d905 { display: none !important; }}







#s-45806419-75dd-479d-9a0d-e12194b3d905 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-45806419-75dd-479d-9a0d-e12194b3d905.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bda1a56b-4601-4529-a4a6-1077c2548128 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-bda1a56b-4601-4529-a4a6-1077c2548128 {
  display: none;
}
#s-bda1a56b-4601-4529-a4a6-1077c2548128, #wrap-s-bda1a56b-4601-4529-a4a6-1077c2548128 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bda1a56b-4601-4529-a4a6-1077c2548128 {
  display: none;
}
#s-bda1a56b-4601-4529-a4a6-1077c2548128, #wrap-s-bda1a56b-4601-4529-a4a6-1077c2548128 { display: none !important; }}@media (max-width: 767px){#s-bda1a56b-4601-4529-a4a6-1077c2548128 {
  display: none;
}
#s-bda1a56b-4601-4529-a4a6-1077c2548128, #wrap-s-bda1a56b-4601-4529-a4a6-1077c2548128 { display: none !important; }}







#s-bda1a56b-4601-4529-a4a6-1077c2548128 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bda1a56b-4601-4529-a4a6-1077c2548128.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-dd0c44f3-b47b-41bb-aeea-80611a030e7a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-dd0c44f3-b47b-41bb-aeea-80611a030e7a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-dd0c44f3-b47b-41bb-aeea-80611a030e7a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-dd0c44f3-b47b-41bb-aeea-80611a030e7a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-0992dfab-7086-4930-bc00-824297e6b0fa {
  max-width: 2625px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-0992dfab-7086-4930-bc00-824297e6b0fa img.shogun-image,
  #s-0992dfab-7086-4930-bc00-824297e6b0fa .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0992dfab-7086-4930-bc00-824297e6b0fa {
    width: 100%;
    height: auto;
  }

  #s-0992dfab-7086-4930-bc00-824297e6b0fa img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image {
    
    
  }


.s-0992dfab-7086-4930-bc00-824297e6b0fa .shogun-image-content {
  
    align-items: center;
  
}

.s-0992dfab-7086-4930-bc00-824297e6b0fa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0992dfab-7086-4930-bc00-824297e6b0fa {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image-container {
      position: relative;
    }

    .s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0992dfab-7086-4930-bc00-824297e6b0fa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-0992dfab-7086-4930-bc00-824297e6b0fa img.shogun-image,
  #s-0992dfab-7086-4930-bc00-824297e6b0fa .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0992dfab-7086-4930-bc00-824297e6b0fa {
    width: 100%;
    height: auto;
  }

  #s-0992dfab-7086-4930-bc00-824297e6b0fa img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image {
    
    
  }


.s-0992dfab-7086-4930-bc00-824297e6b0fa .shogun-image-content {
  
    align-items: center;
  
}

.s-0992dfab-7086-4930-bc00-824297e6b0fa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0992dfab-7086-4930-bc00-824297e6b0fa {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image-container {
      position: relative;
    }

    .s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0992dfab-7086-4930-bc00-824297e6b0fa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-0992dfab-7086-4930-bc00-824297e6b0fa img.shogun-image,
  #s-0992dfab-7086-4930-bc00-824297e6b0fa .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0992dfab-7086-4930-bc00-824297e6b0fa {
    width: 100%;
    height: auto;
  }

  #s-0992dfab-7086-4930-bc00-824297e6b0fa img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image {
    
    
  }


.s-0992dfab-7086-4930-bc00-824297e6b0fa .shogun-image-content {
  
    align-items: center;
  
}

.s-0992dfab-7086-4930-bc00-824297e6b0fa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0992dfab-7086-4930-bc00-824297e6b0fa {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image-container {
      position: relative;
    }

    .s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0992dfab-7086-4930-bc00-824297e6b0fa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-0992dfab-7086-4930-bc00-824297e6b0fa img.shogun-image,
  #s-0992dfab-7086-4930-bc00-824297e6b0fa .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0992dfab-7086-4930-bc00-824297e6b0fa {
    width: 100%;
    height: auto;
  }

  #s-0992dfab-7086-4930-bc00-824297e6b0fa img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image {
    
    
  }


.s-0992dfab-7086-4930-bc00-824297e6b0fa .shogun-image-content {
  
    align-items: center;
  
}

.s-0992dfab-7086-4930-bc00-824297e6b0fa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0992dfab-7086-4930-bc00-824297e6b0fa {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image-container {
      position: relative;
    }

    .s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0992dfab-7086-4930-bc00-824297e6b0fa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-0992dfab-7086-4930-bc00-824297e6b0fa img.shogun-image,
  #s-0992dfab-7086-4930-bc00-824297e6b0fa .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0992dfab-7086-4930-bc00-824297e6b0fa {
    width: 100%;
    height: auto;
  }

  #s-0992dfab-7086-4930-bc00-824297e6b0fa img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image {
    
    
  }


.s-0992dfab-7086-4930-bc00-824297e6b0fa .shogun-image-content {
  
    align-items: center;
  
}

.s-0992dfab-7086-4930-bc00-824297e6b0fa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0992dfab-7086-4930-bc00-824297e6b0fa {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image-container {
      position: relative;
    }

    .s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0992dfab-7086-4930-bc00-824297e6b0fa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0992dfab-7086-4930-bc00-824297e6b0fa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-c21d1a19-007e-46b9-b8f2-2060ad21edbd {
  max-width: 2625px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-c21d1a19-007e-46b9-b8f2-2060ad21edbd img.shogun-image,
  #s-c21d1a19-007e-46b9-b8f2-2060ad21edbd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c21d1a19-007e-46b9-b8f2-2060ad21edbd {
    width: 100%;
    height: auto;
  }

  #s-c21d1a19-007e-46b9-b8f2-2060ad21edbd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image {
    
    
  }


.s-c21d1a19-007e-46b9-b8f2-2060ad21edbd .shogun-image-content {
  
    align-items: center;
  
}

.s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image-container {
      position: relative;
    }

    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-c21d1a19-007e-46b9-b8f2-2060ad21edbd img.shogun-image,
  #s-c21d1a19-007e-46b9-b8f2-2060ad21edbd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c21d1a19-007e-46b9-b8f2-2060ad21edbd {
    width: 100%;
    height: auto;
  }

  #s-c21d1a19-007e-46b9-b8f2-2060ad21edbd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image {
    
    
  }


.s-c21d1a19-007e-46b9-b8f2-2060ad21edbd .shogun-image-content {
  
    align-items: center;
  
}

.s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image-container {
      position: relative;
    }

    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-c21d1a19-007e-46b9-b8f2-2060ad21edbd img.shogun-image,
  #s-c21d1a19-007e-46b9-b8f2-2060ad21edbd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c21d1a19-007e-46b9-b8f2-2060ad21edbd {
    width: 100%;
    height: auto;
  }

  #s-c21d1a19-007e-46b9-b8f2-2060ad21edbd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image {
    
    
  }


.s-c21d1a19-007e-46b9-b8f2-2060ad21edbd .shogun-image-content {
  
    align-items: center;
  
}

.s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image-container {
      position: relative;
    }

    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-c21d1a19-007e-46b9-b8f2-2060ad21edbd img.shogun-image,
  #s-c21d1a19-007e-46b9-b8f2-2060ad21edbd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c21d1a19-007e-46b9-b8f2-2060ad21edbd {
    width: 100%;
    height: auto;
  }

  #s-c21d1a19-007e-46b9-b8f2-2060ad21edbd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image {
    
    
  }


.s-c21d1a19-007e-46b9-b8f2-2060ad21edbd .shogun-image-content {
  
    align-items: center;
  
}

.s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image-container {
      position: relative;
    }

    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-c21d1a19-007e-46b9-b8f2-2060ad21edbd img.shogun-image,
  #s-c21d1a19-007e-46b9-b8f2-2060ad21edbd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c21d1a19-007e-46b9-b8f2-2060ad21edbd {
    width: 100%;
    height: auto;
  }

  #s-c21d1a19-007e-46b9-b8f2-2060ad21edbd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image {
    
    
  }


.s-c21d1a19-007e-46b9-b8f2-2060ad21edbd .shogun-image-content {
  
    align-items: center;
  
}

.s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image-container {
      position: relative;
    }

    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c21d1a19-007e-46b9-b8f2-2060ad21edbd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-64713c00-faea-456e-8708-977b6f582a31 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 400px;
}
@media (min-width: 768px) and (max-width: 991px){#s-64713c00-faea-456e-8708-977b6f582a31 {
  min-height: 200px;
}
}@media (max-width: 767px){#s-64713c00-faea-456e-8708-977b6f582a31 {
  
}
}







#s-64713c00-faea-456e-8708-977b6f582a31 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-64713c00-faea-456e-8708-977b6f582a31.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 {
  color: rgba(0, 0, 0, 1);
  font-family: Assistant, sans-serif;
  font-weight: normal;
}

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

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

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

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

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

.shg-default-text-content p {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: rgba(0, 0, 0, 1);
  font-family: Assistant, sans-serif;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-theme-text-content h1,
.shg-theme-text-content h2,
.shg-theme-text-content h3,
.shg-theme-text-content h4,
.shg-theme-text-content h5,
.shg-theme-text-content h6 {
  color: rgba(0, 0, 0, 1);
  font-family: Assistant, sans-serif;
  font-weight: normal;
}

.shg-theme-text-content p {
  color: rgba(0, 0, 0, 1);
  font-family: Assistant, sans-serif;
  font-weight: normal;
}

@media (min-width: 768px) and (max-width: 991px){#s-ea7b5d89-6922-47f5-8820-0489f3a198dd {
  margin-top: 20px;
margin-bottom: 20px;
}
}
#s-b3656081-9535-49bf-b03a-4645686d7554 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(8, 26, 67, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-b3656081-9535-49bf-b03a-4645686d7554:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b3656081-9535-49bf-b03a-4645686d7554:active {background-color: rgba(184, 214, 216, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-b3656081-9535-49bf-b03a-4645686d7554 {
  margin-top: 20px;
margin-bottom: 20px;
}
}

  #s-b3656081-9535-49bf-b03a-4645686d7554-root {
    text-align: center;
  }


#s-b3656081-9535-49bf-b03a-4645686d7554.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b3656081-9535-49bf-b03a-4645686d7554-root {
    text-align: center;
  }


#s-b3656081-9535-49bf-b03a-4645686d7554.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b3656081-9535-49bf-b03a-4645686d7554-root {
    text-align: center;
  }


#s-b3656081-9535-49bf-b03a-4645686d7554.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b3656081-9535-49bf-b03a-4645686d7554-root {
    text-align: center;
  }


#s-b3656081-9535-49bf-b03a-4645686d7554.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b3656081-9535-49bf-b03a-4645686d7554-root {
    text-align: center;
  }


#s-b3656081-9535-49bf-b03a-4645686d7554.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-7b8a4096-772e-428d-800e-5b1ecb69d26c {
  min-height: 50px;
}
@media (min-width: 1200px){#s-7b8a4096-772e-428d-800e-5b1ecb69d26c {
  display: none;
}
#s-7b8a4096-772e-428d-800e-5b1ecb69d26c, #wrap-s-7b8a4096-772e-428d-800e-5b1ecb69d26c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7b8a4096-772e-428d-800e-5b1ecb69d26c {
  display: none;
}
#s-7b8a4096-772e-428d-800e-5b1ecb69d26c, #wrap-s-7b8a4096-772e-428d-800e-5b1ecb69d26c { display: none !important; }}@media (max-width: 767px){#s-7b8a4096-772e-428d-800e-5b1ecb69d26c {
  display: none;
}
#s-7b8a4096-772e-428d-800e-5b1ecb69d26c, #wrap-s-7b8a4096-772e-428d-800e-5b1ecb69d26c { display: none !important; }}







#s-7b8a4096-772e-428d-800e-5b1ecb69d26c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7b8a4096-772e-428d-800e-5b1ecb69d26c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0491ed65-cfce-43fe-94d2-032504fd916d {
  max-width: 1500px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-0491ed65-cfce-43fe-94d2-032504fd916d img.shogun-image,
  #s-0491ed65-cfce-43fe-94d2-032504fd916d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0491ed65-cfce-43fe-94d2-032504fd916d {
    width: 100%;
    height: auto;
  }

  #s-0491ed65-cfce-43fe-94d2-032504fd916d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image {
    
    
  }


.s-0491ed65-cfce-43fe-94d2-032504fd916d .shogun-image-content {
  
    align-items: center;
  
}

.s-0491ed65-cfce-43fe-94d2-032504fd916d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0491ed65-cfce-43fe-94d2-032504fd916d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image-container {
      position: relative;
    }

    .s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0491ed65-cfce-43fe-94d2-032504fd916d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-0491ed65-cfce-43fe-94d2-032504fd916d img.shogun-image,
  #s-0491ed65-cfce-43fe-94d2-032504fd916d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0491ed65-cfce-43fe-94d2-032504fd916d {
    width: 100%;
    height: auto;
  }

  #s-0491ed65-cfce-43fe-94d2-032504fd916d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image {
    
    
  }


.s-0491ed65-cfce-43fe-94d2-032504fd916d .shogun-image-content {
  
    align-items: center;
  
}

.s-0491ed65-cfce-43fe-94d2-032504fd916d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0491ed65-cfce-43fe-94d2-032504fd916d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image-container {
      position: relative;
    }

    .s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0491ed65-cfce-43fe-94d2-032504fd916d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-0491ed65-cfce-43fe-94d2-032504fd916d img.shogun-image,
  #s-0491ed65-cfce-43fe-94d2-032504fd916d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0491ed65-cfce-43fe-94d2-032504fd916d {
    width: 100%;
    height: auto;
  }

  #s-0491ed65-cfce-43fe-94d2-032504fd916d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image {
    
    
  }


.s-0491ed65-cfce-43fe-94d2-032504fd916d .shogun-image-content {
  
    align-items: center;
  
}

.s-0491ed65-cfce-43fe-94d2-032504fd916d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0491ed65-cfce-43fe-94d2-032504fd916d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image-container {
      position: relative;
    }

    .s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0491ed65-cfce-43fe-94d2-032504fd916d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-0491ed65-cfce-43fe-94d2-032504fd916d img.shogun-image,
  #s-0491ed65-cfce-43fe-94d2-032504fd916d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0491ed65-cfce-43fe-94d2-032504fd916d {
    width: 100%;
    height: auto;
  }

  #s-0491ed65-cfce-43fe-94d2-032504fd916d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image {
    
    
  }


.s-0491ed65-cfce-43fe-94d2-032504fd916d .shogun-image-content {
  
    align-items: center;
  
}

.s-0491ed65-cfce-43fe-94d2-032504fd916d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0491ed65-cfce-43fe-94d2-032504fd916d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image-container {
      position: relative;
    }

    .s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0491ed65-cfce-43fe-94d2-032504fd916d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-0491ed65-cfce-43fe-94d2-032504fd916d img.shogun-image,
  #s-0491ed65-cfce-43fe-94d2-032504fd916d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0491ed65-cfce-43fe-94d2-032504fd916d {
    width: 100%;
    height: auto;
  }

  #s-0491ed65-cfce-43fe-94d2-032504fd916d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image {
    
    
  }


.s-0491ed65-cfce-43fe-94d2-032504fd916d .shogun-image-content {
  
    align-items: center;
  
}

.s-0491ed65-cfce-43fe-94d2-032504fd916d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0491ed65-cfce-43fe-94d2-032504fd916d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image-container {
      position: relative;
    }

    .s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0491ed65-cfce-43fe-94d2-032504fd916d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0491ed65-cfce-43fe-94d2-032504fd916d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-7fc29fcf-4117-4713-98fd-5b87b2592712 {
  min-height: 50px;
}
@media (max-width: 767px){#s-7fc29fcf-4117-4713-98fd-5b87b2592712 {
  display: none;
}
#s-7fc29fcf-4117-4713-98fd-5b87b2592712, #wrap-s-7fc29fcf-4117-4713-98fd-5b87b2592712 { display: none !important; }}







#s-7fc29fcf-4117-4713-98fd-5b87b2592712 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7fc29fcf-4117-4713-98fd-5b87b2592712.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-755cb566-a686-4f72-b78c-e9f1163dc863 {
  margin-top: 20px;
margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 991px){#s-755cb566-a686-4f72-b78c-e9f1163dc863 {
  display: none;
}
#s-755cb566-a686-4f72-b78c-e9f1163dc863, #wrap-s-755cb566-a686-4f72-b78c-e9f1163dc863 { display: none !important; }}
@media (min-width: 0px) {
[id="s-755cb566-a686-4f72-b78c-e9f1163dc863"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-755cb566-a686-4f72-b78c-e9f1163dc863"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-755cb566-a686-4f72-b78c-e9f1163dc863"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-755cb566-a686-4f72-b78c-e9f1163dc863"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-f60d6a5a-2873-4f07-8bb6-b0ce56520b6e {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 10px;
margin-bottom: 10px;
min-height: 450px;
background-position: center center;
}
@media (max-width: 767px){#s-f60d6a5a-2873-4f07-8bb6-b0ce56520b6e {
  display: none;
}
#s-f60d6a5a-2873-4f07-8bb6-b0ce56520b6e, #wrap-s-f60d6a5a-2873-4f07-8bb6-b0ce56520b6e { display: none !important; }}
#s-f60d6a5a-2873-4f07-8bb6-b0ce56520b6e {
  background-image: url(https://i.shgcdn.com/ba9edc37-fa37-417f-bcfa-584e5a27dbca/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-f60d6a5a-2873-4f07-8bb6-b0ce56520b6e {
  background-image: url(https://i.shgcdn.com/ba9edc37-fa37-417f-bcfa-584e5a27dbca/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/480x/);
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-f60d6a5a-2873-4f07-8bb6-b0ce56520b6e {
  background-image: url(https://i.shgcdn.com/ba9edc37-fa37-417f-bcfa-584e5a27dbca/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/960x/);
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-f60d6a5a-2873-4f07-8bb6-b0ce56520b6e {
  background-image: url(https://i.shgcdn.com/ba9edc37-fa37-417f-bcfa-584e5a27dbca/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/768x/);
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-f60d6a5a-2873-4f07-8bb6-b0ce56520b6e {
  background-image: url(https://i.shgcdn.com/ba9edc37-fa37-417f-bcfa-584e5a27dbca/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1536x/);
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-f60d6a5a-2873-4f07-8bb6-b0ce56520b6e {
  background-image: url(https://i.shgcdn.com/ba9edc37-fa37-417f-bcfa-584e5a27dbca/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1024x/);
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-f60d6a5a-2873-4f07-8bb6-b0ce56520b6e {
  background-image: url(https://i.shgcdn.com/ba9edc37-fa37-417f-bcfa-584e5a27dbca/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-f60d6a5a-2873-4f07-8bb6-b0ce56520b6e {
  background-image: url(https://i.shgcdn.com/ba9edc37-fa37-417f-bcfa-584e5a27dbca/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1200x/);
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-f60d6a5a-2873-4f07-8bb6-b0ce56520b6e {
  background-image: url(https://i.shgcdn.com/ba9edc37-fa37-417f-bcfa-584e5a27dbca/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}

}







#s-f60d6a5a-2873-4f07-8bb6-b0ce56520b6e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f60d6a5a-2873-4f07-8bb6-b0ce56520b6e {
  cursor: pointer;
}#s-f60d6a5a-2873-4f07-8bb6-b0ce56520b6e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-46044164-0701-42ca-b741-6e8f772e2a5a {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 400px;
}
@media (max-width: 767px){#s-46044164-0701-42ca-b741-6e8f772e2a5a {
  
}
}







#s-46044164-0701-42ca-b741-6e8f772e2a5a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-46044164-0701-42ca-b741-6e8f772e2a5a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-43f48bba-3f17-411b-ad25-e669cf139c43 {
  min-height: 50px;
}








#s-43f48bba-3f17-411b-ad25-e669cf139c43 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-43f48bba-3f17-411b-ad25-e669cf139c43.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-75f005fb-ee5d-4449-a3bb-db95a4ef7cf9 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(8, 26, 67, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-75f005fb-ee5d-4449-a3bb-db95a4ef7cf9:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-75f005fb-ee5d-4449-a3bb-db95a4ef7cf9:active {background-color: rgba(184, 214, 216, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-75f005fb-ee5d-4449-a3bb-db95a4ef7cf9-root {
    text-align: center;
  }


#s-75f005fb-ee5d-4449-a3bb-db95a4ef7cf9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-75f005fb-ee5d-4449-a3bb-db95a4ef7cf9-root {
    text-align: center;
  }


#s-75f005fb-ee5d-4449-a3bb-db95a4ef7cf9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-75f005fb-ee5d-4449-a3bb-db95a4ef7cf9-root {
    text-align: center;
  }


#s-75f005fb-ee5d-4449-a3bb-db95a4ef7cf9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-75f005fb-ee5d-4449-a3bb-db95a4ef7cf9-root {
    text-align: center;
  }


#s-75f005fb-ee5d-4449-a3bb-db95a4ef7cf9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-75f005fb-ee5d-4449-a3bb-db95a4ef7cf9-root {
    text-align: center;
  }


#s-75f005fb-ee5d-4449-a3bb-db95a4ef7cf9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-59273eb0-ef4c-4fd9-961a-64817cd94e72 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 10px;
margin-bottom: 10px;
min-height: 400px;
background-position: center center;
}
@media (min-width: 1200px){#s-59273eb0-ef4c-4fd9-961a-64817cd94e72 {
  min-height: 450px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-59273eb0-ef4c-4fd9-961a-64817cd94e72 {
  min-height: 450px;
}
}@media (max-width: 767px){#s-59273eb0-ef4c-4fd9-961a-64817cd94e72 {
  display: none;
}
#s-59273eb0-ef4c-4fd9-961a-64817cd94e72, #wrap-s-59273eb0-ef4c-4fd9-961a-64817cd94e72 { display: none !important; }}
#s-59273eb0-ef4c-4fd9-961a-64817cd94e72 {
  background-image: url(https://i.shgcdn.com/4f014a5b-9e95-4b10-9660-9d658ac7850e/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-59273eb0-ef4c-4fd9-961a-64817cd94e72 {
  background-image: url(https://i.shgcdn.com/4f014a5b-9e95-4b10-9660-9d658ac7850e/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/480x/);
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-59273eb0-ef4c-4fd9-961a-64817cd94e72 {
  background-image: url(https://i.shgcdn.com/4f014a5b-9e95-4b10-9660-9d658ac7850e/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/960x/);
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-59273eb0-ef4c-4fd9-961a-64817cd94e72 {
  background-image: url(https://i.shgcdn.com/4f014a5b-9e95-4b10-9660-9d658ac7850e/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/768x/);
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-59273eb0-ef4c-4fd9-961a-64817cd94e72 {
  background-image: url(https://i.shgcdn.com/4f014a5b-9e95-4b10-9660-9d658ac7850e/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1536x/);
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-59273eb0-ef4c-4fd9-961a-64817cd94e72 {
  background-image: url(https://i.shgcdn.com/4f014a5b-9e95-4b10-9660-9d658ac7850e/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1024x/);
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-59273eb0-ef4c-4fd9-961a-64817cd94e72 {
  background-image: url(https://i.shgcdn.com/4f014a5b-9e95-4b10-9660-9d658ac7850e/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-59273eb0-ef4c-4fd9-961a-64817cd94e72 {
  background-image: url(https://i.shgcdn.com/4f014a5b-9e95-4b10-9660-9d658ac7850e/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1200x/);
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-59273eb0-ef4c-4fd9-961a-64817cd94e72 {
  background-image: url(https://i.shgcdn.com/4f014a5b-9e95-4b10-9660-9d658ac7850e/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}

}







#s-59273eb0-ef4c-4fd9-961a-64817cd94e72 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-59273eb0-ef4c-4fd9-961a-64817cd94e72 {
  cursor: pointer;
}#s-59273eb0-ef4c-4fd9-961a-64817cd94e72.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-41d44fbf-692d-4421-b3d8-68ae89e11955 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-41d44fbf-692d-4421-b3d8-68ae89e11955 {
  display: none;
}
#s-41d44fbf-692d-4421-b3d8-68ae89e11955, #wrap-s-41d44fbf-692d-4421-b3d8-68ae89e11955 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-41d44fbf-692d-4421-b3d8-68ae89e11955 {
  display: none;
}
#s-41d44fbf-692d-4421-b3d8-68ae89e11955, #wrap-s-41d44fbf-692d-4421-b3d8-68ae89e11955 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-41d44fbf-692d-4421-b3d8-68ae89e11955 {
  display: none;
}
#s-41d44fbf-692d-4421-b3d8-68ae89e11955, #wrap-s-41d44fbf-692d-4421-b3d8-68ae89e11955 { display: none !important; }}@media (max-width: 767px){#s-41d44fbf-692d-4421-b3d8-68ae89e11955 {
  display: none;
}
#s-41d44fbf-692d-4421-b3d8-68ae89e11955, #wrap-s-41d44fbf-692d-4421-b3d8-68ae89e11955 { display: none !important; }}







#s-41d44fbf-692d-4421-b3d8-68ae89e11955 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-41d44fbf-692d-4421-b3d8-68ae89e11955.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5d501ab3-1b68-40d0-b0c1-970251f747d0 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 10px;
margin-bottom: 10px;
min-height: 300px;
background-position: center center;
}
@media (min-width: 1200px){#s-5d501ab3-1b68-40d0-b0c1-970251f747d0 {
  display: none;
}
#s-5d501ab3-1b68-40d0-b0c1-970251f747d0, #wrap-s-5d501ab3-1b68-40d0-b0c1-970251f747d0 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5d501ab3-1b68-40d0-b0c1-970251f747d0 {
  display: none;
}
#s-5d501ab3-1b68-40d0-b0c1-970251f747d0, #wrap-s-5d501ab3-1b68-40d0-b0c1-970251f747d0 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5d501ab3-1b68-40d0-b0c1-970251f747d0 {
  display: none;
}
#s-5d501ab3-1b68-40d0-b0c1-970251f747d0, #wrap-s-5d501ab3-1b68-40d0-b0c1-970251f747d0 { display: none !important; }}@media (max-width: 767px){#s-5d501ab3-1b68-40d0-b0c1-970251f747d0 {
  display: none;
}
#s-5d501ab3-1b68-40d0-b0c1-970251f747d0, #wrap-s-5d501ab3-1b68-40d0-b0c1-970251f747d0 { display: none !important; }}







#s-5d501ab3-1b68-40d0-b0c1-970251f747d0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5d501ab3-1b68-40d0-b0c1-970251f747d0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8c4f9ed2-1320-4e40-80d6-3dfc96c4b2d0 {
  background-repeat: no-repeat;
background-size: cover;
margin-left: 0%;
margin-right: 0%;
min-height: 400px;
background-position: center center;
}
@media (min-width: 1200px){#s-8c4f9ed2-1320-4e40-80d6-3dfc96c4b2d0 {
  display: none;
}
#s-8c4f9ed2-1320-4e40-80d6-3dfc96c4b2d0, #wrap-s-8c4f9ed2-1320-4e40-80d6-3dfc96c4b2d0 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8c4f9ed2-1320-4e40-80d6-3dfc96c4b2d0 {
  display: none;
}
#s-8c4f9ed2-1320-4e40-80d6-3dfc96c4b2d0, #wrap-s-8c4f9ed2-1320-4e40-80d6-3dfc96c4b2d0 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8c4f9ed2-1320-4e40-80d6-3dfc96c4b2d0 {
  
}
}@media (max-width: 767px){#s-8c4f9ed2-1320-4e40-80d6-3dfc96c4b2d0 {
  min-height: 300px;
}
}







#s-8c4f9ed2-1320-4e40-80d6-3dfc96c4b2d0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8c4f9ed2-1320-4e40-80d6-3dfc96c4b2d0 {
  cursor: pointer;
}#s-8c4f9ed2-1320-4e40-80d6-3dfc96c4b2d0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 991px){#s-5382a064-0fb0-41f7-bf11-434f50604b49 {
  display: none;
}
#s-5382a064-0fb0-41f7-bf11-434f50604b49, #wrap-s-5382a064-0fb0-41f7-bf11-434f50604b49 { display: none !important; }}
@media (min-width: 0px) {
[id="s-5382a064-0fb0-41f7-bf11-434f50604b49"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5382a064-0fb0-41f7-bf11-434f50604b49"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-5382a064-0fb0-41f7-bf11-434f50604b49"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-5382a064-0fb0-41f7-bf11-434f50604b49"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-567ca4d4-5b0a-4ae7-9ffa-0c442021737f {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 10px;
margin-bottom: 10px;
min-height: 450px;
background-position: center center;
}
@media (max-width: 767px){#s-567ca4d4-5b0a-4ae7-9ffa-0c442021737f {
  display: none;
}
#s-567ca4d4-5b0a-4ae7-9ffa-0c442021737f, #wrap-s-567ca4d4-5b0a-4ae7-9ffa-0c442021737f { display: none !important; }}







#s-567ca4d4-5b0a-4ae7-9ffa-0c442021737f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-567ca4d4-5b0a-4ae7-9ffa-0c442021737f {
  cursor: pointer;
}#s-567ca4d4-5b0a-4ae7-9ffa-0c442021737f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-375baf28-f46e-4900-8725-24bd9e91b3c1 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 460px;
background-position: center center;
}
@media (max-width: 767px){#s-375baf28-f46e-4900-8725-24bd9e91b3c1 {
  display: none;
}
#s-375baf28-f46e-4900-8725-24bd9e91b3c1, #wrap-s-375baf28-f46e-4900-8725-24bd9e91b3c1 { display: none !important; }}







#s-375baf28-f46e-4900-8725-24bd9e91b3c1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-375baf28-f46e-4900-8725-24bd9e91b3c1 {
  cursor: pointer;
}#s-375baf28-f46e-4900-8725-24bd9e91b3c1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-05bcd02b-0d6d-4160-9726-4c5cd8bfd15b {
  background-size: cover;
margin-top: 50px;
margin-bottom: 10px;
background-color: rgba(236, 236, 236, 1);
background-position: center center;
}
@media (max-width: 767px){#s-05bcd02b-0d6d-4160-9726-4c5cd8bfd15b {
  margin-bottom: 0px;
}
}







#s-05bcd02b-0d6d-4160-9726-4c5cd8bfd15b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-05bcd02b-0d6d-4160-9726-4c5cd8bfd15b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4addf4e1-aa94-4102-8f7e-f62326b37229 {
  margin-top: 50px;
margin-bottom: 50px;
}

@media (min-width: 0px) {
[id="s-4addf4e1-aa94-4102-8f7e-f62326b37229"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4addf4e1-aa94-4102-8f7e-f62326b37229"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-4addf4e1-aa94-4102-8f7e-f62326b37229"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-4addf4e1-aa94-4102-8f7e-f62326b37229"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (max-width: 767px) {
  [id="s-4addf4e1-aa94-4102-8f7e-f62326b37229"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-2131ead2-e663-4a9d-bb84-7a0c4a6a0e7c {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
background-color: rgba(236, 236, 236, 0);
}








#s-2131ead2-e663-4a9d-bb84-7a0c4a6a0e7c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2131ead2-e663-4a9d-bb84-7a0c4a6a0e7c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fadb03b4-bf06-4fd1-a90b-d3c8c1eed4f4 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}
@media (max-width: 767px){#s-fadb03b4-bf06-4fd1-a90b-d3c8c1eed4f4 {
  margin-left: 10px;
margin-right: 10px;
}
}
#s-f2241952-496e-4a39-b5a3-2bad77cc931d {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(8, 26, 67, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
letter-spacing: 1px;
}
#s-f2241952-496e-4a39-b5a3-2bad77cc931d:hover {background-color: #424242 !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;}#s-f2241952-496e-4a39-b5a3-2bad77cc931d:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-f2241952-496e-4a39-b5a3-2bad77cc931d-root {
    text-align: center;
  }


#s-f2241952-496e-4a39-b5a3-2bad77cc931d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f2241952-496e-4a39-b5a3-2bad77cc931d-root {
    text-align: center;
  }


#s-f2241952-496e-4a39-b5a3-2bad77cc931d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f2241952-496e-4a39-b5a3-2bad77cc931d-root {
    text-align: center;
  }


#s-f2241952-496e-4a39-b5a3-2bad77cc931d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f2241952-496e-4a39-b5a3-2bad77cc931d-root {
    text-align: center;
  }


#s-f2241952-496e-4a39-b5a3-2bad77cc931d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f2241952-496e-4a39-b5a3-2bad77cc931d-root {
    text-align: center;
  }


#s-f2241952-496e-4a39-b5a3-2bad77cc931d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-family: Open Sans;
  display:  inline-block ;
}
}
.shogun-video {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.shogun-video-16x9 {
  padding-bottom: 56.25%;
}

.shogun-video-4x3 {
  padding-bottom: 75%;
}

.shogun-video-embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#s-0cc08c6c-faf5-42e1-a06a-673564867549 {
  margin-top: 20px;
margin-bottom: 20px;
margin-right: 50px;
}
@media (max-width: 767px){#s-0cc08c6c-faf5-42e1-a06a-673564867549 {
  margin-top: 0px;
margin-bottom: 0px;
margin-right: 0px;
}
}
.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.shg-sld-slides {
  word-break: break-word;
  position: relative;
}

.shg-sld-slides-padded {
  padding: 0 35px;
}

.shg-sld-nav-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  min-height: 35px;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shg-sld-nav-button > svg {
  height: 100%;
  width: 100%;
}

.shg-sld-nav-button.shg-sld-left {
  left: 0;
}

.shg-sld-nav-button.shg-sld-left-over-content {
  left: 2%;
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
}

.shg-sld-nav-button.shg-sld-right-over-content {
  right: 2%;
}

.shg-sld-nav-button.shg-sld-disabled {
  cursor: default;
  opacity: 0.2;
}

.shg-sld-item {
  display: none;
}

.shg-sld-item.shg-sld-active {
  display: block;
}

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.shg-sld-dots-on-top {
  margin-top: -30px !important;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block !important;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  opacity: 0.5;
}

.shg-sld-dot:first-child {
  margin-left: 0px;
}

.shg-sld-dot.shg-sld-active {
  opacity: 1;
}

@keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#s-97e2edb1-3a08-4c1e-ba50-496f3b6101dd {
  padding-top: 5px;
padding-bottom: 5px;
}

#s-97e2edb1-3a08-4c1e-ba50-496f3b6101dd .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-97e2edb1-3a08-4c1e-ba50-496f3b6101dd .shg-sld-nav-button.shg-sld-left,
#s-97e2edb1-3a08-4c1e-ba50-496f3b6101dd .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-c6e98787-989f-4e8a-b60b-1779e3e26eae {
  background-size: cover;
min-height: 200px;
background-color: rgba(236, 236, 236, 1);
background-position: center center;
}








#s-c6e98787-989f-4e8a-b60b-1779e3e26eae > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c6e98787-989f-4e8a-b60b-1779e3e26eae.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6a1b53f7-01ce-4c03-8efb-529e84a87b4a {
  margin-left: 50px;
margin-right: 50px;
}
@media (max-width: 767px){#s-6a1b53f7-01ce-4c03-8efb-529e84a87b4a {
  margin-left: 20px;
margin-right: 20px;
}
}
#s-0cc81cbd-f704-4382-bdaa-3e0b760017c3 {
  background-size: cover;
min-height: 200px;
background-color: rgba(236, 236, 236, 1);
background-position: center center;
}








#s-0cc81cbd-f704-4382-bdaa-3e0b760017c3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0cc81cbd-f704-4382-bdaa-3e0b760017c3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1ea71b87-1758-434e-96f4-eb8b0f032a61 {
  margin-left: 50px;
margin-right: 50px;
}
@media (max-width: 767px){#s-1ea71b87-1758-434e-96f4-eb8b0f032a61 {
  margin-left: 20px;
margin-right: 20px;
}
}
#s-30770a64-54ff-4f7e-94b2-36d00a57c2a7 {
  background-size: cover;
min-height: 200px;
background-color: rgba(236, 236, 236, 1);
background-position: center center;
}








#s-30770a64-54ff-4f7e-94b2-36d00a57c2a7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-30770a64-54ff-4f7e-94b2-36d00a57c2a7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2ee10b30-8595-4875-a80e-9f74c747aa56 {
  margin-left: 50px;
margin-right: 50px;
}
@media (max-width: 767px){#s-2ee10b30-8595-4875-a80e-9f74c747aa56 {
  margin-left: 20px;
margin-right: 20px;
}
}
#s-ecaa5a5c-e04c-4b66-956a-94f8d8407636 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 200px;
background-position: center center;
}








#s-ecaa5a5c-e04c-4b66-956a-94f8d8407636 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ecaa5a5c-e04c-4b66-956a-94f8d8407636.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e3c45acd-f91b-43f5-b629-80733784f9b7 {
  margin-left: 50px;
margin-right: 50px;
}
@media (max-width: 767px){#s-e3c45acd-f91b-43f5-b629-80733784f9b7 {
  margin-left: 20px;
margin-right: 20px;
}
}
#s-cc38c088-b339-43ce-9f46-2bdeb86939f6 {
  min-height: 200px;
background-color: rgba(236, 236, 236, 1);
}








#s-cc38c088-b339-43ce-9f46-2bdeb86939f6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cc38c088-b339-43ce-9f46-2bdeb86939f6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f948d075-e036-4ec1-96bd-59836e68429f {
  margin-left: 50px;
margin-right: 50px;
}

#s-e97cea31-284d-4f4d-b474-112a22bdbf44 {
  background-size: cover;
min-height: 200px;
background-color: rgba(236, 236, 236, 1);
background-position: center center;
}








#s-e97cea31-284d-4f4d-b474-112a22bdbf44 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e97cea31-284d-4f4d-b474-112a22bdbf44.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b055fa0c-f90a-42df-8b93-6f2ac96e1e95 {
  margin-left: 50px;
margin-right: 50px;
}
@media (max-width: 767px){#s-b055fa0c-f90a-42df-8b93-6f2ac96e1e95 {
  margin-left: 20px;
margin-right: 20px;
}
}
#s-da928d4b-99b2-4659-8120-5bcd934858b4 {
  background-size: cover;
min-height: 200px;
background-color: rgba(236, 236, 236, 1);
background-position: center center;
}
@media (max-width: 767px){#s-da928d4b-99b2-4659-8120-5bcd934858b4 {
  min-height: 200px;
}
}







#s-da928d4b-99b2-4659-8120-5bcd934858b4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-da928d4b-99b2-4659-8120-5bcd934858b4 {
  cursor: pointer;
}#s-da928d4b-99b2-4659-8120-5bcd934858b4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f5ff72da-c9a6-4573-bd49-1aee1af28a88 {
  margin-left: 50px;
margin-right: 50px;
}
@media (max-width: 767px){#s-f5ff72da-c9a6-4573-bd49-1aee1af28a88 {
  margin-left: 20px;
margin-right: 20px;
}
}
#s-6ed2f4c1-bb1a-49bf-b7e5-214abf8de472 {
  min-height: 50px;
}








#s-6ed2f4c1-bb1a-49bf-b7e5-214abf8de472 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6ed2f4c1-bb1a-49bf-b7e5-214abf8de472.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cb61e0ba-d745-4caf-aba6-1abb9ba13ee9 {
  min-height: 50px;
}








#s-cb61e0ba-d745-4caf-aba6-1abb9ba13ee9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cb61e0ba-d745-4caf-aba6-1abb9ba13ee9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-7c6a3eea-1ec1-4050-9937-69130a1cf7ca"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7c6a3eea-1ec1-4050-9937-69130a1cf7ca"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-7c6a3eea-1ec1-4050-9937-69130a1cf7ca"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-7c6a3eea-1ec1-4050-9937-69130a1cf7ca"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 0px) {
[id="s-51ffcb66-ffd5-4c94-8767-e5283afa82c9"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-51ffcb66-ffd5-4c94-8767-e5283afa82c9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-51ffcb66-ffd5-4c94-8767-e5283afa82c9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-51ffcb66-ffd5-4c94-8767-e5283afa82c9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

.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 {
  display: none;
  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-670e0dd9-eecb-422b-8b56-e4cf08a5c845 {
  text-align: left;
}


.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 {
  max-width:  100%;
}

.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-image-zoom,
.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image {
  max-width: 688px !important;
  
}

.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image {
  width: 100%;
}



.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image,
.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-image-zoom,
.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image {
  aspect-ratio: 688/1000;
}

@media (min-width: 1200px){
.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 {
  max-width:  100%;
}

.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-image-zoom,
.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image {
  max-width: 688px !important;
  
}

.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image {
  width: 100%;
}



.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image,
.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-image-zoom,
.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image {
  aspect-ratio: 688/1000;
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 {
  max-width:  100%;
}

.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-image-zoom,
.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image {
  max-width: 688px !important;
  
}

.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image {
  width: 100%;
}



.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image,
.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-image-zoom,
.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image {
  aspect-ratio: 688/1000;
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 {
  max-width:  100%;
}

.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-image-zoom,
.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image {
  max-width: 688px !important;
  
}

.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image {
  width: 100%;
}



.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image,
.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-image-zoom,
.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image {
  aspect-ratio: 688/1000;
}

}@media (max-width: 767px){
.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 {
  max-width:  100%;
}

.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-image-zoom,
.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image {
  max-width: 688px !important;
  
}

.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image {
  width: 100%;
}



.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image,
.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 .shg-image-zoom,
.shg-c#s-670e0dd9-eecb-422b-8b56-e4cf08a5c845 img.shogun-image {
  aspect-ratio: 688/1000;
}

}
.shg-product-title-component h1,
.shg-product-title-component h2,
.shg-product-title-component h3,
.shg-product-title-component h4,
.shg-product-title-component h5,
.shg-product-title-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: rgba(0, 0, 0, 1);
  font-family: Assistant, sans-serif;
  text-transform: none;
  font-weight: normal;
  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-44b553f1-ba17-4e4a-967e-a90b70ff150a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-44b553f1-ba17-4e4a-967e-a90b70ff150a .shg-product-title-component h1 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

.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-d9aa8a5f-f78a-499d-aba0-a0a3cef6653d {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(40, 37, 102, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-d9aa8a5f-f78a-499d-aba0-a0a3cef6653d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d9aa8a5f-f78a-499d-aba0-a0a3cef6653d:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-d9aa8a5f-f78a-499d-aba0-a0a3cef6653d {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d9aa8a5f-f78a-499d-aba0-a0a3cef6653d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d9aa8a5f-f78a-499d-aba0-a0a3cef6653d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-d9aa8a5f-f78a-499d-aba0-a0a3cef6653d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-7576d027-ea62-4ae9-a1e3-798370700f3c {
  text-align: left;
}


.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c {
  max-width:  100%;
}

.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-image-zoom,
.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image {
  max-width: 688px !important;
  
}

.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image {
  width: 100%;
}



.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image,
.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-image-zoom,
.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image {
  aspect-ratio: 688/1000;
}

@media (min-width: 1200px){
.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c {
  max-width:  100%;
}

.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-image-zoom,
.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image {
  max-width: 688px !important;
  
}

.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image {
  width: 100%;
}



.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image,
.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-image-zoom,
.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image {
  aspect-ratio: 688/1000;
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c {
  max-width:  100%;
}

.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-image-zoom,
.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image {
  max-width: 688px !important;
  
}

.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image {
  width: 100%;
}



.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image,
.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-image-zoom,
.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image {
  aspect-ratio: 688/1000;
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c {
  max-width:  100%;
}

.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-image-zoom,
.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image {
  max-width: 688px !important;
  
}

.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image {
  width: 100%;
}



.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image,
.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-image-zoom,
.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image {
  aspect-ratio: 688/1000;
}

}@media (max-width: 767px){
.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c {
  max-width:  100%;
}

.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-image-zoom,
.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image {
  max-width: 688px !important;
  
}

.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image {
  width: 100%;
}



.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image,
.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c .shg-image-zoom,
.shg-c#s-7576d027-ea62-4ae9-a1e3-798370700f3c img.shogun-image {
  aspect-ratio: 688/1000;
}

}
#s-dff13540-5a57-4b00-8682-18f2d5513ab3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-dff13540-5a57-4b00-8682-18f2d5513ab3 .shg-product-title-component h1 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-a4aee4e2-3b83-42ae-93ba-878170f74a24 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(40, 37, 102, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-a4aee4e2-3b83-42ae-93ba-878170f74a24:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a4aee4e2-3b83-42ae-93ba-878170f74a24:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-a4aee4e2-3b83-42ae-93ba-878170f74a24 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a4aee4e2-3b83-42ae-93ba-878170f74a24.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a4aee4e2-3b83-42ae-93ba-878170f74a24.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-a4aee4e2-3b83-42ae-93ba-878170f74a24.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



@media (min-width: 0px) {
[id="s-7988389a-6e05-4e6e-a1eb-1f63039bbe17"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-7988389a-6e05-4e6e-a1eb-1f63039bbe17"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-7988389a-6e05-4e6e-a1eb-1f63039bbe17"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-7988389a-6e05-4e6e-a1eb-1f63039bbe17"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 {
  text-align: left;
}


.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 {
  max-width:  100%;
}

.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-image-zoom,
.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image {
  max-width: 688px !important;
  
}

.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image {
  width: 100%;
}



.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image,
.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-image-zoom,
.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image {
  aspect-ratio: 688/1000;
}

@media (min-width: 1200px){
.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 {
  max-width:  100%;
}

.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-image-zoom,
.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image {
  max-width: 688px !important;
  
}

.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image {
  width: 100%;
}



.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image,
.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-image-zoom,
.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image {
  aspect-ratio: 688/1000;
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 {
  max-width:  100%;
}

.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-image-zoom,
.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image {
  max-width: 688px !important;
  
}

.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image {
  width: 100%;
}



.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image,
.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-image-zoom,
.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image {
  aspect-ratio: 688/1000;
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 {
  max-width:  100%;
}

.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-image-zoom,
.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image {
  max-width: 688px !important;
  
}

.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image {
  width: 100%;
}



.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image,
.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-image-zoom,
.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image {
  aspect-ratio: 688/1000;
}

}@media (max-width: 767px){
.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 {
  max-width:  100%;
}

.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-image-zoom,
.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image {
  max-width: 688px !important;
  
}

.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image {
  width: 100%;
}



.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image,
.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 .shg-image-zoom,
.shg-c#s-7a907b9e-f292-4b1b-83bb-ed30f5be67e9 img.shogun-image {
  aspect-ratio: 688/1000;
}

}
#s-ec3f3175-fc05-4c20-ad6f-acb088fe7e0d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ec3f3175-fc05-4c20-ad6f-acb088fe7e0d .shg-product-title-component h1 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-82391e64-d985-4548-9ed5-94d33ea1c83f {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(40, 37, 102, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-82391e64-d985-4548-9ed5-94d33ea1c83f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-82391e64-d985-4548-9ed5-94d33ea1c83f:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-82391e64-d985-4548-9ed5-94d33ea1c83f {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-82391e64-d985-4548-9ed5-94d33ea1c83f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-82391e64-d985-4548-9ed5-94d33ea1c83f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-82391e64-d985-4548-9ed5-94d33ea1c83f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-0c403e3b-c5c2-44c1-9f22-2e4788f89a82 {
  text-align: left;
}



.shg-c#s-0c403e3b-c5c2-44c1-9f22-2e4788f89a82 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0c403e3b-c5c2-44c1-9f22-2e4788f89a82 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-0c403e3b-c5c2-44c1-9f22-2e4788f89a82 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0c403e3b-c5c2-44c1-9f22-2e4788f89a82 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0c403e3b-c5c2-44c1-9f22-2e4788f89a82 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0c403e3b-c5c2-44c1-9f22-2e4788f89a82 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0c403e3b-c5c2-44c1-9f22-2e4788f89a82 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0c403e3b-c5c2-44c1-9f22-2e4788f89a82 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0c403e3b-c5c2-44c1-9f22-2e4788f89a82 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0c403e3b-c5c2-44c1-9f22-2e4788f89a82 img.shogun-image {
  width: 100%;
}



}
#s-c79a56a3-b3f7-4dd0-9303-fcff54964b8c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c79a56a3-b3f7-4dd0-9303-fcff54964b8c .shg-product-title-component h1 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-48ade514-6356-4a5b-bd95-d81b49383e26 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(40, 37, 102, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-48ade514-6356-4a5b-bd95-d81b49383e26:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-48ade514-6356-4a5b-bd95-d81b49383e26:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-48ade514-6356-4a5b-bd95-d81b49383e26 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-48ade514-6356-4a5b-bd95-d81b49383e26.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-48ade514-6356-4a5b-bd95-d81b49383e26.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-48ade514-6356-4a5b-bd95-d81b49383e26.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-0cfb1d17-487b-492d-bf4d-d38e9c0d92a6 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-0cfb1d17-487b-492d-bf4d-d38e9c0d92a6 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0cfb1d17-487b-492d-bf4d-d38e9c0d92a6 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-0cfb1d17-487b-492d-bf4d-d38e9c0d92a6 {
  
}
}@media (max-width: 767px){#s-0cfb1d17-487b-492d-bf4d-d38e9c0d92a6 {
  
}
}







#s-0cfb1d17-487b-492d-bf4d-d38e9c0d92a6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0cfb1d17-487b-492d-bf4d-d38e9c0d92a6.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-a8b2d95f-2867-4028-8458-32fe37b1f09e {
  background-size: cover;
min-height: 650px;
background-position: center center;
background-color: rgba(236, 236, 236, 1);
}








#s-a8b2d95f-2867-4028-8458-32fe37b1f09e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a8b2d95f-2867-4028-8458-32fe37b1f09e {
  cursor: pointer;
}#s-a8b2d95f-2867-4028-8458-32fe37b1f09e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-533a264e-0eca-4bf5-93dd-812f9e5cd48a {
  margin-top: 40px;
margin-bottom: 30px;
}
@media (min-width: 1200px){#s-533a264e-0eca-4bf5-93dd-812f9e5cd48a {
  display: none;
}
#s-533a264e-0eca-4bf5-93dd-812f9e5cd48a, #wrap-s-533a264e-0eca-4bf5-93dd-812f9e5cd48a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-533a264e-0eca-4bf5-93dd-812f9e5cd48a {
  display: none;
}
#s-533a264e-0eca-4bf5-93dd-812f9e5cd48a, #wrap-s-533a264e-0eca-4bf5-93dd-812f9e5cd48a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-533a264e-0eca-4bf5-93dd-812f9e5cd48a {
  display: none;
}
#s-533a264e-0eca-4bf5-93dd-812f9e5cd48a, #wrap-s-533a264e-0eca-4bf5-93dd-812f9e5cd48a { display: none !important; }}@media (max-width: 767px){#s-533a264e-0eca-4bf5-93dd-812f9e5cd48a {
  margin-right: 10px;
}
}
#s-80185d46-9105-4428-a068-81220363f0d0 {
  margin-top: 40px;
margin-bottom: 30px;
}
@media (max-width: 767px){#s-80185d46-9105-4428-a068-81220363f0d0 {
  margin-right: 10px;
display: none;
}
#s-80185d46-9105-4428-a068-81220363f0d0, #wrap-s-80185d46-9105-4428-a068-81220363f0d0 { display: none !important; }}
#s-bb553fc3-681d-4e75-9a4d-87f6efabdb0a {
  margin-left: 100px;
margin-bottom: 75px;
margin-right: 100px;
}
@media (max-width: 767px){#s-bb553fc3-681d-4e75-9a4d-87f6efabdb0a {
  margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
}
}
@media (min-width: 0px) {
[id="s-bb553fc3-681d-4e75-9a4d-87f6efabdb0a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bb553fc3-681d-4e75-9a4d-87f6efabdb0a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-bb553fc3-681d-4e75-9a4d-87f6efabdb0a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-bb553fc3-681d-4e75-9a4d-87f6efabdb0a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-717d33db-26a0-4c41-9d01-4293d8b569dd {
  max-width: 1620px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-717d33db-26a0-4c41-9d01-4293d8b569dd img.shogun-image,
  #s-717d33db-26a0-4c41-9d01-4293d8b569dd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-717d33db-26a0-4c41-9d01-4293d8b569dd {
    width: 100%;
    height: auto;
  }

  #s-717d33db-26a0-4c41-9d01-4293d8b569dd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image {
    
    
  }


.s-717d33db-26a0-4c41-9d01-4293d8b569dd .shogun-image-content {
  
    align-items: center;
  
}

.s-717d33db-26a0-4c41-9d01-4293d8b569dd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-717d33db-26a0-4c41-9d01-4293d8b569dd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image-container {
      position: relative;
    }

    .s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-717d33db-26a0-4c41-9d01-4293d8b569dd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-717d33db-26a0-4c41-9d01-4293d8b569dd img.shogun-image,
  #s-717d33db-26a0-4c41-9d01-4293d8b569dd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-717d33db-26a0-4c41-9d01-4293d8b569dd {
    width: 100%;
    height: auto;
  }

  #s-717d33db-26a0-4c41-9d01-4293d8b569dd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image {
    
    
  }


.s-717d33db-26a0-4c41-9d01-4293d8b569dd .shogun-image-content {
  
    align-items: center;
  
}

.s-717d33db-26a0-4c41-9d01-4293d8b569dd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-717d33db-26a0-4c41-9d01-4293d8b569dd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image-container {
      position: relative;
    }

    .s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-717d33db-26a0-4c41-9d01-4293d8b569dd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-717d33db-26a0-4c41-9d01-4293d8b569dd img.shogun-image,
  #s-717d33db-26a0-4c41-9d01-4293d8b569dd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-717d33db-26a0-4c41-9d01-4293d8b569dd {
    width: 100%;
    height: auto;
  }

  #s-717d33db-26a0-4c41-9d01-4293d8b569dd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image {
    
    
  }


.s-717d33db-26a0-4c41-9d01-4293d8b569dd .shogun-image-content {
  
    align-items: center;
  
}

.s-717d33db-26a0-4c41-9d01-4293d8b569dd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-717d33db-26a0-4c41-9d01-4293d8b569dd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image-container {
      position: relative;
    }

    .s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-717d33db-26a0-4c41-9d01-4293d8b569dd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-717d33db-26a0-4c41-9d01-4293d8b569dd img.shogun-image,
  #s-717d33db-26a0-4c41-9d01-4293d8b569dd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-717d33db-26a0-4c41-9d01-4293d8b569dd {
    width: 100%;
    height: auto;
  }

  #s-717d33db-26a0-4c41-9d01-4293d8b569dd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image {
    
    
  }


.s-717d33db-26a0-4c41-9d01-4293d8b569dd .shogun-image-content {
  
    align-items: center;
  
}

.s-717d33db-26a0-4c41-9d01-4293d8b569dd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-717d33db-26a0-4c41-9d01-4293d8b569dd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image-container {
      position: relative;
    }

    .s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-717d33db-26a0-4c41-9d01-4293d8b569dd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-717d33db-26a0-4c41-9d01-4293d8b569dd img.shogun-image,
  #s-717d33db-26a0-4c41-9d01-4293d8b569dd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-717d33db-26a0-4c41-9d01-4293d8b569dd {
    width: 100%;
    height: auto;
  }

  #s-717d33db-26a0-4c41-9d01-4293d8b569dd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image {
    
    
  }


.s-717d33db-26a0-4c41-9d01-4293d8b569dd .shogun-image-content {
  
    align-items: center;
  
}

.s-717d33db-26a0-4c41-9d01-4293d8b569dd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-717d33db-26a0-4c41-9d01-4293d8b569dd {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image-container {
      position: relative;
    }

    .s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-717d33db-26a0-4c41-9d01-4293d8b569dd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-717d33db-26a0-4c41-9d01-4293d8b569dd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-8880a983-5518-4013-b4eb-5cfdf537fb1c {
  margin-top: 10px;
}

#s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 {
  max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 img.shogun-image,
  #s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 {
    width: 100%;
    height: auto;
  }

  #s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image {
    
    
  }


.s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 .shogun-image-content {
  
    align-items: center;
  
}

.s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image-container {
      position: relative;
    }

    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 img.shogun-image,
  #s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 {
    width: 100%;
    height: auto;
  }

  #s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image {
    
    
  }


.s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 .shogun-image-content {
  
    align-items: center;
  
}

.s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image-container {
      position: relative;
    }

    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 img.shogun-image,
  #s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 {
    width: 100%;
    height: auto;
  }

  #s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image {
    
    
  }


.s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 .shogun-image-content {
  
    align-items: center;
  
}

.s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image-container {
      position: relative;
    }

    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 img.shogun-image,
  #s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 {
    width: 100%;
    height: auto;
  }

  #s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image {
    
    
  }


.s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 .shogun-image-content {
  
    align-items: center;
  
}

.s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image-container {
      position: relative;
    }

    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 img.shogun-image,
  #s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 {
    width: 100%;
    height: auto;
  }

  #s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image {
    
    
  }


.s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 .shogun-image-content {
  
    align-items: center;
  
}

.s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image-container {
      position: relative;
    }

    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ed755d2-70b9-4fba-9a31-03538d4f74c3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-f15f417e-ffaf-4589-8688-28354f348fc1 {
  margin-top: 10px;
}

.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-1d007b3c-5d1c-49f7-928f-fa9775e285d4 {
  max-width: 2333px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-1d007b3c-5d1c-49f7-928f-fa9775e285d4 img.shogun-image,
  #s-1d007b3c-5d1c-49f7-928f-fa9775e285d4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1d007b3c-5d1c-49f7-928f-fa9775e285d4 {
    width: 100%;
    height: auto;
  }



  #s-1d007b3c-5d1c-49f7-928f-fa9775e285d4 img.shogun-image {
    

    
    
    
  }


#s-1d007b3c-5d1c-49f7-928f-fa9775e285d4 .shogun-image-content {
  
    align-items: center;
  
}

#s-be9fd33c-50c6-4d39-9295-42a99ef9f5b1 {
  margin-top: 10px;
}

/*
  $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;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#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-lazyload-bg-image {
  display: none;
}

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

.shg-c:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width: 1024px){.shg-c,.shg-box{background-attachment:scroll !important}}@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape){.shg-box{background-attachment:scroll !important}}#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:#000;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-lazyload-bg-image{display:none}.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{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.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}
